-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 1016 Bytes
/
style.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
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.hero {
width: 100%;
height: 100vh;
background-image: linear-gradient(#f44336, #730228);
display: flex;
justify-content: center;
align-items: center;
}
.selector {
width: 350px;
}
#selectFiled {
background: rgba(255, 255, 255, 0.7);
width: 100%;
padding: 15px 20px;
margin-bottom: 30px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
}
#selectFiled img {
width: 12px;
transition: transform 0.5s;
}
#list {
width: 100%;
background: rgba(255, 255, 255, 0.7);
border-radius: 6px;
overflow: hidden;
}
.options {
width: 100%;
padding: 15px 0 15px 70px;
list-style: none;
cursor: pointer;
box-sizing: border-box;
position: relative;
}
.options img {
width: 25px;
position: absolute;
top: 12px;
left: 25px;
}
.options:hover {
background: rgba(255, 255, 255, 0.7);
}
.hide {
visibility: hidden;
}
.rotate {
transform: rotate(180deg);
}