diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-02-02 21:13:27 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2013-10-12 21:48:39 +0200 |
commit | 5041eadf3121ad3454d5862c07efec2ad6f0afe0 (patch) | |
tree | 218b773242ffaf6a82353615afb7a8db81c2a4b2 /default | |
parent | ab79e123724b160621d9a61535ac75df50e870e7 (diff) |
Provide default style also as subsets ikiwiki-boilerplate ikiwiki-reset ikiwiki-style.
Diffstat (limited to 'default')
-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; +} |