-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (57 loc) · 882 Bytes
/
Copy pathstyle.css
File metadata and controls
68 lines (57 loc) · 882 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
:root {
color-scheme: light;
}
body {
margin: 0;
padding: 32px;
font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
background: #f5f2ec;
color: #2b2b2b;
}
header {
margin-bottom: 24px;
}
header h1 {
font-size: 22px;
margin: 0 0 4px;
}
header p {
margin: 0;
color: #6b6b6b;
font-size: 14px;
}
.variant {
margin-bottom: 36px;
}
.variant-title {
font-size: 16px;
margin: 0 0 12px;
color: #2b2b2b;
}
.views {
display: flex;
flex-wrap: wrap;
gap: 24px;
}
.panel {
background: #ffffff;
border-radius: 12px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
padding: 20px;
overflow: auto;
}
.panel h3 {
font-size: 14px;
margin: 0 0 12px;
color: #444;
}
.panel svg {
display: block;
max-width: 100%;
height: auto;
}
footer {
margin-top: 24px;
font-size: 12px;
color: #8a8a8a;
}