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  #content__search-input {
13    margin: 0;
14    border: 1px solid $lightgrey;
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  #content__search-submit {
34    position: absolute;
35    display: inline-block;
36    width: 100px;
37    top: .5em;
38    right: 5px;
39    padding: 1em 2em;
40    min-height: 20px;
41    text-align: center;
42    margin: 0;
43    font-weight: 700;
44    font-size: .8em;
45  }
46
47  .tag-filter-label {
48    text-transform: uppercase;
49    color: $darkgrey;
50    font-size: .7em;
51    font-weight: 700;
52    min-height: 20px;
53    line-height:1.3;
54    margin-top: .5em;
55    text-align: right;
56  }
57}//end event-log__search