From ef5a21589908f6b4778b4b135395f840711cbf39 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Wed, 5 Apr 2017 11:13:36 -0400 Subject: [PATCH] I changed the search in the header a bit I removed the side padding and reduced the max width of the search input field. --- css/app.css | 6 +++--- scss/_page.header.scss | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/css/app.css b/css/app.css index 61ad3af..e030490 100644 --- a/css/app.css +++ b/css/app.css @@ -6337,11 +6337,11 @@ header.main { #nav-search { position: relative; } #nav-search form.searchform { - padding: 0 20px 0; + padding: 0; position: absolute; top: 35px; right: 0; - max-width: 582px; + max-width: 435px; width: 100%; } #nav-search form.searchform input[type="text"].search-input { height: 30px; @@ -6356,7 +6356,7 @@ header.main { border-color: #3b76c4; } #nav-search form.searchform input[type="image"] { position: absolute; - right: 30px; + right: 15px; top: 2px; } #nav-search form.searchform .radio-area { float: right; } diff --git a/scss/_page.header.scss b/scss/_page.header.scss index 0a47056..4bc3753 100644 --- a/scss/_page.header.scss +++ b/scss/_page.header.scss @@ -123,11 +123,11 @@ header.main { // height: 212px; form.searchform { // background: $teal; - padding: 0 20px 0; + padding: 0; position: absolute; top: 35px; right: 0; - max-width: 582px; + max-width: 435px; width: 100%; input[type="text"] { &.search-input { @@ -145,7 +145,7 @@ header.main { } input[type="image"] { position: absolute; - right: 30px; + right: 15px; top: 2px; } .radio-area { -- 2.17.1