Added School theme

This commit is contained in:
benweet 2013-09-17 01:13:35 +01:00
parent 7310c8cbf0
commit 088d72335d
3 changed files with 50 additions and 1 deletions

View File

@ -1,5 +1,5 @@
CACHE MANIFEST
#Date Tue Sep 17 2013 00:29:46
#Date Tue Sep 17 2013 01:13:25
CACHE:
index.html

View File

@ -1668,6 +1668,14 @@ div.jGrowl div.jGrowl-notification{min-height:80px}
.ace-tm .ace_content{background-image:url("../img/school-line.png");background-repeat:repeat;background-color:transparent}
.ace-tm .ace_marker-layer .ace_active-line{background-color:rgba(162,186,206,0.2)}
.ace-tm .ace_print-margin{background-color:rgba(181,110,128,0.5)}
.ace-tm .ace_markup.ace_heading{color:#444;font-weight:bold}
.ace-tm .ace_markup.ace_list{color:#66a7e4}
.ace-tm .ace_strong{font-weight:bold}
.ace-tm .ace_emphasis{color:#174d80;font-style:italic}
.ace-tm .ace_blockquote{color:#b56e80;font-style:italic}
.ace-tm .ace_code{font-family:Menlo,Consolas,"Courier New",monospace;color:#66a26d;background-color:rgba(136,136,136,0.1)}
.ace-tm .ace_code_block{font-family:Menlo,Consolas,"Courier New",monospace;color:#66a26d}
.ace-tm .ace_description{color:#2781d6}
.wmd-title{font-family:'cursive_standardregular'}
.file-title-navbar{font-family:'cursive_standardregular';line-height:34px}
.navbar .working-indicator.show{background-image:url("../img/loader-school.gif")}

View File

@ -3,6 +3,9 @@
@navbar-default-bg: #315A4B;
@bg-navbar-hover: lighten(@navbar-default-bg, 8%);
@primary-color: #174d80;
@primary-color-light: lighten(@primary-color, 13%);
@primary-color-lighter: lighten(@primary-color, 20%);
@primary-color-lightest: lighten(@primary-color, 35%);
@primary-bg: darken(@primary-bg-light, 4%);
@primary-bg-light: #E2DEDE;
@primary-bg-lighter: lighten(@primary-bg-light, 4%);
@ -43,6 +46,44 @@
.ace_print-margin {
background-color: fade(#b56e80, 50%);
}
.ace_markup.ace_heading {
color: #444;
font-weight: bold;
}
.ace_markup.ace_list {
color: @primary-color-lightest;
}
.ace_strong {
font-weight: bold;
}
.ace_emphasis {
color: @primary-color;
font-style: italic;
}
.ace_blockquote {
color: #b56e80;
font-style: italic;
}
.ace_code {
font-family: Menlo, Consolas, "Courier New", monospace;
color: #66a26d;
background-color: fade(@secondary-bg, 10%);
}
.ace_code_block {
font-family: Menlo, Consolas, "Courier New", monospace;
color: #66a26d;
}
.ace_description {
color: @primary-color-lighter;
}
}
.wmd-title {