diff options
Diffstat (limited to 'style.scss')
-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; +} |