-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscord.css
128 lines (103 loc) · 2.78 KB
/
discord.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@font-face {
font-family: Whitney;
font-weight: 300;
src: url(/fonts/Whitney300.woff) format("woff")
}
@font-face {
font-family: Whitney;
font-weight: 400;
src: url(/fonts/Whitney400.woff) format("woff")
}
@font-face {
font-family: Whitney;
font-weight: 500;
src: url(/fonts/Whitney500.woff) format("woff")
}
@font-face {
font-family: Whitney;
font-weight: 600;
src: url(/fonts/Whitney600.woff) format("woff")
}
@font-face {
font-family: Whitney;
font-weight: 700;
src: url(/fonts/Whitney700.woff) format("woff")
}
body {
text-rendering: optimizeLegibility !important;
}
:root {
--base-color: #e3e5e8;
--theme-color: #5468ff;
--content-max-width: none;
--base-font-family: Whitney;
--base-font-weight: 500;
--base-background-color: #36393f;
--heading-font-weight: 600;
--heading-color: #fff;
--blockquote-font-family: monospace;
--blockquote-background: #18191c;
--blockquote-border-radius: 3px;
--code-block-font-family: monospace;
--code-theme-background: #18191c;
--code-block-border-radius: 3px;
--code-block-padding: 16px;
--sidebar-background: #2f3136;
--sidebar-width: 335px;
--sidebar-name-font-weight: var(--base-font-weight);
--sidebar-nav-link-background-color--active: var(--theme-color);
--sidebar-nav-link-border-radius: 3px;
--sidebar-nav-link-text-decoration--active: none;
--sidebar-nav-link-text-decoration--hover: none;
--sidebar-nav-link-color: #b9bbbe;
--sidebar-nav-link-color--hover: white;
--sidebar-nav-link-color--active: white;
--sidebar-nav-link-padding: 5px 10px;
--search-input-background-color: #2f3136;
--search-input-border-radius: 3px;
--search-input-border-color: #040405;
--search-input-color: #f6f6f7;
--search-result-item-border-color: #4f545c;
--search-result-keyword-background: var(--theme-color);
--code-theme-keyword: #859900;
--code-theme-tag: #2aa198;
--code-theme-selector: #2aa198;
--code-theme-comment: #4f545c;
--code-inline-border-radius: 3px;
--code-inline-padding: 3px 5px 4px;
--link-border-bottom: none;
--link-border-bottom--hover: none;
--link-text-decoration: none;
--link-text-decoration--hover: underline;
--link-color: #00aff4;
--selection-color: var(--theme-color);
--copycode-background: #202225;
}
.markdown-section {
padding: 70px !important;
}
.markdown-section blockquote {
padding: 16px;
margin: 0 0;
}
/*.search input:focus, .search input:hover {
border: 1px solid var(--theme-color) !important;
border-radius: var(--search-input-border-radius) !important;
}*/
@media (min-width: 48em) {
.sidebar-toggle, .sidebar-toggle-button {
display: none;
}
}
.search input {
box-shadow: none !important;
}
.clear-button svg {
margin-top: 7px;
}
.markdown-section code {
white-space: revert !important;
}
* {
word-break: break-word;
}