Skip to content

Commit 73c15b8

Browse files
committed
General css fixes. Deleted resume page, updated resume pdf.
1 parent e16c2c8 commit 73c15b8

File tree

11 files changed

+30
-453
lines changed

11 files changed

+30
-453
lines changed

assets/education.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,25 @@ li a {
2222
color: #e7df69;
2323
}
2424

25+
ul li {
26+
position: relative;
27+
padding-left: 1.5em;
28+
margin-bottom: 0.5em;
29+
color: var(--text-light);
30+
31+
}
32+
33+
ul li::before {
34+
content: "→";
35+
position: absolute;
36+
left: 0;
37+
color: var(--text-light);
38+
}
39+
40+
.achievements li::before {
41+
color: var(--accent-color);
42+
}
43+
2544
/* Mobile Responsiveness */
2645
@media screen and (max-width: 768px) {
2746
section {

assets/education.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h3>Relevant Coursework & Syllabi</h3>
5454
</ul>
5555

5656
<h3>Achievements</h3>
57-
<ul>
57+
<ul class="achievements">
5858
<li>Academic All-Conference, 2021-2024</li>
5959
<li>High Honors, 2022-2024</li>
6060
<li>Honors, 2021</li>

assets/home.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
--gallery-bg: rgba(255, 255, 255, 0.1);
33
--border-color: #112c42;
44
--transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5-
--text-light: #e7df69; /* For figcaption text color */
65
}
76

87
/* Hero Section */
@@ -24,7 +23,7 @@
2423

2524
/* Projects Section */
2625
#projects ul {
27-
padding: 0; /* Reset handled globally, but keeping specific for this section */
26+
padding: 0;
2827
margin: 20px 0;
2928
}
3029

@@ -75,12 +74,13 @@
7574

7675
.gallery figcaption {
7776
margin: 10px 0;
78-
color: var(--text-light);
77+
color: var(--accent-color);
7978
}
8079

8180
/* Skills Section */
8281
#skills ul {
8382
padding: 0;
83+
list-style: none;
8484
}
8585

8686
#skills li {
@@ -91,10 +91,6 @@
9191
}
9292

9393
/* General Sections */
94-
#education, #contact {
95-
margin: 40px 0;
96-
}
97-
9894
#contact img {
9995
width: 24px;
10096
height: 24px;

assets/load/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</a>
4242
</li>
4343
<li role="none">
44-
<a href="resume.html" role="menuitem" aria-label="Resume" class="nav-link">
44+
<a href="../../files/Resume - Joseph Lavoie.pdf" role="menuitem" aria-label="Resume" class="nav-link">
4545
<img src="../../images/resume.png" alt="" aria-hidden="true">
4646
<span>Resume</span>
4747
</a>

assets/load/universal.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ li, p {
6969
font-size: 18px;
7070
}
7171

72+
ul {
73+
list-style: none;
74+
}
75+
7276
/* Header & Navigation */
7377
header {
7478
background: transparent;

assets/projects.css

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,6 @@
88
/* Title Section */
99
.title {
1010
text-align: center;
11-
margin: 40px 0;
12-
}
13-
14-
.title h1 {
15-
color: var(--text-light);
16-
font-size: 2.5rem;
17-
margin-bottom: 15px;
18-
}
19-
20-
.title p {
21-
color: var(--text-light);
22-
font-size: 1.2rem;
2311
}
2412

2513
/* Project Section */
@@ -39,14 +27,6 @@
3927

4028
.project h2 {
4129
color: var(--highlight-color);
42-
font-size: 1.8rem;
43-
margin-bottom: 20px;
44-
}
45-
46-
.project p {
47-
color: var(--text-light);
48-
line-height: 1.6;
49-
margin: 15px 0;
5030
}
5131

5232
/* Image Styling */
@@ -70,16 +50,12 @@
7050
}
7151

7252
/* Project Features List */
73-
.project ul {
74-
padding: 0; /* Resets handled globally */
75-
margin: 20px 0;
76-
}
77-
7853
.project ul li {
7954
position: relative;
8055
padding-left: 1.5em;
8156
margin-bottom: 0.5em;
8257
color: var(--text-light);
58+
8359
}
8460

8561
.project ul li::before {

0 commit comments

Comments
 (0)