diff options
author | Siri Reiter <siri@jones.dk> | 2020-05-21 20:01:45 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2020-05-21 20:02:22 +0200 |
commit | 705040e9965584b172f411a93f6b7449f2328961 (patch) | |
tree | c4354db3d011e61d8bc19bd2fc7a57e6a0a08cda /style.scss | |
parent | 2270e839072b5b68b695994faec97c8a18623414 (diff) |
Paste sidebar style branding setup from sirireiter.dk, add logo
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -15,6 +15,18 @@ h1 { font-size: 2.75em; } +.branding { + z-index: -1; + position: fixed; + bottom: 0; // full height isn't enough on Replicant browser + height: 100%; + width: 100%; + background-color: transparent; + background-image: url("logo.jpg"); + background-repeat: no-repeat; + background-position: right bottom; +} + .pageheader { padding: 1em; } @@ -49,6 +61,26 @@ a { } } + +.sidebar { + background: none; + padding: 1em; + border: none; + margin-top: 4em; + margin-right: 2em; + margin-bottom: 2em; + margin-left: 2em; +} + +.sidebar ul li { + list-style-type: none; +} + +.sidebar ul li .selflink { + color: $linkHoverColor; +} + + #content { width: 100%; max-width: 52em; |