diff options
-rw-r--r-- | local.scss | 16 | ||||
-rw-r--r-- | partials/_base.scss | 4 |
2 files changed, 18 insertions, 2 deletions
@@ -1,6 +1,11 @@ -/* ikiwiki local style sheet */ +@import "partials/base"; +@import "compass/reset/utilities"; +@import "blueprint"; -/* Add local styling here, instead of modifying style.css. */ +@include blueprint-typography; +h1 { + font-size: 2.75em; +} body { background-color: transparent; @@ -19,8 +24,15 @@ h1, h2, h3 { clear: both; } +a { + color: black; + font-weight: bold; + text-decoration: none; +} + a:hover { color: darkgreen; + text-decoration: underline; } DIV.header { diff --git a/partials/_base.scss b/partials/_base.scss new file mode 100644 index 0000000..df8d24d --- /dev/null +++ b/partials/_base.scss @@ -0,0 +1,4 @@ +$blueprint-font-family: Arial, Helvetica, sans-serif; + +// Follow W3C recommendation: http://www.w3.org/QA/Tips/font-size +$blueprint-font-size: 16px; |