blob: 37151e5ffad515ff1e36c5e71e6578b84943333a (
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
|
ul,
ol {
margin: 0;
}
ul,
li::marker {
content: unset !important;
}
a:hover {
text-decoration: none !important;
}
:focus {
outline: none;
}
:focus-visible {
outline: 2px solid var(--base0D);
outline-offset: 2px;
border-radius: 4px;
}
code {
color: var(--base07);
padding: 0.25em 0.5em;
border-radius: 4px;
}
h1:before,
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
content: "" !important;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
|