-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
233 lines (200 loc) · 3.86 KB
/
Copy pathstyles.css
File metadata and controls
233 lines (200 loc) · 3.86 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/* Resume Styles - Letter Size (8.5" x 11") */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
/* font-weight: 100 900; */
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
/* font-weight: 100 900; */
font-style: italic;
font-display: swap;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--color-text: #222222;
--color-muted: #666666;
--color-accent: #3983ff;
--color-border: #e0e0e0;
--color-tag-bg: #ecf3ff;
--font-sans: 'Inter', "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-mono: 'Inter', "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@page {
size: letter;
margin: 0.5in;
}
html {
font-size: 10.8pt;
line-height: 1.5;
}
body {
font-family: var(--font-sans);
letter-spacing: 0.01em;
color: var(--color-text);
background: white;
font-weight: 300;
}
.resume {
max-width: 8.5in;
margin: 0 auto;
padding: 0.45in 0.25in 1in;
}
@media print {
.resume {
padding: 0;
max-width: none;
}
}
/* Header */
.header {
text-align: left;
}
.name {
font-size: 1rem;
font-weight: 400;
letter-spacing: 0;
margin-bottom: 0.5rem;
}
.headline {
font-size: 0.85rem;
color: #333333;
}
.contact {
left: 0.5in;
right: 0.5in;
bottom: 0.45in;
display: flex;
justify-content: space-between;
gap: 1rem;
font-size: 0.85rem;
color: var(--color-muted);
border-top: 1px solid var(--color-border);
padding-top: 1rem;
margin-top: 1rem;
background: white;
}
.contact a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid var(--color-accent);
}
/* Section headings */
.content h2 {
font-size: 2rem;
font-weight: 400;
text-transform: none;
letter-spacing: 0.01em;
color: var(--color-text);
margin-top: 0.35rem;
margin-bottom: 0.6rem;
padding-bottom: 0.35rem;
}
/* Job entries */
.content h3 {
font-size: 0.78rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--color-accent);
margin-top: 1rem;
margin-bottom:0.05rem;;
}
.content h4 {
font-size: 1.1rem;
font-weight: 600;
margin-top: 0.8rem;
margin-bottom: 0.1rem;
}
/* Location and dates - the -> prefix lines */
.content .meta {
color: var(--color-text);
font-size: 0.85rem;
text-align: right;
}
.content h3 + .meta,
.content h4 + .meta {
float: right;
margin-top: -1.05rem;
}
.content .meta + * {
clear: both;
}
/* Italic descriptions (company taglines) */
.content em {
display: block;
color: var(--color-text);
font-size: 0.85rem;
font-style: italic;
margin-bottom: 0.75rem;
}
/* Bullet points */
.content ul {
list-style: none;
margin: 0.35rem 0 0.55rem;
padding-left: 0;
}
.content li {
position: relative;
margin-bottom: 0.3rem;
padding-left: 0.9rem;
font-size: 0.88rem;
}
.content li::before {
content: "–";
position: absolute;
left: -2px;
top: 0;
color: var(--color-accent);
}
.content li strong {
font-weight: 400;
}
/* Inline code (skills/tags) */
.content code {
font-family: var(--font-mono);
font-size: 0.85rem;
font-weight: 400;
color: var(--color-accent);
background: var(--color-tag-bg);
padding: 0.1rem 0.3rem;
margin-bottom: 0.5rem;
border-radius: 2px;
white-space: nowrap;
}
/* Skills section - paragraphs with inline code */
.content p {
margin-bottom: 0.3rem;
font-size: 0.88rem;
}
/* Links in content */
.content a {
color: var(--color-accent);
text-decoration: none;
}
/* Print optimizations */
@media print {
.content h2 {
page-break-after: avoid;
}
.content h3,
.content h4 {
page-break-after: avoid;
}
.content li {
page-break-inside: avoid;
}
a {
color: var(--color-text);
}
.contact a {
color: var(--color-text);
}
}