aboutsummaryrefslogtreecommitdiffstats
path: root/_sass
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-11-12 02:47:38 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-11-12 02:47:38 +0300
commitd2e30485e7cd11e93fc507dbdfab2b4c08f22075 (patch)
tree60ae5b58fe424b521befbbc839db7fd9aad7c10d /_sass
parent7b46213ebebd38f1b2f55df0b1efde88059c814d (diff)
downloadaaoth.xyz-d2e30485e7cd11e93fc507dbdfab2b4c08f22075.tar.gz
aaoth.xyz-d2e30485e7cd11e93fc507dbdfab2b4c08f22075.zip
fix post color
i accidentaly forgot about prefers-dark-theme thing.
Diffstat (limited to '_sass')
-rw-r--r--_sass/main.scss5
1 files changed, 4 insertions, 1 deletions
diff --git a/_sass/main.scss b/_sass/main.scss
index 70c2b3a..5bbd9b9 100644
--- a/_sass/main.scss
+++ b/_sass/main.scss
@@ -63,7 +63,7 @@ h1, h2, h3, h4, h5, h6 {
.post {
padding: 1em;
margin: 1em;
- background: #1f1f1f;
+ background: $color-main-grey;
border-radius: 25px 25px 25px 0px;
word-wrap: break-word;
p {
@@ -116,6 +116,9 @@ footer {
border-bottom: $border-dark;
}
}
+ .post {
+ background: $color-dark-grey;
+ }
footer {
border-top: $border-dark;
}