diff options
-rw-r--r-- | default/_ikiwiki.scss | 14 |
1 files changed, 13 insertions, 1 deletions
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; +} |