-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathcustom.scss
286 lines (246 loc) · 8.32 KB
/
custom.scss
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* stylelint-disable docusaurus/copyright-header */
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
/* We maintain separate colours for light and dark mode */
:root {
// modified base colors
--ifm-color-primary: var(--electron-color-mid);
--ifm-color-primary-dark: #000885;
--ifm-color-primary-darker: #000047;
--ifm-color-primary-darkest: #000000;
--ifm-color-primary-light: #00aeff;
--ifm-color-primary-lighter: #4cc8ff;
--ifm-color-primary-lightest: #97e1ff;
// modified base vars
--ifm-code-font-size: 95%;
--ifm-navbar-height: 70px;
// brand-specific colors
--electron-color-light: #9feaf9;
--electron-color-mid: #028399;
--electron-color-dark: #1b1c26;
--electron-color-secondary-light: #ff6e6e;
--electron-color-secondary-mid: #e3112d;
// custom vars
--electron-heading: var(--electron-color-mid);
--electron-inline-code: var(--electron-color-secondary-mid);
--ifm-navbar-item-padding-horizontal: 8px;
--api-history-added: var(--ifm-color-success-lighter);
--api-history-deprecated: var(--ifm-color-danger-light);
// These have better contrast if desired
// --api-history-added: var(--ifm-color-success-light);
// --api-history-deprecated: var(--ifm-color-danger-dark);
// docusaurus variables
--ifm-hover-overlay: rgba(162, 236, 251, 0.2);
--ifm-link-color: var(--electron-color-mid);
--ifm-menu-color-active: var(--electron-color-dark);
// these require !important because of some weirdness in CSS ordering
// see: https://github.com/facebook/docusaurus/issues/3678
--docusaurus-highlighted-code-line-bg: rgb(217, 220, 222);
// infima shadow levels
// generated from https://www.joshwcomeau.com/shadow-palette/
--shadow-color: 0deg 0% 63%;
--shadow-elevation-low: 0px 1px 1px hsl(var(--shadow-color) / 0.07),
0px 1.4px 1.4px -1.8px hsl(var(--shadow-color) / 0.06),
-0.1px 3px 2.9px -3.5px hsl(var(--shadow-color) / 0.04);
--shadow-elevation-medium: 0px 1px 1px hsl(var(--shadow-color) / 0.06),
0px 1.8px 1.7px -0.9px hsl(var(--shadow-color) / 0.05),
-0.1px 3.5px 3.4px -1.8px hsl(var(--shadow-color) / 0.05),
-0.1px 7.5px 7.3px -2.7px hsl(var(--shadow-color) / 0.04),
-0.3px 15px 14.5px -3.5px hsl(var(--shadow-color) / 0.03);
--shadow-elevation-high: 0px 1px 1px hsl(var(--shadow-color) / 0.06),
0px 2.1px 2px -0.4px hsl(var(--shadow-color) / 0.05),
-0.1px 3.4px 3.3px -0.8px hsl(var(--shadow-color) / 0.05),
-0.1px 5.2px 5px -1.2px hsl(var(--shadow-color) / 0.05),
-0.1px 7.9px 7.6px -1.6px hsl(var(--shadow-color) / 0.04),
-0.2px 12px 11.6px -2px hsl(var(--shadow-color) / 0.04),
-0.3px 17.9px 17.3px -2.4px hsl(var(--shadow-color) / 0.04),
-0.5px 25.9px 25.1px -2.8px hsl(var(--shadow-color) / 0.03),
-0.7px 36.5px 35.3px -3.2px hsl(var(--shadow-color) / 0.03),
-0.9px 50px 48.4px -3.5px hsl(var(--shadow-color) / 0.03);
--ifm-global-shadow-lw: var(--shadow-elevation-low);
--ifm-global-shadow-md: var(--shadow-elevation-medium);
--ifm-global-shadow-tl: var(--shadow-elevation-high);
}
:root[data-theme='dark'] {
// modified base colors
--ifm-color-primary: #00aeff;
--ifm-color-primary-dark: #0057c2;
--ifm-color-primary-darker: #4d4d4f;
--ifm-color-primary-darkest: #000047;
--ifm-color-primary-light: #4cc8ff;
--ifm-color-primary-lighter: #97e1ff;
--ifm-color-primary-lightest: #e3f7ff;
// docusaurus
--docusaurus-highlighted-code-line-bg: rgb(13, 15, 28);
// modified base vars
--ifm-menu-color: var(--ifm-color-primary-lightest);
--ifm-link-color: var(--electron-color-light);
--ifm-menu-color-active: var(--electron-color-light);
// custom vars
--electron-heading: var(--ifm-color-primary-lightest);
--electron-inline-code: var(--electron-color-secondary-light);
--api-history-added: var(--ifm-color-success-darker);
--api-history-deprecated: var(--ifm-color-danger-darkest);
}
.hero {
&--electron {
color: var(--electron-color-light);
background: var(--electron-color-dark);
}
}
@media (min-width: 1440px) {
.container {
max-width: var(--ifm-container-width);
}
}
.navbar {
&--dark {
--ifm-navbar-background-color: var(--electron-color-dark);
--ifm-navbar-link-color: var(--electron-color-light);
}
&__inner {
max-width: 1400px;
margin: 0 auto;
}
&__item {
// use margin instead of padding so that the border-bottom
// on active looks better
padding: 0;
margin: var(--ifm-navbar-item-padding-vertical)
var(--ifm-navbar-item-padding-horizontal);
}
&__link {
font-weight: var(--ifm-font-weight-normal);
border-bottom: 2px solid transparent;
&--active {
color: var(--electron-color-light);
border-bottom-color: var(--ifm-link-color);
}
}
}
.footer {
&--dark {
--ifm-footer-background-color: --var(--electron-color-dark);
}
.footer__logo {
max-width: 200px;
}
}
.markdown {
a {
font-weight: var(--ifm-font-weight-bold);
// code is already semibold so make code links
// a bit thicker to differentiate the weight
code {
font-weight: var(--ifm-font-weight-bold);
}
}
p {
line-height: 180%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
--ifm-h2-font-size: 1.6rem;
--ifm-h3-font-size: 1.2rem;
--ifm-h4-font-size: 1rem;
--ifm-h5-font-size: 0.8rem;
}
// We want this to only apply to inline code, so don't apply
// this color to ``` code blocks nor any headings.
:not(pre):not(h2):not(h3):not(h4):not(h5):not(h6) > code {
border: none;
}
// don't apply --electron-inline-code colors to admonitions
// as well
.admonition {
code {
color: inherit;
}
}
}
.button {
&--outline {
border: 1px solid;
color: var(--ifm-color-primary);
&:hover {
color: var(--ifm-color-primary-dark);
}
}
&--electron {
background: var(--electron-color-dark);
border-color: var(--electron-color-dark);
&:hover {
filter: brightness(0.9);
box-shadow: var(--ifm-global-shadow-md);
transition: 0.1s linear all;
}
&.button--dark,
:root[data-theme='dark'] & {
background: var(--electron-color-light);
border-color: var(--electron-color-light);
color: black;
}
}
}
// sidebar
.menu {
&__link {
font-size: 0.9rem;
font-weight: var(--ifm-font-weight-normal);
&--active {
font-weight: var(--ifm-font-weight-bold);
}
// Note: this CSS class is added via the
// swizzled src/theme/DocSidebarItem/index.jsx
// component.
&--collapsible {
font-weight: var(--ifm-font-weight-semibold);
.theme-doc-sidebar-item-category-level-1 & {
font-size: 1rem;
}
.theme-doc-sidebar-item-category-level-2 & {
font-size: 0.95rem;
}
}
}
}
// utility
.no-select {
user-select: none;
}
.card {
border: 1px solid rgba(200, 200, 200, 0.3);
}
.table-of-contents__link--active {
font-weight: var(--ifm-font-weight-bold);
}
// fix https://github.com/electron/website/issues/539
.navbar__logo {
width: 2rem;
}
// blog sidebar custom styles
.plugin-blog [class*='sidebar_'] {
padding: 0.5rem;
& [class*='yearGroupHeading_'] {
margin: 0.75rem 0 0.5rem;
color: var(--subtle);
border-bottom: 0.01rem solid var(--ifm-table-border-color);
padding-bottom: 0.2rem;
}
}
.header-github-link:before {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
no-repeat;
content: '';
display: flex;
height: 24px;
width: 24px;
}