Project

General

Profile

1
input, input:focus {
2
  background: transparent 0 0 no-repeat padding-box;
3
  border-radius: 4px;
4
  padding: 15px;
5
  border: none;
6
  outline: none;
7
}
8

    
9
input::placeholder {
10
  color: #a3a3a3;
11
  font-weight: 600;
12
}
13

    
14
@media only screen and (min-width: 960px) {
15
  .bordered {
16
    border-bottom: 1px solid currentColor !important;
17
  }
18
}
19

    
20
@media only screen and (max-width: 959px) {
21
  input {
22
    font-size: 14px;
23
  }
24

    
25
  .search-input {
26
    padding-bottom: 5px;
27
    border-bottom: 2px solid currentColor;
28
  }
29
}
30

    
31
button.search, button.search:hover {
32
  color: #1a1a1a;
33
  font-weight: 700;
34
  border: none;
35
  outline: none;
36
  background-color: transparent;
37
  font-family: "Roboto", sans-serif;
38
  font-size: 16px;
39
}
40

    
41
button.search:hover {
42
  color: currentColor;
43
}
44

    
45
button.search .icon-bg {
46
  width: 56px;
47
  height: 56px;
48
  position: relative;
49
  background: white;
50
  border-radius: 50%;
51
}
52

    
53
.selected {
54
  color: #1a1a1a;
55
}
56

    
57
.overlay {
58
  margin-left: -13px;
59
  z-index: 1;
60
}
(1-1/3)