mfbs

CSS microframework
git clone https://git.ce9e.org/mfbs.git

commit
b81ddf2406b3ea04002d5f4688a049514403c342
parent
a0477bdb0c9a1022c4f6fa4c8b981e75c2051ba3
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2016-12-30 12:12
mv layout styles to separate module

Diffstat

M examples/example.scss 1 +
M sass/base.scss 5 -----
A sass/layout.scss 5 +++++

3 files changed, 6 insertions, 5 deletions


diff --git a/examples/example.scss b/examples/example.scss

@@ -1,5 +1,6 @@
    1     1 @import "../sass/variables";
    2     2 @import "../sass/base";
   -1     3 @import "../sass/layout";
    3     4 @import "../sass/fontsize";
    4     5 @import "../sass/form";
    5     6 

diff --git a/sass/base.scss b/sass/base.scss

@@ -23,11 +23,6 @@ html {
   23    23     font-family: sans-serif;
   24    24     line-height: 1.4;
   25    25 }
   26    -1 body {
   27    -1     margin: 2em auto;
   28    -1     max-width: 36em;
   29    -1     padding: 0 $padding;
   30    -1 }
   31    26 
   32    27 h1, h2, h3, h4, h5, h6 {
   33    28     line-height: 1.2;

diff --git a/sass/layout.scss b/sass/layout.scss

@@ -0,0 +1,5 @@
   -1     1 body {
   -1     2     margin: 2em auto;
   -1     3     max-width: 36em;
   -1     4     padding: 0 $padding;
   -1     5 }