From d2657eddd0e9135915228ab4445b5c872b5e0357 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 17 Nov 2016 10:56:58 -0500 Subject: [PATCH] frontpage: Adjust column presentation. --- www/conservancy/static/css/conservancy.css | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/www/conservancy/static/css/conservancy.css b/www/conservancy/static/css/conservancy.css index 6cc6a506..18bd9c04 100644 --- a/www/conservancy/static/css/conservancy.css +++ b/www/conservancy/static/css/conservancy.css @@ -263,14 +263,15 @@ h3 { margin-top: .6em; margin-bottom: .4em; } .column h2 a { text-decoration: none; color: #000000; } .column h2 a:hover { text-decoration: underline; } -@media all and (min-width: 60em) { - .column { - float: left; - } +@media all and (min-width: 90em) { .column:nth-child(odd) { clear: both; - width: 47%; - margin-right: 3em; + float: left; + width: 49%; + } + .column:nth-child(even) { + float: right; + width: 49%; } }