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