-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.scss
More file actions
47 lines (41 loc) · 940 Bytes
/
base.scss
File metadata and controls
47 lines (41 loc) · 940 Bytes
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
:root {
--color-text: inherit;
--color-accent: rgba(0, 128, 0, 0.5);
--color-accent-bg: rgba(0, 128, 0, 0.15);
--color-error: #f00;
--color-error-bg: #fff0f0;
--font-family-mono: monospace;
--font-size-base: 1rem;
--line-height-base: 1.5;
--spacing-xs: 0.25rem;
--spacing-sm: 0.5rem;
--button-padding-y: 0.4em;
--button-padding-x: 0.75em;
--border-radius-sm: 0.25em;
--transition-border: border-color 0.2s linear;
--transition-shadow: box-shadow 0.2s ease-in-out;
}
details {
transition: all 0.2s ease-in-out;
}
summary {
cursor: pointer;
outline: none;
}
summary:hover {
color: var(--link-color);
}
#configs input[name="instance"],
#configs input[name="search"] {
inline-size: 100%;
}
.noscript {
padding: var(--spacing-sm);
font-weight: 600;
color: var(--color-error);
background: var(--color-error-bg);
border: 1px solid var(--color-error);
}
.svg-defs-hidden {
display: none;
}