summaryrefslogtreecommitdiff
path: root/source/stylesheets
diff options
context:
space:
mode:
authorLars Henrik Mai <lars.mai@kontinui.de>2014-10-12 12:14:10 +0200
committerLars Henrik Mai <lars.mai@kontinui.de>2014-10-12 12:54:44 +0200
commit728a3c7ea09324c17e408f743a123dcfc342d3bf (patch)
tree7ceddeb5293f2d8df2959e3b61dbc711d0ca776e /source/stylesheets
parent672e80a35976470679c9f5cb9cbdd94339ec229a (diff)
add styles for proper display of week overview on index
Diffstat (limited to 'source/stylesheets')
-rw-r--r--source/stylesheets/base.css.scss1
-rw-r--r--source/stylesheets/custom.scss8
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);
+ }
+}