From 1038e591352508beb042bfb6c59359d94403885c Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Thu, 18 Apr 2013 18:45:11 -0400 Subject: [PATCH] fixes media queries --- docs/stylesheets/example.css | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/docs/stylesheets/example.css b/docs/stylesheets/example.css index e1ea6dd9b..fcb864bd1 100755 --- a/docs/stylesheets/example.css +++ b/docs/stylesheets/example.css @@ -193,20 +193,26 @@ a:hover { } -@media only screen and (max-width : 1320px) { + +@media only screen and (max-width : 1640px) { #example .container { - width: auto; - margin: 0px 0px 0px 355px; + width: 600px; + } + #example .sticky-wrapper.stuck .peek { + margin-left: -530px; } - } - -@media only screen and (max-width : 1540px) { +@media only screen and (max-width : 1420px) { #example .container { - width: 600px; + width: auto; + margin: 0px 0px 0px 395px; + } + #example .sticky-wrapper.stuck .peek { + margin-left: 0px; + left: 165px; } -} \ No newline at end of file +}