diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-19 12:55:02 -0300 |
---|---|---|
committer | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-19 12:55:02 -0300 |
commit | bc0c2f99fd41da73b5f47b94d4635ece378620e0 (patch) | |
tree | 576cb75c76e22f40fcb24a922218cf8024f67352 /static/css | |
parent | afa9e221d07ac0e246daadef33e911bc86fd74eb (diff) |
theme news, fix mod page
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/themes/default.css | 33 | ||||
-rw-r--r-- | static/css/themes/gruvbox.css | 32 |
2 files changed, 64 insertions, 1 deletions
diff --git a/static/css/themes/default.css b/static/css/themes/default.css index 07e960e..7f3d1a8 100644 --- a/static/css/themes/default.css +++ b/static/css/themes/default.css @@ -20,6 +20,10 @@ body.nsfw { color: #820404 } +h1, h2, h3, h4, h5, h6 { + color: #af0a0f; +} + .popup-box { border: 4px solid #d3caf0; background-color: #eff5ff; @@ -123,3 +127,32 @@ a.reply { z-index: 9; display: block; } + +/* TODO: rename */ +.box2 { + border: 4px solid #f0e2d9; + background-color: #f9f9e0; +} + +.newsbox { + padding: 25px; + border: 4px solid #f0e2d9; + background-color: #f9f9e0; +} + +.newsbox h2 { + margin: 0; + padding: 0; +} + +.newsbox-news { + text-align: left; + margin-left: 25px; + margin-top: 25px; + padding: 25px; +} + +.newsbox-news p, +.newsbox-news h3 { + margin: 0; +} diff --git a/static/css/themes/gruvbox.css b/static/css/themes/gruvbox.css index ff9c596..fb40267 100644 --- a/static/css/themes/gruvbox.css +++ b/static/css/themes/gruvbox.css @@ -15,7 +15,7 @@ body { background: #282828; color: #ebdbb2; - font-family: Iosevka, monospace, sans-serif; + font-family: monospace, sans-serif; font-size: 0.9em; } @@ -108,3 +108,33 @@ input[type="text"] { z-index: 9; display: block; } + +/* TODO: rename */ +.box2 { + border: 4px solid #928374; + background-color: #3c3836; +} + +.newsbox { + padding: 25px; + border: 4px solid #928374; + background-color: #3c3836; +} + +.newsbox h2 { + margin: 0; + padding: 0; +} + +.newsbox-news { + text-align: left; + background-color: #504945; + margin-left: 25px; + margin-top: 25px; + padding: 25px; +} + +.newsbox-news p, +.newsbox-news h3 { + margin: 0; +} |