blob: f1f78e047d7b485dae5b9a62c1e969ec03ab4271 (
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
|
.airy { --density: 3; }
.spacious { --density: 2; }
.dense { --density: 1; }
.crowded { --density: .5; }
.packed { --density: 0; }
.autodensity {
--density: 1;
@media (min-width: 768px) { --density: 2 }
@media (min-width: 1024px) { --density: 3 }
}
.vh, v-h {
clip: rect(0 0 0 0);
clip-path: inset(50%);
block-size: 1px;
inline-size: 1px;
overflow: hidden;
white-space: nowrap;
}
.all\:initial {
all: initial;
}
.bold { font-weight: bold }
.italic {
font-style: italic;
& em, & cite, & dfn, & var, & i, & address {
font-style: normal;
}
}
.allcaps {
text-transform: uppercase;
letter-spacing: .1rem;
}
.monospace {
font-family: var(--mono-font);
}
|