-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathjumpto.css
67 lines (59 loc) · 1.05 KB
/
jumpto.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
.jumpto-cotainer {
position: relative;
}
.jumpto-subnav {
position: absolute;
top: 0;
left: -120px;
width: 100px;
background: rgba(0,0,0,0.7);
}
.jumpto-subnav .jumpto-second {
display: none;
}
.jumpto-subnav.fixed {
position: fixed !important;
left: auto;
top: 25px;
margin-left: -120px;
}
.jumpto-subnav.fixed.bottom {
top: auto;
bottom: 0;
position: absolute !important;
}
.jumpto-subnav ul{
list-style: none;
padding: 0;
margin: 0;
}
.jumpto-subnav ul li{
list-style: none;
padding: 0;
margin: 0;
}
.jumpto-subnav ul li a {
padding:10px;
display: block;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
color: white;
font-size: 12px;
}
.jumpto-subnav ul li a:hover, .jumpto-subnav ul li a.active {
background: black;
}
.jumpto-subnav ul > li > ul > li > a{
padding-left: 15px;
}
.jumpto-title, .jumpto-close a{
background: #7D0A2C;
color: #FFF;
text-align: center;
text-transform: uppercase;
font-size: 12px;
font-weight: 500;
padding: 5px 10px;
display: block;
}