forked from netology-code/bhj-homeworks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.css
More file actions
48 lines (41 loc) · 731 Bytes
/
Copy pathtask.css
File metadata and controls
48 lines (41 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.autocomplete__input {
display: none;
}
.autocomplete__value {
width: 200px;
box-shadow: 0 0 5px gray;
border-radius: 6px;
padding: 4px;
position: relative;
}
.autocomplete__value:hover {
background: rgb(225, 225, 225);
}
.autocomplete__search {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
border-radius: 6px;
border: 0;
padding: 5px;
}
.autocomplete__search_active {
display: inline-block;
}
.autocomplete__list {
list-style-type: none;
display: none;
padding: 0;
}
.autocomplete__list li {
cursor: pointer;
border-bottom: 1px solid gray;
margin-bottom: 5px;
}
.autocomplete__list_active {
display: inline-block;
}