-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmenu.css
More file actions
119 lines (119 loc) · 2.19 KB
/
Copy pathmenu.css
File metadata and controls
119 lines (119 loc) · 2.19 KB
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
.container_dropdown {
position: absolute;
width: 100%;
top:90px;
left:0px;
display: none;
background-color: #fff;
/* width: 100%; */
}
.container_dropdown .left-container {
flex-grow: 1;
flex-basis: 0%;
max-width: 80%;
/* padding-top: 10px; */
padding-left: 20px;
height: 100%;
/* position: sticky; */
z-index: 999;
top: 0;
font-family: "Roboto Condensed", sans-serif !important;
color: #424453;
background: #f6f6f6;
font-family: "Roboto Condensed", sans-serif !important;
}
/* right part starts here */
.container_dropdown .right-container {
flex-grow: 1;
flex-basis: 0%;
max-width: 20%;
padding-top: 10px;
padding-right: 40px;
}
.menu_header ul{
padding: 0;
display: flex;
margin-bottom: 0;
border-bottom: 1px solid #e0e1e7;
}
.menu_header ul li{
padding: 25px;
list-style-type: none;
font-size: 15px;
cursor: pointer;
position: relative;
/* padding: 0 0 10px; */
margin-right: 50px;
}
.menu_header ul li:first-child{
color: #0082c3;
font-weight: 600;
}
.menu_header ul li:first-child::after{
height: 4px;
background-color: #0082c3;
border-radius: 2px;
transition: 0.4s ease;
position: absolute;
bottom: -2px;
content: '';
width: 100%;
left: 0;
}
.menu-body{
display: flex;
padding: 1rem 0;
flex-wrap: wrap;
max-height: 400px;
overflow-y: scroll;
}
.menu-col{
flex: 0 0 20%;
}
.content{
padding: 0rem 0 1rem;
}
.content h4{
font-size: 15px;
font-weight: 600;
}
.content ul{
padding: 0;
margin: 0;
}
.content ul li{
list-style-type: none;
padding: 4px 0px;
}
.content ul li a{
padding: 25px 0px;
font-size: 12px;
font-weight: 400;
line-height: 1.5;
color: #424453;
text-decoration: none;
}
#show1, #show2, #show3, #show4{
display: none;
}
.buy-now{
background: #0082c3;
color: #fff;
border-radius: 0 0 4px 4px;
flex: 1 1 auto;
min-height: 1px;
padding: 2px;
}
.buy-now p{
font-size: 20px;
}
.link a{
display: block;
padding: 5px 5px;
font-size: 15px;
color: #424453;
text-decoration: none;
}
.link a span{
float: right;
}