_Sidebar.md
... ...
@@ -0,0 +1 @@
1
+lalala
custom.css
... ...
@@ -0,0 +1,236 @@
1
+@import "pygmentize-vim.css";
2
+
3
+/*Breite Wikiseiten*/
4
+.container-lg {
5
+ max-width: 1250px;
6
+}
7
+
8
+.col-md-3 {
9
+ width: 20%;
10
+}
11
+
12
+
13
+/*Nummerierung Inhaltsverzeichnis*/
14
+.toc ul{counter-reset: item }
15
+.toc li { display: block }
16
+.toc li:before { content: counters(item, ".") " "; counter-increment: item }
17
+
18
+#wiki-sidebar {
19
+ position: -webkit-sticky;
20
+ position: sticky;
21
+ top: 16px;
22
+ }
23
+
24
+ .markdown-body h3,
25
+ .markdown-body h4,
26
+ .markdown-body h5,
27
+ .markdown-body h6 {
28
+
29
+
30
+ background-image: linear-gradient(to right, #e0dcdc 100%, transparent 100%);
31
+ background-position: 0 100%;
32
+ background-repeat: repeat-x;
33
+ background-size: 1em 1px;
34
+
35
+ }
36
+
37
+
38
+
39
+
40
+
41
+@media (prefers-color-scheme: dark) {
42
+
43
+ body, html,
44
+ .markdown-body h1,
45
+ .markdown-body h2,
46
+ .markdown-body h3,
47
+ .markdown-body h4,
48
+ .markdown-body h5,
49
+ .markdown-body h6,
50
+ .history h1 strong,
51
+ .edit h1 strong,
52
+ .results h1 strong,
53
+ .compare h1 strong,
54
+ .highlight,
55
+ #gollum-editor textarea,
56
+ #wiki-history table tr td.author a {
57
+ color: white;
58
+ background-color: rgb(22, 27, 34);
59
+ }
60
+
61
+ .markdown-body pre {
62
+ background-color: #202020;
63
+ }
64
+
65
+ .minibutton a,
66
+ #search-submit,
67
+ #gollum-editor #gollum-editor-function-bar a.function-button,
68
+ #gollum-editor input#gollum-editor-submit,
69
+ #gollum-editor #gollum-editor-preview {
70
+ background-color: #9ea2aea8;
71
+ border-color: #9e9e9e;
72
+ color: #fbfbfb;
73
+
74
+ text-shadow: 0 1px 0 black;
75
+
76
+ filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#707070', endColorstr='#575757');
77
+ background: -webkit-gradient(linear, left top, left bottom, from(#707070, to(#575757)));
78
+ background: -moz-linear-gradient(top, #707070, #575757);
79
+ }
80
+
81
+ #gollum-editor #gollum-editor-function-bar #gollum-editor-format-selector select {
82
+ background-color: #9ea2aea8;
83
+ border-color: #9e9e9e;
84
+ color: #fbfbfb;
85
+ }
86
+
87
+
88
+ img {
89
+ filter: brightness(.8) contrast(1.2);
90
+ }
91
+
92
+ /* Markdown Editor */
93
+ @media (min-width: 940px) {
94
+ #gollum-editor {
95
+ border: 1px solid #828282;
96
+ background: #293443;
97
+ }
98
+ }
99
+
100
+ #gollum-editor-body-ace.form-control.ace_editor.ace-tomorrow.ace_focus {
101
+ color: black;
102
+ }
103
+
104
+ #gollum-editor {
105
+ border: 1px solid #828282;
106
+ background: #293443;
107
+ }
108
+
109
+ /*Markdown Editor Textfeld*/
110
+ .form-control{
111
+ background-color: #959da533;
112
+ color: rgb(230, 224, 224);
113
+ }
114
+
115
+ /*Sidebar Farbe*/
116
+ .Box {
117
+ background-color: #181b21;
118
+ }
119
+
120
+ /*Inhaltsverzeichnis Farbe*/
121
+ .toc {
122
+ background-color: #181b21;
123
+ --header-enum-style: decimal;
124
+ }
125
+
126
+ #head #searchbar #searchbar-fauxtext input#search-query,
127
+ #gollum-editor .singleline input,
128
+ #head #searchbar #searchbar-fauxtext {
129
+ background: rgb(22, 27, 34);
130
+ border-color: #9e9e9e;
131
+ color: white;
132
+ }
133
+
134
+ #head #searchbar #searchbar-fauxtext input#search-query.ph,
135
+ #gollum-editor .singleline input.ph,
136
+ #wiki-history table tr td.commit-name span.time-elapsed,
137
+ #footer p#last-edit,
138
+ #gollum-editor #gollum-editor-function-bar #gollum-editor-format-selector label,
139
+ .history h1 {
140
+ color: #d7d7d7;
141
+ }
142
+
143
+ #head #searchbar #searchbar-fauxtext #search-submit span {
144
+ background-position: -431px -28px;
145
+ }
146
+
147
+ #head #searchbar #searchbar-fauxtext #search-submit:hover span {
148
+ background-position: -431px -3px;
149
+ padding: 0;
150
+ }
151
+
152
+ .markdown-body code,
153
+ .markdown-body tt {
154
+ border: 1px solid #909090;
155
+ background-color: #202020;
156
+ }
157
+
158
+ #wiki-history table tr {
159
+ /*background-color: #ebf2f6;*/
160
+ /*background-color: #725e4f;*/
161
+ background-color: #5f6362;
162
+ }
163
+
164
+ #wiki-history table tr:nth-child(2n),
165
+ #wiki-history table tr.alt-row {
166
+ /*background-color: #f3f7fa;*/
167
+ /*background-color: #5b4b3b;*/
168
+ background-color: #4b4c4d;
169
+ }
170
+
171
+ #wiki-history table tr.selected {
172
+ background-color: #000075 !important;
173
+ }
174
+
175
+ a:link,
176
+ a:hover,
177
+ a:visited {
178
+ color: #68caff;
179
+ }
180
+
181
+ .highlight .err,
182
+ .highlight .gd,
183
+ .highlight .gd .x,
184
+ .highlight .gi,
185
+ .highlight .gi .x,
186
+ .highlight .gc {
187
+ background-color: black;
188
+ }
189
+
190
+ .compare .data td.line_numbers {
191
+ background: #4b4b4b;
192
+ border-color: #d7d7d7;
193
+ color: #d7d7d7;
194
+ }
195
+
196
+ .compare .data {
197
+ border-color: #909090;
198
+ }
199
+
200
+ @media all and (min-width: 940px) {
201
+ a#function-bold:hover span { background-position: 0 0; }
202
+ a#function-italic:hover span { background-position: -27px 0; }
203
+ a#function-underline:hover span { background-position: -54px 0; }
204
+ a#function-code:hover span { background-position: -82px 0; }
205
+ a#function-ul:hover span { background-position: -109px 0; }
206
+ a#function-ol:hover span { background-position: -136px 0; }
207
+ a#function-blockquote:hover span { background-position: -163px 0; }
208
+ a#function-hr:hover span { background-position: -190px 0; }
209
+ a#function-h1:hover span { background-position: -217px 0; }
210
+ a#function-h2:hover span { background-position: -244px 0; }
211
+ a#function-h3:hover span { background-position: -271px 0; }
212
+ a#function-link:hover span { background-position: -298px 0; }
213
+ a#function-image:hover span { background-position: -324px 0; }
214
+ a#function-help:hover span { background-position: -405px 0; }
215
+
216
+ a#function-bold span { background-position: 0 -28px; }
217
+ a#function-italic span { background-position: -27px -28px; }
218
+ a#function-underline span { background-position: -54px -28px; }
219
+ a#function-code span { background-position: -82px -28px; }
220
+ a#function-ul span { background-position: -109px -28px; }
221
+ a#function-ol span { background-position: -136px -28px; }
222
+ a#function-blockquote span { background-position: -163px -28px; }
223
+ a#function-hr span { background-position: -190px -28px; }
224
+ a#function-h1 span { background-position: -217px -28px; }
225
+ a#function-h2 span { background-position: -244px -28px; }
226
+ a#function-h3 span { background-position: -271px -28px; }
227
+ a#function-link span { background-position: -298px -28px; }
228
+ a#function-image span { background-position: -324px -28px; }
229
+ a#function-help span { background-position: -405px -28px; }
230
+ }
231
+
232
+ /* Don't let pygmentize's definitions mess up MathJax */
233
+ .MathJax * {
234
+ color: white !important;
235
+ }
236
+}