]> git.mjollnir.org Git - moodle.git/commitdiff
New coloured themes (green and red) just to add some options
authormartin <martin>
Sun, 11 Aug 2002 06:11:05 +0000 (06:11 +0000)
committermartin <martin>
Sun, 11 Aug 2002 06:11:05 +0000 (06:11 +0000)
theme/standardgreen/config.php [new file with mode: 0644]
theme/standardgreen/favicon.ico [new file with mode: 0644]
theme/standardgreen/footer.html [new file with mode: 0644]
theme/standardgreen/header.html [new file with mode: 0644]
theme/standardgreen/styles.css [new file with mode: 0644]
theme/standardred/config.php [new file with mode: 0644]
theme/standardred/favicon.ico [new file with mode: 0644]
theme/standardred/footer.html [new file with mode: 0644]
theme/standardred/header.html [new file with mode: 0644]
theme/standardred/styles.css [new file with mode: 0644]

diff --git a/theme/standardgreen/config.php b/theme/standardgreen/config.php
new file mode 100644 (file)
index 0000000..245a33f
--- /dev/null
@@ -0,0 +1,11 @@
+<?PHP // $Id$
+
+$THEME->body         = "#B4EFC1";  // Main page color
+$THEME->cellheading  = "#85E49A";  // Standard headings of big tables
+$THEME->cellheading2 = "#3DD35F";  // Highlight headings of tables
+
+$THEME->cellcontent  = "#FFFFFF";  // For areas with text
+$THEME->cellcontent2 = "#85E49A";  // Alternate colour
+$THEME->borders      = "#555555";  // Table borders
+
+?>
diff --git a/theme/standardgreen/favicon.ico b/theme/standardgreen/favicon.ico
new file mode 100644 (file)
index 0000000..6a2725d
Binary files /dev/null and b/theme/standardgreen/favicon.ico differ
diff --git a/theme/standardgreen/footer.html b/theme/standardgreen/footer.html
new file mode 100644 (file)
index 0000000..c7645ae
--- /dev/null
@@ -0,0 +1,7 @@
+<!-- START OF FOOTER -->
+<CENTER>
+<HR SIZE=1 NOSHADE>
+<FONT SIZE=1>
+<P><?=$loggedinas ?></P>
+<P><?=$homelink ?></P>
+</FONT>
diff --git a/theme/standardgreen/header.html b/theme/standardgreen/header.html
new file mode 100644 (file)
index 0000000..d882d42
--- /dev/null
@@ -0,0 +1,34 @@
+<HTML>
+<HEAD>
+<TITLE><?=$title ?></TITLE>
+<META NAME="keywords" CONTENT="Moodle, <?=$title ?> ">
+<?=$meta ?>
+<LINK REL="stylesheet" HREF="<?=$styles ?>">
+<LINK REL="SHORTCUT ICON" HREF="<?=$CFG->wwwroot?>/theme/standardblue/favicon.ico">
+<? include("$CFG->javascript"); ?>
+</HEAD>
+
+<BODY <? if ($focus) { echo "onLoad=setfocus()"; } ?> bgcolor="<?=$THEME->body ?>" link="#000066" vlink="#222288">
+
+<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>
+<TR><TD ALIGN=LEFT VALIGN=TOP>
+<?  if ($heading) { ?>
+    <FONT FACE="Trebuchet MS, Verdana, Arial, Helvetica, sans-serif" SIZE=4><B><?=$heading?></B></FONT>
+<?  } ?>
+</TD><TD ALIGN=RIGHT VALIGN=TOP>
+<?  if ($button) {
+        echo "$button";
+    } ?>
+</TD></TR></TABLE>
+
+<?  if ($navigation) { ?>
+    <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>
+    <TR><TD BGCOLOR="<?=$THEME->cellheading?>">
+    <FONT FACE="Trebuchet MS, Verdana, Arial, Helvetica, sans-serif" SIZE=2><B>
+<?  print_navigation("$navigation"); ?>
+    </B></FONT></TD></TR></TABLE>
+    <IMG SRC="<?=$CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1>
+<?  } else { ?>
+    <HR SIZE=1 NOSHADE>
+<?  } ?>
+<!-- END OF HEADER -->
diff --git a/theme/standardgreen/styles.css b/theme/standardgreen/styles.css
new file mode 100644 (file)
index 0000000..4bd26f5
--- /dev/null
@@ -0,0 +1,19 @@
+a:link    {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; color: blue;}
+a:visited {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; color: blue;}
+a:hover   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: underline; color: red;}
+
+body {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+p    {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h1   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h2   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h3   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h4   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+th   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-weight: bold; background-color: #3DD35F;}
+td   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+
+li   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+
+.highlight {
+    background-color: #FFAAAA;
+}
+
diff --git a/theme/standardred/config.php b/theme/standardred/config.php
new file mode 100644 (file)
index 0000000..182620c
--- /dev/null
@@ -0,0 +1,11 @@
+<?PHP // $Id$
+
+$THEME->body         = "#EFD6D7";  // Main page color
+$THEME->cellheading  = "#E9C5C6";  // Standard headings of big tables
+$THEME->cellheading2 = "#E4B6B7";  // Highlight headings of tables
+
+$THEME->cellcontent  = "#FFFFFF";  // For areas with text
+$THEME->cellcontent2 = "#E4B6B7";  // Alternate colour
+$THEME->borders      = "#552021";  // Table borders
+
+?>
diff --git a/theme/standardred/favicon.ico b/theme/standardred/favicon.ico
new file mode 100644 (file)
index 0000000..6a2725d
Binary files /dev/null and b/theme/standardred/favicon.ico differ
diff --git a/theme/standardred/footer.html b/theme/standardred/footer.html
new file mode 100644 (file)
index 0000000..c7645ae
--- /dev/null
@@ -0,0 +1,7 @@
+<!-- START OF FOOTER -->
+<CENTER>
+<HR SIZE=1 NOSHADE>
+<FONT SIZE=1>
+<P><?=$loggedinas ?></P>
+<P><?=$homelink ?></P>
+</FONT>
diff --git a/theme/standardred/header.html b/theme/standardred/header.html
new file mode 100644 (file)
index 0000000..d882d42
--- /dev/null
@@ -0,0 +1,34 @@
+<HTML>
+<HEAD>
+<TITLE><?=$title ?></TITLE>
+<META NAME="keywords" CONTENT="Moodle, <?=$title ?> ">
+<?=$meta ?>
+<LINK REL="stylesheet" HREF="<?=$styles ?>">
+<LINK REL="SHORTCUT ICON" HREF="<?=$CFG->wwwroot?>/theme/standardblue/favicon.ico">
+<? include("$CFG->javascript"); ?>
+</HEAD>
+
+<BODY <? if ($focus) { echo "onLoad=setfocus()"; } ?> bgcolor="<?=$THEME->body ?>" link="#000066" vlink="#222288">
+
+<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>
+<TR><TD ALIGN=LEFT VALIGN=TOP>
+<?  if ($heading) { ?>
+    <FONT FACE="Trebuchet MS, Verdana, Arial, Helvetica, sans-serif" SIZE=4><B><?=$heading?></B></FONT>
+<?  } ?>
+</TD><TD ALIGN=RIGHT VALIGN=TOP>
+<?  if ($button) {
+        echo "$button";
+    } ?>
+</TD></TR></TABLE>
+
+<?  if ($navigation) { ?>
+    <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>
+    <TR><TD BGCOLOR="<?=$THEME->cellheading?>">
+    <FONT FACE="Trebuchet MS, Verdana, Arial, Helvetica, sans-serif" SIZE=2><B>
+<?  print_navigation("$navigation"); ?>
+    </B></FONT></TD></TR></TABLE>
+    <IMG SRC="<?=$CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1>
+<?  } else { ?>
+    <HR SIZE=1 NOSHADE>
+<?  } ?>
+<!-- END OF HEADER -->
diff --git a/theme/standardred/styles.css b/theme/standardred/styles.css
new file mode 100644 (file)
index 0000000..6d16912
--- /dev/null
@@ -0,0 +1,19 @@
+a:link    {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; color: #CC3366;}
+a:visited {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; color: #CC3366;}
+a:hover   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: underline; color: #FF0000;}
+
+body {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+p    {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h1   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h2   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h3   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+h4   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+th   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-weight: bold; background-color: #E0ABAC;}
+td   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+
+li   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}
+
+.highlight {
+    background-color: #FFAAAA;
+}
+