-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdropdown.css
73 lines (73 loc) · 1.14 KB
/
dropdown.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
.menu {
display: flex;
width: 100%;
margin: auto;
top: 20%;
background-color: antiquewhite;
}
#menu1,
#menu2,
#menu3,
#menu4 {
display: flex;
flex-direction: column;
}
.small img {
width: 13% !important;
}
.menu span {
position: relative;
bottom: 17px;
left: 10px;
font-weight: 600;
font-size: 14px;
font-family: hero-new, sans-serif;
}
.menu h4{
color: #8d8d8d;
font-weight: 300;
font-size: 14px;
font-family: hero-new, sans-serif;
line-height: 17px;
}
.menu2,.menu3{
display: flex;
flex-direction: column;
gap: 4px;
}
#menu4>div{
position: relative;
display: flex;
flex-direction: column;
gap: 14px;
width: 70%;
margin: 17px;
height: 100%;
}
#menu4 img{
position: relative;
width: 100%;
}
#menu1>div{
display: flex;
flex-direction: column;
gap: 20px;
width: 60%;
margin-top: 16px;
position: relative;
left: 20%;
}
.menu2>div,.menu3>div{
line-height: 18px;
height: 174px;
width: 77%;
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 20px;
margin: 15px;
}
.menu2>div:hover,.menu3>div:hover{
background-color: beige;
cursor: pointer;
}