diff options
Diffstat (limited to 'GradeBook.scss')
-rw-r--r-- | GradeBook.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/GradeBook.scss b/GradeBook.scss index f01b03b..5ec18c8 100644 --- a/GradeBook.scss +++ b/GradeBook.scss @@ -1,7 +1,7 @@ // --------- Color definitions start ------------------- $body_bg: #336699; $body_padding: 0px; -$body_margin: 20px; +$body_margin: 0px; $body_font_family: Sans-Serif; $on_hover_lighting: 5%; @@ -17,6 +17,7 @@ $normal_fg: black; $div_padding: 5px; $div_margin_vert: 15px; $div_margin_horiz: 5px; +$div_bg_color: $normal_bg; $errormsg_bg: #ff0000; $infomsg_bg: #ffccff; @@ -91,7 +92,7 @@ body { } div { - background-color: $normal_bg; + background-color: $div_bg_color; color: $normal_fg; padding: { top: $div_padding; @@ -159,6 +160,9 @@ body { font-weight: normal; } } + div.gradestable { + background-color: $body_bg; + } table.gradestable { border: thin solid black; |