diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 8721461..384388e 100644 --- a/static/style.css +++ b/static/style.css @@ -3,12 +3,17 @@ a { text-decoration: none; } -tr:hover { +tr:nth-child(odd) { background: #EEE; } -td { +th, td { vertical-align: top; + padding: 3px; +} + +table { + border-spacing: 0px; } .chars { @@ -45,6 +50,11 @@ details .chars { font-size: 3rem; } +.index_page { + max-width: 1000px; + margin: auto; +} + .about_page, .batch_page { max-width: 800px; margin: auto; |