Skip to content

Commit d840e4c

Browse files
feat(resume): improve spacing and font sizes for better readability
- Increased side padding from 1.5rem to 3rem for better breathing room - Increased container max-width to 860px - Enhanced font sizes across all elements to match site typography: - Name: 2rem → 2.25rem - Job title: 1.2rem → 1.35rem - Section headings: 1.5rem → 1.75rem - Body text: default → 1.05rem - Experience headings: 1.1rem → 1.2rem - All links and navigation: improved sizing - Better spacing for contact info and navigation elements - Improved mobile responsiveness with appropriate padding adjustments - Enhanced line heights for better readability
1 parent 0bdb9d9 commit d840e4c

File tree

3 files changed

+41
-27
lines changed

3 files changed

+41
-27
lines changed

assets/built/screen.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/built/screen.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/components/resume.css

Lines changed: 39 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
}
55

66
.resume {
7-
max-width: 800px;
7+
max-width: 860px;
88
margin: 0 auto;
9-
padding: 2rem 1.5rem;
9+
padding: 2.5rem 3rem;
1010
background: white;
1111
}
1212

@@ -26,7 +26,7 @@
2626
}
2727

2828
.resume-name {
29-
font-size: 2rem;
29+
font-size: 2.25rem;
3030
font-weight: 700;
3131
margin: 0 0 0.5rem 0;
3232
color: #333;
@@ -35,17 +35,18 @@
3535
.resume-pronouns {
3636
font-weight: 400;
3737
color: #666;
38+
font-size: 1rem;
3839
}
3940

4041
.resume-title {
41-
font-size: 1.2rem;
42+
font-size: 1.35rem;
4243
font-weight: 600;
4344
margin: 0.5rem 0;
4445
color: #0066cc;
4546
}
4647

4748
.resume-location {
48-
font-size: 1rem;
49+
font-size: 1.1rem;
4950
margin: 0.5rem 0;
5051
color: #666;
5152
}
@@ -57,10 +58,10 @@
5758

5859
.resume-contact a {
5960
display: block;
60-
margin: 0.25rem 0;
61+
margin: 0.35rem 0;
6162
color: #0066cc;
6263
text-decoration: underline;
63-
font-size: 0.95rem;
64+
font-size: 1rem;
6465
}
6566

6667
.resume-contact a:hover {
@@ -77,10 +78,10 @@
7778

7879
.resume-nav a {
7980
display: inline-block;
80-
margin: 0 1rem 0.5rem 0;
81+
margin: 0 1.25rem 0.5rem 0;
8182
color: #0066cc;
8283
text-decoration: underline;
83-
font-size: 0.9rem;
84+
font-size: 1rem;
8485
}
8586

8687
.resume-nav a:hover {
@@ -97,18 +98,19 @@
9798
}
9899

99100
.resume-section > h2 {
100-
font-size: 1.5rem;
101+
font-size: 1.75rem;
101102
font-weight: 600;
102-
margin: 0 0 1rem 0;
103+
margin: 0 0 1.25rem 0;
103104
color: #333;
104105
border-bottom: 2px solid #0066cc;
105106
padding-bottom: 0.5rem;
106107
}
107108

108109
.resume-section p {
109-
margin: 0.75rem 0;
110-
line-height: 1.5;
110+
margin: 1rem 0;
111+
line-height: 1.6;
111112
color: #333;
113+
font-size: 1.05rem;
112114
}
113115

114116
/* Skills */
@@ -120,9 +122,10 @@
120122
}
121123

122124
#skills li {
123-
margin: 0.5rem 0;
125+
margin: 0.6rem 0;
124126
break-inside: avoid;
125-
line-height: 1.4;
127+
line-height: 1.5;
128+
font-size: 1rem;
126129
}
127130

128131
@media (min-width: 768px) {
@@ -144,27 +147,28 @@
144147
}
145148

146149
.resume-experience h3 {
147-
font-size: 1.1rem;
150+
font-size: 1.2rem;
148151
font-weight: 600;
149-
margin: 0 0 0.25rem 0;
152+
margin: 0 0 0.35rem 0;
150153
color: #333;
151154
}
152155

153156
.resume-experience .meta {
154157
color: #666;
155-
margin-bottom: 0.75rem;
156-
font-size: 0.9rem;
158+
margin-bottom: 0.85rem;
159+
font-size: 1rem;
157160
font-style: italic;
158161
}
159162

160163
.resume-experience ul {
161-
margin: 0.5rem 0;
164+
margin: 0.6rem 0;
162165
padding-left: 1.5rem;
163166
}
164167

165168
.resume-experience li {
166-
margin: 0.5rem 0;
167-
line-height: 1.4;
169+
margin: 0.6rem 0;
170+
line-height: 1.5;
171+
font-size: 1rem;
168172
}
169173

170174
/* Role headers */
@@ -202,16 +206,26 @@
202206
/* Mobile */
203207
@media (max-width: 768px) {
204208
.resume {
205-
padding: 1.5rem 1rem;
209+
padding: 2rem 1.5rem;
206210
}
207211

208212
.resume-name {
209-
font-size: 1.75rem;
213+
font-size: 1.85rem;
214+
}
215+
216+
.resume-section > h2 {
217+
font-size: 1.5rem;
210218
}
211219

212220
.resume-nav a {
213221
display: block;
214-
margin: 0.25rem 0;
222+
margin: 0.35rem 0;
223+
}
224+
}
225+
226+
@media (max-width: 480px) {
227+
.resume {
228+
padding: 1.5rem 1rem;
215229
}
216230
}
217231

0 commit comments

Comments
 (0)