Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 1 | |
| 2 | // content search |
| 3 | |
| 4 | .content__search { |
| 5 | width: 100%; |
| 6 | max-width: 99%; |
| 7 | display: inline-block; |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 8 | float: left; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 9 | position: relative; |
| 10 | margin-right: 1em; |
| 11 | margin-top: .5em; |
Michael Davis | 272297b | 2017-04-24 12:11:53 -0500 | [diff] [blame] | 12 | margin-bottom: .5em; |
| 13 | |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 14 | #content__search-input { |
| 15 | margin: 0; |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame^] | 16 | border: 1px solid $medgrey; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 17 | padding-left: 40px; |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 18 | padding-right: 5px; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 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 | |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 35 | #content__search-submit { |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 36 | position: absolute; |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 37 | display: inline-block; |
| 38 | width: 100px; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 39 | top: .5em; |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 40 | right: 5px; |
| 41 | padding: 1em 2em; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 42 | min-height: 20px; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 43 | text-align: center; |
| 44 | margin: 0; |
Michael Davis | 0c26234 | 2017-04-10 11:48:52 -0500 | [diff] [blame] | 45 | font-weight: 700; |
| 46 | font-size: .8em; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 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 |