forked from adgsm/multi-level-push-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.multilevelpushmenu.min.scss
102 lines (102 loc) · 2.31 KB
/
jquery.multilevelpushmenu.min.scss
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
$borderColor:#295685;
.multilevelpushmenu_wrapper {
margin: 0;
min-height: 100%;
min-width: 100%;
overflow: hidden;
padding: 0;
position: absolute;
.backItemClass {
background: #2e6196;
border-top: 1px solid #{$borderColor};
display: block;
padding: .4em .4em .4em .4em;
}
.cursorPointer {
cursor: pointer;
}
.floatRight {
float: right;
}
.floatLeft {
float: left;
}
.iconSpacing_ltr {
padding: 0 .4em 0 0;
}
.iconSpacing_rtl {
padding: 0 0 0 .4em;
}
.levelHolderClass {
background: #336ca6;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 1em;
min-height: 100%;
overflow: hidden;
position: absolute;
top: 0;
width: auto;
zoom: 1;
}
.ltr {
left: 0;
margin-left: -100%;
-moz-box-shadow: 5px 0 5px -5px #1f4164;
-webkit-box-shadow: 5px 0 5px -5px #1f4164;
box-shadow: 5px 0 5px -5px #1f4164;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164,direction=90,strength=2);
}
.multilevelpushmenu_inactive {
background: #2e6196;
}
.rtl {
margin-right: -100%;
right: 0;
-moz-box-shadow: 5px 0 5px 5px #1f4164;
-webkit-box-shadow: 5px 0 5px 5px #1f4164;
box-shadow: 5px 0 5px 5px #1f4164;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164,direction=270,strength=2);
}
a {
color: #fff;
display: block;
font-size: 1.5em;
line-height: 1em;
outline: none;
overflow: hidden;
padding: .2em .2em;
text-decoration: none;
img {
max-height: 1em;
}
}
a:hover {
color: #ffe;
}
h2 {
color: #1f4164;
font-size: 1.5em;
font-weight: bold;
line-height: 1em;
padding: 0 .4em 0 .4em;
img {
max-height: 1em;
}
}
li {
border-top: 1px solid #{$borderColor};
cursor: pointer;
padding: .4em .4em .4em .4em;
}
li:hover {
background-color: #{$borderColor};
}
li:last-child {
border-bottom: 1px solid #{$borderColor};
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
}