mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
New blue theme
This commit is contained in:
parent
022633cd94
commit
bb31c3db9d
10
theme/standardblue/config.php
Normal file
10
theme/standardblue/config.php
Normal file
@ -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
|
||||
|
||||
?>
|
BIN
theme/standardblue/favicon.ico
Normal file
BIN
theme/standardblue/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
15
theme/standardblue/footer.html
Normal file
15
theme/standardblue/footer.html
Normal file
@ -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>
|
27
theme/standardblue/header.html
Normal file
27
theme/standardblue/header.html
Normal file
@ -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 -->
|
13
theme/standardblue/styles.css
Normal file
13
theme/standardblue/styles.css
Normal file
@ -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}
|
||||
|
Loading…
x
Reference in New Issue
Block a user