From 5041eadf3121ad3454d5862c07efec2ad6f0afe0 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Wed, 2 Feb 2011 21:13:27 +0100 Subject: Provide default style also as subsets ikiwiki-boilerplate ikiwiki-reset ikiwiki-style. --- default/_ikiwiki.scss | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/default/_ikiwiki.scss b/default/_ikiwiki.scss index 51d4211..c95bda2 100644 --- a/default/_ikiwiki.scss +++ b/default/_ikiwiki.scss @@ -1,8 +1,11 @@ -@mixin ikiwiki { +@mixin ikiwiki-boilerplate { /* ikiwiki style sheet */ /* Note that instead of modifying this style sheet, you can instead edit * local.css and use it to override or change settings in this one. */ +} + +@mixin ikiwiki-reset { /* html5 compat */ article, header, @@ -10,7 +13,9 @@ footer, nav { display: block; } +} +@mixin ikiwiki-style { .header { margin: 0; font-size: 140%; @@ -697,3 +702,10 @@ a.openid_large_btn:focus { .trailsep { display: none; } +} + +@mixin ikiwiki { + @include ikiwiki-boilerplate; + @include ikiwiki-reset; + @include ikiwiki-style; +} -- cgit v1.2.3