summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-07-06 10:37:23 +0200
committerJonas Smedegaard <dr@jones.dk>2017-07-06 10:37:23 +0200
commit1791194c571ceeba85b9a3ac016e97c9e34b25a6 (patch)
tree2eeff00172fd2681aeafc4b2a06279d28b226cef
parent3516378b4d246fc3defac2c8eac2ea466de762b8 (diff)
Style font, anchors and content.
-rw-r--r--style.scss25
1 files changed, 24 insertions, 1 deletions
diff --git a/style.scss b/style.scss
index 2fb0bf5..46acdd5 100644
--- a/style.scss
+++ b/style.scss
@@ -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;
+}