This commit is contained in:
albert
2011-10-15 04:07:32 -04:00
parent b378a15b37
commit 2605aad129
3 changed files with 19 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
$link_color: #006FFA; $link_color: #006FFA;
$link_hover_color: #9093FF; $link_hover_color: #9093FF;
$border_color: #CCC;
$highlight_color: #F0F0F0;
$reverse_highlight_color: #FFFDF6;
$h1_size: 2em; $h1_size: 2em;
$h2_size: 1.5em; $h2_size: 1.5em;
$h3_size: 1.16667em; $h3_size: 1.16667em;

View File

@@ -1,26 +1,38 @@
@import "000_vars.css.scss";
table.striped { table.striped {
p { p {
margin: 0; margin: 0;
} }
td, th { td, th {
padding: 2px 4px; padding: 4px 6px;
} }
tbody { tbody {
tr {
border-bottom: 1px solid $border_color;
}
tr:hover { tr:hover {
background-color: #FFE; background-color: $reverse_highlight_color;
} }
} }
thead { thead {
tr {
border-bottom: 2px solid #666;
}
th { th {
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;
color: #333;
padding: 8px 6px;
} }
} }
tr.even { tr.even {
background-color: #EEE; background-color: #FAFAFA;
} }
} }

View File

@@ -28,6 +28,7 @@ div#c-moderator-dashboards {
} }
caption { caption {
font-size: 1.1em;
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;
} }