-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.css
More file actions
97 lines (91 loc) · 1.96 KB
/
plugin.css
File metadata and controls
97 lines (91 loc) · 1.96 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
a.plugin-anchor {
color: inherit !important;
display: none;
margin-left: -30px;
padding-left: 30px;
cursor: pointer;
position: absolute;
top: 0;
left: 0;
bottom: 0;
}
a.plugin-anchor span {
margin-left: -25px;
font-size: 15px;
}
h1:hover a.plugin-anchor, h2:hover a.plugin-anchor, h3:hover a.plugin-anchor,
h4:hover a.plugin-anchor, h5:hover a.plugin-anchor, h6:hover a.plugin-anchor {
display: inline-block;
}
#theo-nav{
position: fixed;
right: 100px;
bottom: 50px;
z-index: 9999999;
}
#theo-nav .theo-content{
display: none;
margin: 0;
padding: 5px 12px 10px 10px;
background: #5f5f5f;
color: white;
list-style: none;
overflow-y: scroll;
max-height: 600px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
left: 0;
bottom: 58px;
position: relative;
}
#theo-nav .theo-content a{
color: white;
}
#theo-nav #theo-nav-btn,#theo-nav #theo-top-btn{
position: absolute;
right: 0;
bottom:0;
display: inline-flex;
background: #5f5f5f;
color: white;
padding: 5px;
text-decoration: none;
}
#theo-nav #theo-nav-btn{
bottom: 32px;
}
::-webkit-scrollbar {
height: 10px;
overflow: visible;
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, .1);
background-clip: padding-box;
border: solid transparent;
min-height: 28px;
padding: 100px 0 0;
@include box-shadow(inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07));
border-width: 1px 1px 1px 6px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-button {
height: 0;
width: 0;
}
::-webkit-scrollbar-track {
background-clip: padding-box;
border: solid transparent;
border-width: 0 0 0 4px;
}
::-webkit-scrollbar-corner {
background: transparent;
}
@media (max-width: 600px){
#theo-nav{
display: none;
}
}