1 2// content search 3 4.content__search { 5 width: 100%; 6 max-width: 99%; 7 display: inline-block; 8 float: left; 9 position: relative; 10 margin-right: 1em; 11 margin-top: .5em; 12 margin-bottom: .5em; 13 14 #content__search-input { 15 margin: 0; 16 border: 1px solid $medgrey; 17 padding-left: 40px; 18 padding-right: 5px; 19 &:focus { 20 box-shadow: none; 21 } 22 } 23 label { 24 position: absolute; 25 text-indent: -9999px; 26 height:20px; 27 width: 20px; 28 left: 10px; 29 top: 25px; 30 transform: translateY(-50%); 31 background: url("../assets/images/icon-search.svg") center center no-repeat; 32 opacity: .6; 33 } 34 35 #content__search-submit { 36 position: absolute; 37 display: inline-block; 38 width: 100px; 39 top: .5em; 40 right: 5px; 41 padding: 1em 2em; 42 min-height: 20px; 43 text-align: center; 44 margin: 0; 45 font-weight: 700; 46 font-size: .8em; 47 } 48 49 .tag-filter-label { 50 text-transform: uppercase; 51 color: $darkgrey; 52 font-size: .7em; 53 font-weight: 700; 54 min-height: 20px; 55 line-height:1.3; 56 margin-top: .5em; 57 text-align: right; 58 } 59}//end event-log__search