diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-08-25 15:51:16 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-08-25 15:51:58 +0200 |
commit | 92657c58eeb0ed00ea308ba3e76b4f287277e322 (patch) | |
tree | 818a41ec4b7ad10275705d1fa53cc372dfd82555 /blog/_assets | |
parent | bf9f0c429788bc0b6a07867d3ad880bcdf75885d (diff) | |
download | norsk-urskog-main-92657c58eeb0ed00ea308ba3e76b4f287277e322.tar.gz norsk-urskog-main-92657c58eeb0ed00ea308ba3e76b4f287277e322.tar.bz2 norsk-urskog-main-92657c58eeb0ed00ea308ba3e76b4f287277e322.zip |
Add dimmed text color and style page footer.
Diffstat (limited to 'blog/_assets')
-rw-r--r-- | blog/_assets/stylesheets/_config.scss | 1 | ||||
-rw-r--r-- | blog/_assets/stylesheets/main.scss | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/blog/_assets/stylesheets/_config.scss b/blog/_assets/stylesheets/_config.scss index 68fb2b6..2b91952 100644 --- a/blog/_assets/stylesheets/_config.scss +++ b/blog/_assets/stylesheets/_config.scss @@ -1,5 +1,6 @@ $body-bg: black; $text-color: #aaa; +$dimmed-text-color: darken($text-color, 20%); $link-color: #686; $link-hover-color: lighten(#686, 5%); $side-bar-background: rgba(20, 20, 20, 0.7); diff --git a/blog/_assets/stylesheets/main.scss b/blog/_assets/stylesheets/main.scss index 23a1fe8..f2a84a7 100644 --- a/blog/_assets/stylesheets/main.scss +++ b/blog/_assets/stylesheets/main.scss @@ -37,6 +37,10 @@ h1 { right: auto; } footer { + border: { + top: 1px solid $dimmed-text-color; + } + color: $dimmed-text-color; clear: both; } } @@ -115,6 +119,7 @@ h1 { &.wide { width: 100%; + float: none; } } } |