diff options
author | hellekin <hellekin@dyne.org> | 2016-11-18 17:05:47 +0100 |
---|---|---|
committer | hellekin <hellekin@dyne.org> | 2016-11-18 17:05:47 +0100 |
commit | d05985fe402974617672631d226fc9e9f6ad5be4 (patch) | |
tree | 9b9bb635408ec09c119636deee75734847f73840 /theme | |
parent | b8b63a811638cafab23cbd1897d3fd64f8fa17d7 (diff) | |
download | www-d05985fe402974617672631d226fc9e9f6ad5be4.tar.gz www-d05985fe402974617672631d226fc9e9f6ad5be4.tar.bz2 www-d05985fe402974617672631d226fc9e9f6ad5be4.zip |
Enlarge main content and add columns to FHD
Diffstat (limited to 'theme')
-rw-r--r-- | theme/static/css/neo900.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/theme/static/css/neo900.css b/theme/static/css/neo900.css index 91c09ad..3ac97ce 100644 --- a/theme/static/css/neo900.css +++ b/theme/static/css/neo900.css @@ -716,9 +716,22 @@ body.weekly.news div.stripe { max-width: 96rem; } body.weekly.news div.stripe > div { - max-width: 48rem; + max-width: 50rem; margin: 0 auto; } + +@media screen and (min-width: 1600px) { + body.weekly.news div:not(.jumbotron).stripe { + max-width: 90%; + -webkit-column-count: 3; /* Chrome, Safari, Opera */ + -moz-column-count: 3; /* Firefox */ + column-count: 3; + -webkit-column-gap: 4rem; /* Chrome, Safari, Opera */ + -moz-column-gap: 4rem; /* Firefox */ + column-gap: 4rem; + } +} + body.weekly.news div.jumbotron.stripe { max-width: 100%; } |