blob: 6d55dfc7a76d3ea2c9620bef3df815e7c25e5479 (
plain) (
blame)
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
|
/**
Main
*/
body {
background-color: #181a1b;
}
.main {
color: #d0cdc6
}
a {
color: #1a439b;
}
button {
text-decoration-color: initial;
background-color: #3d4043;
border-top-color: #595959;
border-right-color: #595959;
border-bottom-color: #595959;
border-left-color: #595959;
color: #fff;
}
input {
border-color: #575757;
color: #e8e6e3;
}
/**
Markdown editor
*/
.editor-toolbar {
opacity: 1;
border: none;
}
.editor-toolbar a {
color: #e8e6e3 !important;
}
.editor-toolbar a.active, .editor-toolbar a:hover {
opacity: 1;
border-color: inherit;
background: #181a1b !important;
color: #e8e6e3 !important;
}
.editor-toolbar:hover, .editor-wrapper input.title:focus, .editor-wrapper input.title:hover {
opacity: 1
}
.editor-statusbar, .editor-toolbar {
color: #e8e6e3 !important;
background: #181a1b !important;
}
.editor-toolbar::after, .editor-toolbar::before {
opacity: 0;
}
.CodeMirror, .editor-preview-side {
background: inherit;
border: none;
color: #e8e6e3;
}
.editor-preview-side {
border-left: 1px solid #e8e6e3;
}
.CodeMirror-cursor {
border-left: 1px solid #e8e6e3;
}
/**
Other stuff
*/
table tr:hover {
background-color: #121516 !important;
}
table thead tr:hover {
background-color: #181a1b !important;
}
|