From 13fd9dd326bf3a287a1ee0b6387a73c6ae997136 Mon Sep 17 00:00:00 2001 From: Jonathan Preston Date: Thu, 17 Mar 2016 16:58:22 -0700 Subject: [PATCH] NEWFEATURE-161 #comments Adds max width settings to container in prep for new width editor settings. --- css/skeleton.ontraport.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/css/skeleton.ontraport.css b/css/skeleton.ontraport.css index 63e75dc..0ce6002 100644 --- a/css/skeleton.ontraport.css +++ b/css/skeleton.ontraport.css @@ -190,6 +190,20 @@ Container max-width: 1200px; } +/* For devices larger than 400px */ +@media (min-width: 400px) { + .container.container { + max-width: 85%; + } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container.container { + max-width: 80%; + } +} + /* ===================================================================================================================== Forms ===================================================================================================================== */