diff options
Diffstat (limited to 'www/css')
-rw-r--r-- | www/css/main.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www/css/main.css b/www/css/main.css index 558da6c..22284e4 100644 --- a/www/css/main.css +++ b/www/css/main.css @@ -9,5 +9,42 @@ body font-size: small; } +td input +{ + box-sizing: border-box; + display: block; + width: 100%; +} + +tr.style1 +{ + background-color: #aaaaff; +} + +tr.style2 +{ + background-color: #8888ff; +} + +a:link +{ + color: black; +} + +a:visited +{ + color: black; +} + +a:hover +{ + color: red; +} + +a:active +{ + color: red; +} + /* vim: sw=4 ts=4 */ |