diff options
Diffstat (limited to 'css/styles.css')
-rw-r--r-- | css/styles.css | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/css/styles.css b/css/styles.css index 75caa77..11603be 100644 --- a/css/styles.css +++ b/css/styles.css @@ -23,6 +23,7 @@ input { } select { + border: 1px solid #6D96A9; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; } @@ -398,6 +399,19 @@ div.__progress div.__elapsed { } /* ############# + # Tables in General + ############# +*/ + + +td.border { + padding: 0; + margin: 0; + width: 1px; +} + + +/* ############# # Timers ############# */ @@ -414,12 +428,6 @@ table.timers tr td { border-bottom: 1px solid #C0C1DA; } -table.timers tr td.border { - padding: 0; - margin: 0; - width: 1px; -} - table.timers tr.active { background: #DEE6EE; } @@ -600,28 +608,29 @@ table.error tr td.title { table.edit { margin-top: 10px; - border: 1px solid #6D96A9; } table.edit tr td.head { - background: #6D96A9; + background: white; color: white; font-weight: bold; margin: 0; - padding: 3px; + padding: 0; + border:none; } table.edit tr td { vertical-align: top; - padding: 3px 7px 3px 3px; + padding: 6px 7px 6px 3px; vertical-align: middle; + background: url(bg_line.png) bottom repeat-x; + border-bottom: 1px solid #C0C1DA; } table.edit tr td.label { font-weight: bold; } - table.edit tr.active { background: #DEE6EE; } |