This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mmenu-theme-light.css
119 lines (107 loc) · 1.69 KB
/
mmenu-theme-light.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
/*
CSS for a menu with light colors.
*/
/*
Menu, submenus, items
- Styling (light background)
*/
.mm-is-menu
{
background: #f6f6f6;
}
.mm-is-menu *
{
text-shadow: none;
}
.mm-is-menu li
{
border-bottom-color: rgba( 255, 255, 255, 0.7 );
}
.mm-is-menu li:after
{
border-bottom-color: rgba( 0, 0, 0, 0.1 );
}
.mm-is-menu li,
.mm-is-menu li > a,
.mm-is-menu li > a:hover,
.mm-is-menu li > span
{
color: #575757;
text-decoration: none;
}
.mm-menu li.mm-selected > a,
.mm-menu li.mm-selected > span
{
background: rgba( 255, 255, 255, 0.6 );
}
/* subopen/close */
.mm-menu a.mm-subopen
{
border-left-color: rgba( 255, 255, 255, 0.7 );
}
.mm-menu a.mm-subopen:before
{
border-left-color: rgba( 0, 0, 0, 0.1 );
}
.mm-menu a.mm-subclose
{
background: rgba( 255, 255, 255, 0.6 );
}
/* vertical submenu */
.mm-menu.mm-vertical li.mm-opened > a.mm-subopen,
.mm-menu.mm-vertical li.mm-opened > ul
{
background: rgba( 0, 0, 0, 0.05 );
}
/* page + blocker */
html.mm-opened .mm-page
{
box-shadow: 0 0 10px rgba( 0, 0, 0, 0.6 );
}
/*
Labels
- Styling
*/
.mm-menu li.mm-label
{
background: rgba( 0, 0, 0, 0.05 );
color: rgba( 0, 0, 0, 0.4 );
}
/*
Counters
- Styling
*/
.mm-menu em.mm-counter
{
background: rgba( 0, 0, 0, 0.2 );
box-shadow: none;
color: rgba( 255, 255, 255, 0.8 );
}
/*
Arrows
- Styling
*/
.mm-menu a.mm-subopen:after,
.mm-menu a.mm-subclose:before
{
border-color: rgba( 0, 0, 0, 0.2 );
}
/*
Search
- Styling
*/
.mm-menu div.mm-search
{
background: rgba( 0, 0, 0, 0.2 );
border-bottom-color: rgba( 0, 0, 0, 0.1 );
}
.mm-menu div.mm-search input
{
background: rgba( 255, 255, 255, 0.8 );
border: none;
color: rgba( 0, 0, 0, 0.7 );
}
.mm-menu li.mm-noresults
{
color: rgba( 0, 0, 0, 0.5 );
}