diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2014-12-13 00:32:58 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2014-12-13 00:32:58 +0100 |
commit | 516c6dafe27b7dde5b9fa5d1b817c13d445c3277 (patch) | |
tree | 2d94fc5cd747c2758bcd88f0ca33a26eb0812f69 /web | |
parent | f45093893dc56c6eb42fc7a670433d2bde28321b (diff) | |
parent | a15c2461cdea01a2177ee580047ea5d086cfef43 (diff) | |
download | Nim-516c6dafe27b7dde5b9fa5d1b817c13d445c3277.tar.gz |
Merge pull request #1731 from trustable-code/PR8
Fix font color
Diffstat (limited to 'web')
-rw-r--r-- | web/assets/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/assets/style.css b/web/assets/style.css index 3e2d18045..448c3a05b 100644 --- a/web/assets/style.css +++ b/web/assets/style.css @@ -8,7 +8,8 @@ body { min-width:1030px; margin:0; font:13pt "arial"; - background:#152534 url("images/bg.jpg") no-repeat fixed center top; } + background:#152534 url("images/bg.jpg") no-repeat fixed center top; + color:rgba(0,0,0,.8); } pre { color:#5997AF;} pre, pre * { cursor:text; } @@ -300,7 +301,7 @@ pre .end { background:url("images/tabEnd.png") no-repeat left bottom; } #content.page { width:680px; min-height:800px; padding-left:20px; } #content h1 { font-size:20pt; letter-spacing:1px; color:rgba(0,0,0,.75); } #content h2 { font-size:16pt; letter-spacing:1px; color:rgba(0,0,0,.7); margin-top:40px; } - #content p { text-align:justify; color:rgba(0,0,0,.8); } + #content p { text-align:justify; } #content a { color:#CEDAE9; text-decoration:none; } #content a:hover { color:#fff; } #content ul { padding-left:20px; } |