From: Ian Weller Date: Mon, 11 Apr 2016 19:33:21 +0000 (-0400) Subject: think I have the responsive aspect of the slideshow done, for now X-Git-Tag: v1.0.0^2~62 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=be88a6326bd17d5f997edbf241af53645fa1158e;p=WP-Themes%2Fgaslightmedia.git think I have the responsive aspect of the slideshow done, for now --- diff --git a/css/app.css b/css/app.css index fab9d51..4231077 100644 --- a/css/app.css +++ b/css/app.css @@ -6721,9 +6721,12 @@ h2#block-title { letter-spacing: 0.1em; font-size: 18px; padding: 0; - margin-bottom: 25px; + margin-bottom: 15px; position: relative; } - @media screen and (max-width: 1024px) { + @media screen and (max-width: 1199px) { + #slideshow .nivo-caption p { + font-size: 16px; } } + @media screen and (max-width: 1048px) { #slideshow .nivo-caption p { display: none; } } #slideshow .nivo-caption a.button { diff --git a/scss/_slideshow.scss b/scss/_slideshow.scss index 328d464..3eb8b6a 100644 --- a/scss/_slideshow.scss +++ b/scss/_slideshow.scss @@ -64,9 +64,12 @@ letter-spacing: 0.1em; font-size: 18px; padding: 0; - margin-bottom: 25px; + margin-bottom: 15px; position: relative; - @media screen and (max-width: 1024px) { + @media screen and (max-width: 1199px) { + font-size: 16px; + } + @media screen and (max-width: 1048px) { display: none; } }