-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (82 loc) · 1.25 KB
/
styles.css
File metadata and controls
99 lines (82 loc) · 1.25 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
:root {
--bg: #0d1117;
--panel: #161b22;
--text: #e6edf3;
--muted: #9ba3b4;
--accent: #2dd4bf;
--border: #30363d;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Inter, system-ui, sans-serif;
background: var(--bg);
color: var(--text);
}
.container {
max-width: 880px;
margin: 0 auto;
padding: 64px 24px;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 12px;
}
.subtitle {
max-width: 640px;
font-size: 1.1rem;
color: var(--muted);
}
.links {
margin-top: 24px;
display: flex;
gap: 20px;
font-family: "JetBrains Mono", monospace;
}
.links a {
color: var(--accent);
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.block {
margin-top: 72px;
}
.block h2 {
font-size: 1.4rem;
margin-bottom: 28px;
border-bottom: 1px solid var(--border);
padding-bottom: 8px;
}
.item {
margin-bottom: 28px;
}
.role {
display: block;
font-weight: 600;
}
.meta {
font-size: 0.9rem;
color: var(--muted);
font-family: "JetBrains Mono", monospace;
}
.item p {
margin-top: 6px;
max-width: 680px;
color: var(--muted);
}
.certs {
list-style: none;
padding-left: 0;
}
.certs li {
margin-bottom: 12px;
}
footer {
margin-top: 96px;
font-size: 0.85rem;
color: var(--muted);
}