From: Laury GvR Date: Thu, 18 Jun 2015 20:46:07 +0000 (-0400) Subject: Fixed the submit button, pos of corner triangle, styles. X-Git-Tag: v1.0.0~12 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=84d37384d1fbe6fe03d80e2e894d1426339d45de;p=WP-Themes%2FRecycleEmmet.git Fixed the submit button, pos of corner triangle, styles. --- diff --git a/css/app.css b/css/app.css index 3864422..3c9a728 100755 --- a/css/app.css +++ b/css/app.css @@ -6532,12 +6532,15 @@ img.alignleft, img.alignright, img.aligncenter, div.wp-caption img { text-align: right; } #search_button { - width: 166px; - height: 38px; + position: absolute; + width: 33px; + height: 32px; + right: -21px; + top: 3px; padding: 1px 0; - border: solid white 3px; - border-radius: 5px; - box-shadow: 0 6px 12px -5px #9b9b9b; + border-left: 3px solid #fcde74; + background-size: 30 32px; + border-radius: 0px; /* background-image: url("../assets/search_button_1.png");*/ background-repeat: no-repeat; background-size: local 0 0/cover; } @@ -6546,6 +6549,9 @@ img.alignleft, img.alignright, img.aligncenter, div.wp-caption img { background-repeat: no-repeat; background-size: local 0 0/cover; border-color: #9acd68; } + @media only screen and (min-width:0em) and (max-width:64em) { + #search_button { + right: 15px; } } #blog-post .cycle-slide { font-size: 14px; } diff --git a/header.php b/header.php index ba68a72..3d9aacb 100755 --- a/header.php +++ b/header.php @@ -41,14 +41,20 @@
- +
diff --git a/scss/_settings.scss b/scss/_settings.scss index dc6d77d..910c568 100644 --- a/scss/_settings.scss +++ b/scss/_settings.scss @@ -167,6 +167,7 @@ $landscape: "#{$screen} and (orientation: landscape)"; $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})"; $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})"; + $medium-down: "#{$screen} and (min-width:#{lower-bound($small-range)}) and (max-width:#{upper-bound($medium-range)})"; $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})"; $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";