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
/* Every rule here is outside Kiln's subset. `kiln check` should name all of
them with a code, a location and a rewrite hint. */
.sidebar {
float: left;
width: 220px;
}
.toolbar {
position: sticky;
top: 0;
}
.overlay {
position: fixed;
inset: 0;
}
.panel {
backdrop-filter: blur(12px);
mix-blend-mode: multiply;
}
.title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.legacy {
display: table-cell;
writing-mode: vertical-rl;
}
.card:has(> .selected) {
border-color: red;
}
.deep {
transform: translate3d(0, 0, 12px);
}
@container (min-width: 480px) {
.card { padding: 24px; }
}