css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*---------------------------------------------
Form
----------------------------------------------*/
.o-input {
border: 0;
border-radius: 0;
background-color: transparent;
vertical-align: middle;
color: #222;
-webkit-appearance: none;
appearance: none;
-webkit-transition: border 200ms ease-in-out;
transition: border 200ms ease-in-out;
&::-webkit-input-placeholder,
&:-ms-input-placeholder,
&::-moz-placeholder {
color: #999;
}
&::-ms-clear {
display: none;
}
}