]> git.mjollnir.org Git - moodle.git/commitdiff
New blue theme
authormartin <martin>
Tue, 26 Feb 2002 03:50:53 +0000 (03:50 +0000)
committermartin <martin>
Tue, 26 Feb 2002 03:50:53 +0000 (03:50 +0000)
theme/standardblue/config.php [new file with mode: 0644]
theme/standardblue/favicon.ico [new file with mode: 0644]
theme/standardblue/footer.html [new file with mode: 0644]
theme/standardblue/header.html [new file with mode: 0644]
theme/standardblue/styles.css [new file with mode: 0644]

diff --git a/theme/standardblue/config.php b/theme/standardblue/config.php
new file mode 100644 (file)
index 0000000..396fe97
--- /dev/null
@@ -0,0 +1,10 @@
+<?PHP // $Id$
+
+$THEME->body         = "#C5EFFF";  // Main page color
+$THEME->cellheading  = "#8BCDE8";  // Standard headings of big tables
+$THEME->cellheading2 = "#B5EAFF";  // Highlight headings of tables
+$THEME->cellcontent  = "#FFFFFF";  // For areas with text
+$THEME->cellcontent2 = "#FFD991";  // Alternate colour
+$THEME->borders      = "#555555";  // Table borders
+
+?>
diff --git a/theme/standardblue/favicon.ico b/theme/standardblue/favicon.ico
new file mode 100644 (file)
index 0000000..517c840
Binary files /dev/null and b/theme/standardblue/favicon.ico differ
diff --git a/theme/standardblue/footer.html b/theme/standardblue/footer.html
new file mode 100644 (file)
index 0000000..5645faa
--- /dev/null
@@ -0,0 +1,15 @@
+<!-- START OF FOOTER -->
+<CENTER>
+<HR SIZE=1 NOSHADE>
+<FONT SIZE=1>
+<P>
+<? if ($USER->id) {
+       echo "You are logged in as $USER->firstname $USER->lastname.";
+          echo "(<A HREF=\"$CFG->wwwroot/login/logout.php\">Logout</A>)";
+   } else { 
+       echo "You are not logged in.  <A HREF=\"$CFG->wwwroot/login/\">Log in here</A>.";
+   } 
+?>
+</P>
+<P><?=$homelink ?></P>
+</FONT>
diff --git a/theme/standardblue/header.html b/theme/standardblue/header.html
new file mode 100644 (file)
index 0000000..3807490
--- /dev/null
@@ -0,0 +1,27 @@
+<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">
+
+<?  if ($heading) { ?>
+    <FONT FACE="Trebuchet MS, Verdana, Arial, Helvetica, sans-serif" SIZE=4><B><?=$heading?></B></FONT>
+<?  } ?>
+
+<?  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/standardblue/styles.css b/theme/standardblue/styles.css
new file mode 100644 (file)
index 0000000..064da47
--- /dev/null
@@ -0,0 +1,13 @@
+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: #8BCDE8;}
+TD   {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif}
+