diff options
Diffstat (limited to 'res/css/global.css')
-rwxr-xr-x | res/css/global.css | 39 |
1 files changed, 35 insertions, 4 deletions
diff --git a/res/css/global.css b/res/css/global.css index 52d8d9e..693452b 100755 --- a/res/css/global.css +++ b/res/css/global.css @@ -6,9 +6,36 @@ ul { list-style-type: square; } +table.banner { + margin-left: auto; + margin-right: auto; + border: 2px solid #E04A38; + background-color: #E6897E; + width: 95%; + /* Passes both WCAG AA and WCAG AAA contrast tests */ + color: #0F0F0F; +} + +td.banner { + padding: 5px; +} + +a.bannerlink { + color: #0F0F0F; +} + +a.bannerlink:hover { + text-decoration: underline; +} + div.page { - margin-left: 0.5em; - margin-right: 0.5em + min-width: 700px; + max-width: 1024px; + /*margin-left: 0.5em; + margin-right: 0.5em;*/ + padding-left: 0.5em; + padding-right: 0.5em; + margin: auto } h1.inline { @@ -49,7 +76,7 @@ h1, h2, h3 { img { border: none; - max-width: 100% + max-width: 100%; } img.right { @@ -57,6 +84,10 @@ img.right { margin-left: 0.5em } +table.form, td.form { + border: none; +} + div.preview { display: inline-block; width: 30em; @@ -277,4 +308,4 @@ table.computers { td.computer { width: 50%; border: 0px; -}
\ No newline at end of file +} |