diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-07-06 10:37:23 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-07-06 10:37:23 +0200 |
commit | 1791194c571ceeba85b9a3ac016e97c9e34b25a6 (patch) | |
tree | 2eeff00172fd2681aeafc4b2a06279d28b226cef | |
parent | 3516378b4d246fc3defac2c8eac2ea466de762b8 (diff) |
Style font, anchors and content.
-rw-r--r-- | style.scss | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -1,5 +1,5 @@ @import "toolkit"; -@import "compass/typography/lists"; +@import "compass/typography"; @import "../shared/themes/default/ikiwiki"; @include ikiwiki-style; @@ -25,6 +25,20 @@ } } +// Font +// +// Helevetica +body { + font-family: Helvetica, sans-serif; +} + +// Anchors +// +// Underlined only when hovered +a { + @include hover-link; +} + // Definition lists // // Full-width horizontal items with definitions right-aligned @@ -39,3 +53,12 @@ dt { dd { float: right; } + +// Content +// +// Max. 45 chars., balanced margins on large viewports +#content, +#footer { + max-width: 45em; + margin: 3em auto; +} |