--- /dev/null
+<?PHP // $Id$
+
+$THEME->body = "#C5EFFF"; // Main page color
+$THEME->cellheading = "#9ADAF4"; // Standard headings of big tables
+$THEME->cellheading2 = "#73C1E1"; // Highlight headings of tables
+$THEME->cellcontent = "#FFFFFF"; // For areas with text
+$THEME->cellcontent2 = "#B3EAFF"; // Alternate colour
+$THEME->borders = "#555555"; // Table borders
+$THEME->highlight = "#AAFFAA"; // Highlighted text (eg after a search)
+
+?>
--- /dev/null
+<!-- START OF FOOTER -->
+<CENTER>
+<HR SIZE=1 NOSHADE>
+<FONT SIZE=1>
+<P><?=$loggedinas ?></P>
+<P><?=$homelink ?></P>
+</FONT>
+
+</BODY>
+</HTML>
--- /dev/null
+<HTML<?=$direction?>>
+<HEAD>
+<TITLE><?=$title ?></TITLE>
+<META NAME="keywords" CONTENT="Moodle, <?=$title ?> ">
+<?=$meta ?>
+<LINK REL="stylesheet" TYPE="text/css" HREF="<?=$styles ?>">
+<LINK REL="SHORTCUT ICON" HREF="<?=$CFG->wwwroot?>/theme/standardblue/favicon.ico">
+<? include("$CFG->javascript"); ?>
+</HEAD>
+
+<BODY <? if ($focus) { echo "onLoad=setfocus()"; } echo " bgcolor=\"$THEME->body\">"; ?>
+
+<? if ($home) { // This is what gets printed on the home page only ?>
+
+ <TABLE WIDTH=100% CELLPADDING=10 CELLSPACING=0 BORDER=0>
+ <TR>
+ <TD VALIGN=TOP><FONT SIZE=4><B><?=$heading?></B></FONT></TD>
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>
+ </TR>
+ </TABLE>
+
+
+<? } else if ($heading) { // This is what gets printed on any other page with a heading ?>
+
+ <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>
+ <TR>
+ <TD VALIGN=TOP><FONT SIZE=4><B><?=$heading?></B></FONT></TD>
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>
+ </TR>
+ </TABLE>
+
+<? } ?>
+
+
+<? if ($navigation) { // This is the navigation table with breadcrumbs ?>
+
+ <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>
+ <TR>
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar">
+ <FONT SIZE=2><B><? print_navigation("$navigation"); ?></B></FONT>
+ </TD>
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar" ALIGN=RIGHT WIDTH=20 VALIGN=TOP><?=$button ?></TD>
+ </TR>
+ </TABLE>
+ <IMG SRC="<?=$CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1><BR>
+
+<? } else if ($heading) { // If no navigation, but a heading, then print a line ?>
+
+ <HR SIZE=1 NOSHADE>
+
+<? } ?>
+
+<!-- END OF HEADER -->
--- /dev/null
+<?PHP // $Id$\r
+\r
+/// We use PHP so we can do value substitutions into the styles\r
+\r
+ require_once("../../config.php"); \r
+\r
+ if (isset($themename)) {\r
+ $CFG->theme = $themename;\r
+ }\r
+\r
+ $themeurl = "$CFG->wwwroot/theme/$CFG->theme";\r
+\r
+/// From here on it's nearly a normal stylesheet.\r
+/// First are some CSS definitions for normal tags, \r
+/// then custom tags follow.\r
+///\r
+/// Note that colours are all defined in config.php\r
+/// in this directory\r
+\r
+?>\r
+\r
+\r
+a:link {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r
+ text-decoration: none; \r
+ color: blue;}\r
+a:visited {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r
+ text-decoration: none; \r
+ color: blue;}\r
+a:hover {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r
+ text-decoration: underline; \r
+ color: red;}\r
+\r
+body {\r
+ font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture1.jpg);\r
+ }\r
+\r
+p {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+h1 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+h2 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+h3 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+h4 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+th {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r
+ font-weight: bold; \r
+ background-color: <?PHP echo $THEME->cellheading?>;}\r
+\r
+td {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+li {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r
+\r
+form { margin-bottom: 0; }\r
+\r
+.highlight {\r
+ background-color: <?PHP echo $THEME->highlight?>;\r
+}\r
+\r
+.headingblock {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.navbar {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.generalbox {\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.generalboxcontent {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.generaltable {\r
+}\r
+\r
+.generaltableheader {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.generaltablecell {\r
+}\r
+\r
+.sideblock {\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.sideblockheading {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.sideblockmain {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.sideblocklinks {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.sideblocklatestnews {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.sideblockrecentactivity {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.siteinfo {\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.siteinfocontent {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.outlineheadingblock {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.weeklyoutline {\r
+}\r
+\r
+.weeklyoutlineside {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.weeklyoutlinesidehighlight {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.weeklyoutlinecontent {\r
+}\r
+\r
+.topicsoutline {\r
+}\r
+\r
+.topicsoutlineside {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.topicsoutlinesidehighlight {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.topicsoutlinecontent {\r
+}\r
+\r
+.forumpost {\r
+ border-width: 1px;\r
+ border-color: <?PHP echo $THEME->borders?>;\r
+ border-style: solid;\r
+}\r
+\r
+.forumpostheader {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.forumpostheadertopic {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture3.jpg);\r
+}\r
+\r
+.forumpostpicture {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.forumpostside {\r
+ background-image: url(<?PHP echo "$themeurl"?>/texture2.jpg);\r
+}\r
+\r
+.forumpostmessage {\r
+}\r
--- /dev/null
+Theme Ocean Blue\r
+------------------------\r
+Author: Mitsuhiro Yoshida(mits@mitstek.com)\r
+http://www.mitstek.com/\r
+\r
+To add your original jpeg Logo, \r
+1. Rename header.html_logo as header.html\r
+2. Save your original Logo as logo.jpg\r
--- /dev/null
+<?PHP // $Id$\r
+\r
+$THEME->body = "#7777FF"; // Main page color\r
+$THEME->cellheading = "#CCCCFF"; // Standard headings of big tables\r
+$THEME->cellheading2 = "#8080c0"; // Highlight headings of tables\r
+$THEME->cellcontent = "#F0F0FF"; // For areas with text\r
+$THEME->cellcontent2 = "#CCCCFF"; // Alternate colour\r
+$THEME->borders = "#7777FF; // Table borders\r
+$THEME->highlight = "#0000FF"; // Highlighted text (eg after a search)\r
+\r
+?>\r
--- /dev/null
+<!-- START OF FOOTER -->\r
+<CENTER>\r
+<HR SIZE=1 NOSHADE>\r
+<FONT SIZE=1>\r
+<P><?=$loggedinas ?></P>\r
+<P><?=$homelink ?></P>\r
+</FONT>\r
+\r
+</BODY>\r
+</HTML>\r
--- /dev/null
+<HTML<?=$direction?>>\r
+<HEAD>\r
+<TITLE><?=$title ?></TITLE>\r
+<META NAME="keywords" CONTENT="Moodle, <?=$title ?> ">\r
+<?=$meta ?>\r
+<LINK REL="stylesheet" TYPE="text/css" HREF="<?=$styles ?>">\r
+<LINK REL="SHORTCUT ICON" HREF="<?=$CFG->wwwroot?>/theme/oceanblue/favicon.ico">\r
+<? include("$CFG->javascript"); ?>\r
+</HEAD>\r
+\r
+<BODY <? if ($focus) { echo "onLoad=setfocus()"; } echo " bgcolor=\"$THEME->body\">"; ?>\r
+\r
+<? if ($home) { // This is what gets printed on the home page only ?>\r
+\r
+ <TABLE WIDTH=100% CELLPADDING=10 CELLSPACING=0 BORDER=0>\r
+ <TR>\r
+ <TD VALIGN=TOP><FONT SIZE=4><B><?=$heading?></B></FONT></TD>\r
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+\r
+\r
+<? } else if ($heading) { // This is what gets printed on any other page with a heading ?>\r
+\r
+ <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>\r
+ <TR>\r
+ <TD VALIGN=TOP><FONT SIZE=4><B><?=$heading?></B></FONT></TD>\r
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+\r
+<? } ?>\r
+\r
+\r
+<? if ($navigation) { // This is the navigation table with breadcrumbs ?>\r
+\r
+ <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>\r
+ <TR>\r
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar">\r
+ <FONT SIZE=2><B><? print_navigation("$navigation"); ?></B></FONT>\r
+ </TD>\r
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar" ALIGN=RIGHT WIDTH=20 VALIGN=TOP><?=$button ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+ <IMG SRC="<?=$CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1><BR>\r
+\r
+<? } else if ($heading) { // If no navigation, but a heading, then print a line ?>\r
+\r
+ <HR SIZE=1 NOSHADE>\r
+\r
+<? } ?>\r
+\r
+<!-- END OF HEADER -->\r
--- /dev/null
+<HTML<?=$direction?>>\r
+<HEAD>\r
+<TITLE><?=$title ?></TITLE>\r
+<META NAME="keywords" CONTENT="Moodle, <?=$title ?> ">\r
+<?=$meta ?>\r
+<LINK REL="stylesheet" TYPE="text/css" HREF="<?=$styles ?>">\r
+<LINK REL="SHORTCUT ICON" HREF="<?=$CFG->wwwroot?>/theme/oceanblue/favicon.ico">\r
+<? include("$CFG->javascript"); ?>\r
+</HEAD>\r
+\r
+<BODY <? if ($focus) { echo "onLoad=setfocus()"; } echo " bgcolor=\"$THEME->body\">"; ?>\r
+\r
+<? if ($home) { // This is what gets printed on the home page only ?>\r
+\r
+ <TABLE WIDTH=100% CELLPADDING=10 CELLSPACING=0 BORDER=0>\r
+ <TR>\r
+ <TD VALIGN=TOP><A HREF="<?=$CFG->wwwroot?>" TARGET="_top"><IMG SRC="<?=$CFG->wwwroot?>/theme/oceanblue/logo.jpg" ALT="Moodle" BORDER="0"></A></TD>\r
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+\r
+\r
+<? } else if ($heading) { // This is what gets printed on any other page with a heading ?>\r
+\r
+ <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>\r
+ <TR>\r
+ <TD VALIGN=TOP><FONT SIZE=4><B><?=$heading?></B></FONT></TD>\r
+ <TD ALIGN=RIGHT VALIGN=TOP><?=$menu ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+\r
+<? } ?>\r
+\r
+\r
+<? if ($navigation) { // This is the navigation table with breadcrumbs ?>\r
+\r
+ <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>\r
+ <TR>\r
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar">\r
+ <FONT SIZE=2><B><? print_navigation("$navigation"); ?></B></FONT>\r
+ </TD>\r
+ <TD BGCOLOR="<?=$THEME->cellheading?>" CLASS="navbar" ALIGN=RIGHT WIDTH=20 VALIGN=TOP><?=$button ?></TD>\r
+ </TR>\r
+ </TABLE>\r
+ <IMG SRC="<?=$CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1><BR>\r
+\r
+<? } else if ($heading) { // If no navigation, but a heading, then print a line ?>\r
+\r
+ <HR SIZE=1 NOSHADE>\r
+\r
+<? } ?>\r
+\r
+<!-- END OF HEADER -->\r
--- /dev/null
+<?PHP // $Id$\r\r\r\r/// We use PHP so we can do value substitutions into the styles\r\r\r\r require_once("../../config.php"); \r\r\r\r if (isset($themename)) {\r\r $CFG->theme = $themename;\r\r }\r\r\r\r $themeurl = "$CFG->wwwroot/theme/$CFG->theme";\r\r\r\r/// From here on it's nearly a normal stylesheet.\r\r/// First are some CSS definitions for normal tags, \r\r/// then custom tags follow.\r\r///\r\r/// Note that colours are all defined in config.php\r\r/// in this directory\r\r\r\r?>\r\r\r\r\r\ra:link {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r\r text-decoration: none; \r\r color: 0000CC;}\r\ra:visited {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r\r text-decoration: none; \r\r color: 0000CC;}\r\ra:hover {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r\r text-decoration: none; \r\r color: 00F0FF;}\r\r\r\rbody {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rp {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rh1 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rh2 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rh3 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rh4 {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rth {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; \r\r font-weight: bold; \r\r background-color: <?PHP echo $THEME->cellheading?>;}\r\r\r\rtd {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rli {font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;}\r\r\r\rform { margin-bottom: 0; }\r\r\r\r.highlight {\r\r background-color: <?PHP echo $THEME->highlight?>;\r\r}\r\r\r\r.headingblock {\r\r background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);\r\r border-width: 1px;\r\r border-color: <?PHP echo $THEME->borders?>;\r\r border-style: solid;\r\r}\r\r\r\r.navbar {\r\r background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);\r\r}\r\r\r\r.generalbox {\r\r border-width: 1px;\r\r border-color: <?PHP echo $THEME->borders?>;\r\r border-style: solid;\r\r}\r\r\r\r.generaltable {\r\r}\r\r\r\r.generaltableheader {\r\r background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);\r\r}\r\r\r\r.generaltablecell {\r\r}\r\r\r\r.sideblock {\r\r border-width: 1px;\r\r border-color: <?PHP echo $THEME->borders?>;\r\r border-style: solid;\r\r}\r\r\r\r.sideblockheading {\r\r background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);\r\r}\r\r\r\r.sideblockmain {\r\r}\r\r\r\r.sideblocklinks {\r\r}\r\r\r\r.sideblocklatestnews {\r\r}\r\r\r\r.sideblockrecentactivity {\r\r}\r\r\r\r.outlineheadingblock {\r\r background-image: url(<?PHP echo "$themeurl"?>/gradient.jpg);\r\r border-width: 1px;\r\r border-color: <?PHP echo $THEME->borders?>;\r\r border-style: solid;\r\r}\r\r\r\r.weeklyoutline {\r\r}\r\r\r\r.topicsoutline {\r\r}\r\r\r\r.forumpost {\r\r border-width: 1px;\r\r border-color: <?PHP echo $THEME->borders?>;\r\r border-style: solid;\r\r}\r\r\r\r.forumpostheader {\r\r}\r\r\r\r.forumpostheadertopic {\r\r}\r\r\r\r.forumpostpicture {\r\r}\r\r\r\r.forumpostside {\r\r}\r\r\r\r.forumpostmessage {\r\r}\r\r
\ No newline at end of file