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