-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (66 loc) · 1.52 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (66 loc) · 1.52 KB
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
69
70
71
72
73
74
75
76
77
78
/* Matcha legal pages — the app's palette (Theme.swift), light + dark. */
:root {
--canvas: #FBF6EE;
--surface: #FFFFFF;
--ink: #2A2320;
--ink-soft: #7C7169;
--rose: #BC5B6E;
--hairline: #E7DDD0;
}
@media (prefers-color-scheme: dark) {
:root {
--canvas: #161210;
--surface: #221C17;
--ink: #F3EADF;
--ink-soft: #A99C90;
--rose: #E0899A;
--hairline: #352B24;
}
}
* { box-sizing: border-box; }
body {
margin: 0;
padding: 0 24px 80px;
background: var(--canvas);
color: var(--ink);
font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
}
main { max-width: 680px; margin: 0 auto; }
header {
padding: 56px 0 28px;
border-bottom: 1px solid var(--hairline);
margin-bottom: 36px;
}
.wordmark {
font-family: Georgia, "Times New Roman", serif;
font-size: 30px;
font-weight: 700;
color: var(--ink);
text-decoration: none;
letter-spacing: -0.01em;
}
h1 {
font-family: Georgia, "Times New Roman", serif;
font-size: 34px;
font-weight: 700;
margin: 20px 0 6px;
letter-spacing: -0.015em;
}
.updated { color: var(--ink-soft); font-size: 15px; margin: 0; }
h2 {
font-size: 19px;
font-weight: 600;
margin: 36px 0 8px;
color: var(--ink);
}
p { color: var(--ink-soft); margin: 0 0 14px; white-space: pre-line; }
a { color: var(--rose); }
footer {
margin-top: 56px;
padding-top: 24px;
border-top: 1px solid var(--hairline);
color: var(--ink-soft);
font-size: 14px;
}
footer a { margin-right: 18px; }