-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (126 loc) · 4.1 KB
/
Copy pathstyle.css
File metadata and controls
141 lines (126 loc) · 4.1 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* ====== Base ====== */
:root{
--bg: #0d0f12;
--panel: #12151b;
--ink: #e8ebf2;
--muted: #aab2c0;
--line: #273140;
--accent: #a78bfa; /* soft violet */
--accent-2: #67e8f9; /* cyan */
--chip-bg: #1b2230;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ -webkit-text-size-adjust:100%; }
body{
margin:0;
background:var(--bg);
color:var(--ink);
font: 400 16px/1.45 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
letter-spacing: .01em;
}
/* ====== Layout ====== */
.no-print{ }
header.nav{
display:flex; align-items:center; justify-content:space-between;
padding:16px 20px; border-bottom:1px solid var(--line); background:#0f1319cc; backdrop-filter: blur(6px);
position:sticky; top:0; z-index:10;
}
.brand{ color:var(--ink); text-decoration:none; font-weight:800; font-size:20px; }
.menu a{ color:var(--muted); text-decoration:none; margin-left:14px; }
.menu .btn{ color:var(--ink); padding:6px 10px; border:1px solid var(--line); border-radius:999px; }
.menu .btn.small{ font-size:14px; }
.print-btn{
margin: 18px auto 0;
display:block;
border:1px solid var(--line);
background:linear-gradient(180deg,#1a2230,#141a26);
color:var(--ink);
padding:10px 14px; border-radius:10px; cursor:pointer;
}
main.resume{
max-width: 940px;
margin: 18px auto 64px;
padding: 0 16px;
}
.title-lg{ font-size:40px; line-height:1.05; letter-spacing:.01em; }
.no-margin{ margin:0; }
.tagline{ color:var(--accent-2); font-weight:700; margin-top:6px; }
.contact{ color:var(--muted); margin-top:6px; display:flex; flex-wrap:wrap; gap:8px; }
.contact a{ color:var(--ink); }
/* ====== Blocks ====== */
.resume-block{
margin-top: 26px;
padding-top: 16px;
border-top: 1px solid var(--line);
}
.resume-h2{
font-size:14px; text-transform:uppercase; letter-spacing:.12em; color:var(--muted);
margin:0 0 10px 0;
}
/* Header block spacing */
.resume-head{ margin-top:10px; margin-bottom:8px; }
/* Chips */
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.chip{
background:var(--chip-bg); color:#cfe6ff; border:1px solid var(--line);
padding:6px 10px; border-radius:999px; font-size:12px; line-height:1;
}
/* Roles */
.role{ margin-top:18px; }
.role-head{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; }
.role-title{ font-weight:700; font-size:17px; }
.role-time{ color:var(--muted); font-size:14px; white-space:nowrap; }
.role-list{ margin:10px 0 0 0; padding-left:18px; }
.role-list li{
margin:6px 0;
padding-left:4px;
}
.role-list.punch li{ margin:8px 0; }
.role-list strong{ color:#ffffff; font-weight:700; }
/* Education / Links */
.edu{ margin-top:8px; color:var(--ink); }
.link-list{ list-style:none; padding:0; margin:8px 0 0; }
.link-list li{ margin:6px 0; }
.link-list a{ color:#cfe6ff; text-decoration:none; border-bottom:1px dotted #3b5068; }
.link-list a:hover{ border-bottom-color:#7cc6ff; }
/* Multi-col competency list that collapses on mobile */
.cols{
columns: 2 320px;
column-gap: 24px;
margin:8px 0 0;
padding-left:16px;
}
.cols li{ break-inside:avoid; margin:6px 0; }
/* Footnote */
.footnote{
color:var(--muted);
border-top:1px solid var(--line);
padding-top:12px;
margin-top:20px;
font-size:12px;
}
.print-center{ text-align:center; }
/* ====== Print tuning ====== */
@media print{
@page{ size: Letter; margin: 0.5in; }
body{ background:white; color:#111; }
header.nav, .print-btn, .no-print{ display:none !important; }
main.resume{ margin:0; max-width:unset; }
.title-lg{ font-size:28px; }
.tagline{ color:#333; }
.contact a{ color:#000; }
.resume-block{ margin-top:18px; padding-top:12px; }
.resume-h2{ color:#444; }
.chip{ background:#f2f4f8; border-color:#e2e6ee; color:#333; }
.role-title{ font-size:15px; }
.role-time{ font-size:12.5px; color:#555; }
/* Bullet and line tightening for one-page feel */
.role-list li{ margin:4px 0; }
.role-list.punch li{ margin:5px 0; }
.cols{ column-gap:18px; }
.cols li{ margin:4px 0; }
/* Avoid sad page breaks */
.role, .resume-block, .edu, .chip-row, .link-list{ page-break-inside: avoid; }
.role-head{ page-break-after: avoid; }
}