diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/style.css | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/resources/style.css b/resources/style.css index 9e20ffc..ffdeb5c 100644 --- a/resources/style.css +++ b/resources/style.css @@ -6,13 +6,13 @@ html, body { margin: 0; padding: 0; font-family: Arial, sans-serif; - background: #191316; + background: #2b2235; } body { min-height: 100vh; - background: #715a7f; - color: white; + background: #211e22; + color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; padding: 16px; @@ -36,6 +36,10 @@ nav > a:not(:last-child) { margin-right: 40px; } +h1 { + color: rgba(255,255,255,.9); +} + h1 > aside { display: inline-block; font-size: .5em; @@ -63,7 +67,7 @@ ul.posts { ul.posts li span { display: inline-block; - min-width: 80px; + min-width: 100px; opacity: .5; text-align: right; margin-right: 10px; @@ -77,5 +81,5 @@ a { a[href^="https:"], a[href^="http:"], a[href^="//"] { - color: #fdd7ff; + color: #caa5ff; } |