-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (83 loc) · 1.43 KB
/
Copy pathstyles.css
File metadata and controls
84 lines (83 loc) · 1.43 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
79
80
81
82
83
84
:root {
--bg: #fff8f0;
--card: #fffdf9;
--ink: #1f1b1a;
--muted: #6c5f59;
--accent: #ff6a3d;
--border: #ead8cb;
--shadow: 0 10px 30px rgba(31, 27, 26, 0.08);
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, sans-serif;
background: linear-gradient(180deg, #fff6ed 0%, #fffdf9 100%);
color: var(--ink);
}
.page {
max-width: 920px;
margin: 0 auto;
padding: 40px 20px 80px;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 24px;
box-shadow: var(--shadow);
padding: 28px;
margin-bottom: 20px;
}
.hero {
display: grid;
grid-template-columns: 220px 1fr;
gap: 28px;
align-items: center;
}
.hero img {
width: 100%;
border-radius: 20px;
display: block;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 12px;
color: var(--accent);
font-weight: 700;
}
h1, h2 {
font-family: Georgia, serif;
margin: 0 0 12px;
}
.role {
font-size: 1.1rem;
color: var(--muted);
margin: 0 0 12px;
}
.lede {
font-size: 1.05rem;
line-height: 1.6;
}
.links {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 16px;
}
.links a {
text-decoration: none;
color: var(--ink);
border: 1px solid var(--border);
border-radius: 999px;
padding: 10px 14px;
background: white;
}
ul {
padding-left: 20px;
line-height: 1.7;
}
@media (max-width: 720px) {
.hero {
grid-template-columns: 1fr;
}
}