-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainMenu.less
60 lines (51 loc) · 1.48 KB
/
MainMenu.less
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
.WLC-Menu {
.WLC-menu-wrapper {
font-family: 'Ubuntu Light';
position: absolute;
width: 1024px;
height: 768px;
z-index: 100;
top: 0px;
background: rgba(0,0,0,0);
.WLC-menu-content {
cursor: pointer;
position:absolute;
top: 49px;
right:0px;
font-size: 14px;
width: 220px;
border: 1px solid #77004b;
animation-duration: .4s;
ul {
padding: 0;
margin: 0;
list-style: none inside none;
li {
padding: 8px 20px;
background: #f2f1f1;
color: #707171;
&:active,
&:focus {
background-color: #e6d9e2 !important;
color: #77004b;
}
.Icon {
display: inline-block;
padding-right: 20px;
}
&.divider-wrap {
padding: 0px 20px;
.divider {
background-color: #77004b;
height: 1px;
}
}
span {
position: relative;
bottom: 6px;
}
}
}
}
}
}