diff options
Diffstat (limited to 'blog')
-rw-r--r-- | blog/_assets/stylesheets/_config.scss | 3 | ||||
-rw-r--r-- | blog/_assets/stylesheets/main.scss | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/blog/_assets/stylesheets/_config.scss b/blog/_assets/stylesheets/_config.scss index ad00820..b18c67a 100644 --- a/blog/_assets/stylesheets/_config.scss +++ b/blog/_assets/stylesheets/_config.scss @@ -1,7 +1,8 @@ $base-font-size: 14.5pt; $huge-font-size: $base-font-size * 1.25; -$body-bg: rgba(0, 0, 0, 0.4); +$body-bg: #000; +$content-bg: rgba(0, 0, 0, 0.4); $text-color: #6c7683; $heading-color: #2B4662; $dimmed-text-color: darken($text-color, 20%); diff --git a/blog/_assets/stylesheets/main.scss b/blog/_assets/stylesheets/main.scss index 3dbe471..5847972 100644 --- a/blog/_assets/stylesheets/main.scss +++ b/blog/_assets/stylesheets/main.scss @@ -10,7 +10,7 @@ @import "releases"; body { - background-color: black; + background-color: $body-bg; color: $text-color; background: { @@ -62,7 +62,7 @@ h1 { line-height: 170%; font-size: $base-font-size; - background-color: $body-bg; + background-color: $content-bg; } #sponsor-pos-1 { |