search.module.scss 399 Bytes
Newer Older
1
input[type="text"] {
2
3
4
5
6
7
8
9
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    margin-bottom: 5px;
10
11
12
}

input[type="text"]:focus {
13
14
15
16
17
18
19
20
21
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #fff;
    color: #fff;
}

i {
    cursor: pointer;
22
}