blob: a3b6520465fc3477d7516e4dd626f13bff964f77 (
plain)
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
|
.select {
position: relative;
display: inline-block;
}
.selected__option {
cursor: pointer;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.options {
position: absolute;
top: 100%;
left: 0;
width: 100%;
border: 1px solid #ccc;
border-top: none;
border-radius: 0 0 4px 4px;
background-color: #ebdbb2;
z-index: 1;
}
.option {
padding: 10px;
color: #282828;
cursor: pointer;
&:hover {
background-color: #f0f0f0;
}
}
|