diff options
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; |