From 4bfba4d3ebb9508ff1e2a84d553bff86918d3cff Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 3 Aug 2016 16:05:07 -0400 Subject: [PATCH] testing margin above ad rotate under sticky header --- css/app.css | 3 +++ scss/_structure.scss | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/css/app.css b/css/app.css index 8982425..cadf187 100644 --- a/css/app.css +++ b/css/app.css @@ -7065,6 +7065,9 @@ footer.main { .off-canvas-wrap .inner-wrap { min-height: 100vh; height: 100%; } + @media only screen and (max-width: 40em) { + .off-canvas-wrap #slide-show { + margin-top: 85px; } } h1 { color: #94bc41; diff --git a/scss/_structure.scss b/scss/_structure.scss index 1f8eb9f..b296a63 100644 --- a/scss/_structure.scss +++ b/scss/_structure.scss @@ -9,6 +9,17 @@ min-height: 100vh; height: 100%; } + @media#{$small-only}{ + #slide-show{ + margin-top: 85px; + } + } + @media#{$medium-only}{ + + } + @media#{$large-only}{ + + } } //6. Main h1 { -- 2.17.1