Commit a58ee5b2 by Tom Giannattasio

darker background for increased contrast

parent 8018a3c3
lms/static/images/bg-texture.png

7.58 KB | W: | H:

lms/static/images/bg-texture.png

9.79 KB | W: | H:

lms/static/images/bg-texture.png
lms/static/images/bg-texture.png
lms/static/images/bg-texture.png
lms/static/images/bg-texture.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -23,6 +23,7 @@ $yellow: rgb(255, 252, 221); ...@@ -23,6 +23,7 @@ $yellow: rgb(255, 252, 221);
$error-red: rgb(253, 87, 87); $error-red: rgb(253, 87, 87);
$border-color: #C8C8C8; $border-color: #C8C8C8;
$sidebar-color: #f6f6f6; $sidebar-color: #f6f6f6;
$outer-border-color: #aaa;
// old variables // old variables
......
body { body {
min-width: 980px; min-width: 980px;
min-height: 100%; min-height: 100%;
background: url(../images/bg-texture.png) #f7f7f7; background: url(../images/bg-texture.png) #ddd;
} }
body, h1, h2, h3, h4, h5, h6, p, p a:link, p a:visited, a, label { body, h1, h2, h3, h4, h5, h6, p, p a:link, p a:visited, a, label {
...@@ -33,7 +33,7 @@ a { ...@@ -33,7 +33,7 @@ a {
table-layout: fixed; table-layout: fixed;
width: 100%; width: 100%;
border-radius: 3px; border-radius: 3px;
border: 1px solid #ccc; border: 1px solid $outer-border-color;
background: #fff; background: #fff;
@include box-shadow(0 1px 2px rgba(0, 0, 0, 0.05)); @include box-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
} }
......
...@@ -35,7 +35,7 @@ nav.course-material { ...@@ -35,7 +35,7 @@ nav.course-material {
&:hover { &:hover {
color: #333; color: #333;
background: rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .4);
} }
&.active { &.active {
...@@ -56,7 +56,7 @@ nav.course-material { ...@@ -56,7 +56,7 @@ nav.course-material {
} }
header.global.slim { header.global.slim {
border-bottom: 1px solid #bbb; border-bottom: 1px solid $outer-border-color;
@include box-shadow(0 1px 2px rgba(0, 0, 0, .1)); @include box-shadow(0 1px 2px rgba(0, 0, 0, .1));
height: 50px; height: 50px;
@include linear-gradient(top, #fff, #eee); @include linear-gradient(top, #fff, #eee);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment