-
Notifications
You must be signed in to change notification settings - Fork 2
/
wiki.css
109 lines (88 loc) · 1.58 KB
/
wiki.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
.active a {
color: rgb(0, 0, 0) !important;
font-weight: bold;
}
.active {
border-left: 2px solid rgb(0, 0, 0);
padding-left: 4px;
background-color: rgb(214, 214, 214);
border-radius: 2px;
transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
}
html body #toc .hide-me {
height: 0px !important;
opacity: 0;
transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
}
h1,h2,h3,h4,h5 {
border-bottom: 0px;
}
h2 {
margin-top: 120px;
}
.ambox {
display: none !important;
}
#left-navigation,#p-views {
display: none;
}
#p-personal,#siteSub {
display: none;
}
#mp-topbanner,#mp-upper,#mp-lower {
display: none;
}
#right-navigation {
margin-top: 1em;
}
.mw-body {
border: 0px;
}
#toc {
position: fixed;
border: 5px solid white;
background: white;
left: 0px;
top: 0px;
z-index: 9999;
width: 260px;
}
.viewport {
height: 100vh;
overflow: auto;
}
#mw-panel {
position: relative !important;
/*display: none !important;*/
}
#toc ul:nth-of-type(1) {
overflow: auto;
}
#toc ul:nth-of-type(1) :hover {
background: rgb(224, 224, 224);
}
#toc ul ul {
overflow: visible;
height: auto !important;
margin-top: 4px;
}
#toc ul ul li {
font-size: 12px;
}
html body .mw-body {
padding-left: 4em !important;
margin-left: 240px;
}
#split-bar {
background-color:rgb(218, 218, 218);
height: 100vh;
position: absolute;
right: -3px;
width: 6px;
top: 0px;
cursor: col-resize;
}