diff options
Diffstat (limited to 'source/stylesheets')
-rw-r--r-- | source/stylesheets/base.css.scss | 1 | ||||
-rw-r--r-- | source/stylesheets/custom.scss | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/source/stylesheets/base.css.scss b/source/stylesheets/base.css.scss index bcef650..63c9321 100644 --- a/source/stylesheets/base.css.scss +++ b/source/stylesheets/base.css.scss @@ -1,3 +1,4 @@ @import "normalize.scss"; @import "foundation.scss"; +@import "custom.scss"; diff --git a/source/stylesheets/custom.scss b/source/stylesheets/custom.scss new file mode 100644 index 0000000..a9f195f --- /dev/null +++ b/source/stylesheets/custom.scss @@ -0,0 +1,8 @@ +// sublab specific stlyesheet customizations + +// use 7 columns for week overview on index +.dow-columns { + @media #{$large-up} { + @include grid-column($columns: 1.7); + } +} |