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.focused {
16
    border-bottom: 1px solid currentColor !important;
17
  }
18
  .bordered:not(.focused) {
19
    border-bottom: 1px solid #a3a3a3 !important;
20
  }
21
}
22

    
23
@media only screen and (max-width: 959px) {
24
  input {
25
    font-size: 14px;
26
  }
27

    
28
  .search-input {
29
    padding-bottom: 5px;
30
    border-bottom: 2px solid currentColor;
31
  }
32
}
33

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

    
44
button.search:hover {
45
  color: currentColor;
46
}
47

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

    
56
.selected {
57
  color: #1a1a1a;
58
}
59

    
60
.overlay {
61
  margin-left: -13px;
62
  z-index: 1;
63
}
(1-1/3)