custom.css
... ...
@@ -0,0 +1,108 @@
1
+/* Ciemny motyw dla Gollum Wiki */
2
+body {
3
+ background-color: #000000 !important;
4
+ color: #ffffff !important;
5
+}
6
+
7
+#head, #header {
8
+ background-color: #0a0a0a !important;
9
+ border-bottom: 1px solid #222 !important;
10
+}
11
+
12
+#wiki-wrapper {
13
+ background-color: #000000 !important;
14
+}
15
+
16
+#wiki-content {
17
+ background-color: #0a0a0a !important;
18
+ color: #ffffff !important;
19
+}
20
+
21
+#wiki-content-wrapper {
22
+ background-color: #0a0a0a !important;
23
+}
24
+
25
+.markdown-body {
26
+ background-color: #0a0a0a !important;
27
+ color: #ffffff !important;
28
+}
29
+
30
+a {
31
+ color: #3b82f6 !important;
32
+}
33
+
34
+a:hover {
35
+ color: #60a5fa !important;
36
+}
37
+
38
+.minibutton {
39
+ background-color: #1a1a1a !important;
40
+ color: #ffffff !important;
41
+ border: 1px solid #333 !important;
42
+}
43
+
44
+.minibutton:hover {
45
+ background-color: #2a2a2a !important;
46
+}
47
+
48
+pre, code {
49
+ background-color: #000000 !important;
50
+ color: #f0f0f0 !important;
51
+ border: 1px solid #333 !important;
52
+}
53
+
54
+table {
55
+ background-color: #0a0a0a !important;
56
+ border-color: #333 !important;
57
+}
58
+
59
+th {
60
+ background-color: #1a1a1a !important;
61
+ color: #ffffff !important;
62
+}
63
+
64
+td {
65
+ border-color: #333 !important;
66
+ background-color: #0a0a0a !important;
67
+}
68
+
69
+input, textarea, select {
70
+ background-color: #1a1a1a !important;
71
+ color: #ffffff !important;
72
+ border: 1px solid #333 !important;
73
+}
74
+
75
+#footer {
76
+ display: none !important;
77
+}
78
+
79
+.footer {
80
+ display: none !important;
81
+}
82
+
83
+/* Dodatkowe elementy */
84
+.has-rightbar {
85
+ background-color: #000000 !important;
86
+}
87
+
88
+#searchbar {
89
+ background-color: #1a1a1a !important;
90
+ color: #ffffff !important;
91
+}
92
+
93
+.search {
94
+ background-color: #1a1a1a !important;
95
+}
96
+
97
+h1, h2, h3, h4, h5, h6 {
98
+ color: #ffffff !important;
99
+}
100
+
101
+.breadcrumb {
102
+ background-color: #0a0a0a !important;
103
+ color: #ffffff !important;
104
+}
105
+
106
+.editable {
107
+ background-color: #0a0a0a !important;
108
+}