forked from codingmarket07/Custom-Select-Box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
124 lines (103 loc) · 2.05 KB
/
styles.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
font-family: 'Montserrat', sans-serif;
}
body{
background: #fdc75b;
color: #555555;
}
.wrapper{
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%,-50%);
}
.wrapper .title{
font-weight: 700;
font-size: 24px;
color: #fff;
}
.select_wrap{
width: 225px;
margin: 15px auto;
position: relative;
user-select: none;
}
.select_wrap .default_option{
background: #fff;
border-radius: 5px;
position: relative;
cursor: pointer;
}
.select_wrap .default_option li{
padding: 10px 20px;
}
.select_wrap .default_option:before{
content: "";
position: absolute;
top: 18px;
right: 18px;
width: 6px;
height: 6px;
border: 2px solid;
border-color: transparent transparent #555555 #555555;
transform: rotate(-45deg);
}
.select_wrap .select_ul{
position: absolute;
top: 55px;
left: 0;
width: 100%;
background: #fff;
border-radius: 5px;
display: none;
}
.select_wrap .select_ul li{
padding: 10px 20px;
cursor: pointer;
}
.select_wrap .select_ul li:first-child:hover{
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.select_wrap .select_ul li:last-child:hover{
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.select_wrap .select_ul li:hover{
background: #fff4dd;
}
.select_wrap .option{
display: flex;
align-items: center;
}
.select_wrap .option .icon{
background: url('food_items.png') no-repeat 0 0;
width: 32px;
height: 32px;
margin-right: 15px;
}
.select_wrap .option.pizza .icon{
background-position: 0 0;
}
.select_wrap .option.burger .icon{
background-position: 0 -35px;
}
.select_wrap .option.ice .icon{
background-position: 0 -72px;
}
.select_wrap .option.fries .icon{
background-position: 0 -111px;
width: 25px;
}
.select_wrap.active .select_ul{
display: block;
}
.select_wrap.active .default_option:before{
top: 25px;
transform: rotate(-225deg);
}