diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-06-26 14:56:59 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-06-26 14:56:59 +0000 |
commit | 7236430484ffbd9874083b9703ff3015e3347c89 (patch) | |
tree | 6e723c4f5ceebe0bf3ca460f00400b9a927b5fc8 /www/css | |
parent | 52d3b59d43d1c4894a38d47b9606c0f1cff95156 (diff) |
Added some initial display code. Call to get stubbed out with test data.
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 */ |