Skip to content

Commit

Permalink
General css fixes. Deleted resume page, updated resume pdf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Code-JL committed Jan 12, 2025
1 parent e16c2c8 commit 73c15b8
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 453 deletions.
19 changes: 19 additions & 0 deletions assets/education.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@ li a {
color: #e7df69;
}

ul li {
position: relative;
padding-left: 1.5em;
margin-bottom: 0.5em;
color: var(--text-light);

}

ul li::before {
content: "→";
position: absolute;
left: 0;
color: var(--text-light);
}

.achievements li::before {
color: var(--accent-color);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
section {
Expand Down
2 changes: 1 addition & 1 deletion assets/education.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h3>Relevant Coursework & Syllabi</h3>
</ul>

<h3>Achievements</h3>
<ul>
<ul class="achievements">
<li>Academic All-Conference, 2021-2024</li>
<li>High Honors, 2022-2024</li>
<li>Honors, 2021</li>
Expand Down
10 changes: 3 additions & 7 deletions assets/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
--gallery-bg: rgba(255, 255, 255, 0.1);
--border-color: #112c42;
--transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--text-light: #e7df69; /* For figcaption text color */
}

/* Hero Section */
Expand All @@ -24,7 +23,7 @@

/* Projects Section */
#projects ul {
padding: 0; /* Reset handled globally, but keeping specific for this section */
padding: 0;
margin: 20px 0;
}

Expand Down Expand Up @@ -75,12 +74,13 @@

.gallery figcaption {
margin: 10px 0;
color: var(--text-light);
color: var(--accent-color);
}

/* Skills Section */
#skills ul {
padding: 0;
list-style: none;
}

#skills li {
Expand All @@ -91,10 +91,6 @@
}

/* General Sections */
#education, #contact {
margin: 40px 0;
}

#contact img {
width: 24px;
height: 24px;
Expand Down
2 changes: 1 addition & 1 deletion assets/load/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</a>
</li>
<li role="none">
<a href="resume.html" role="menuitem" aria-label="Resume" class="nav-link">
<a href="../../files/Resume - Joseph Lavoie.pdf" role="menuitem" aria-label="Resume" class="nav-link">
<img src="../../images/resume.png" alt="" aria-hidden="true">
<span>Resume</span>
</a>
Expand Down
4 changes: 4 additions & 0 deletions assets/load/universal.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ li, p {
font-size: 18px;
}

ul {
list-style: none;
}

/* Header & Navigation */
header {
background: transparent;
Expand Down
26 changes: 1 addition & 25 deletions assets/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,6 @@
/* Title Section */
.title {
text-align: center;
margin: 40px 0;
}

.title h1 {
color: var(--text-light);
font-size: 2.5rem;
margin-bottom: 15px;
}

.title p {
color: var(--text-light);
font-size: 1.2rem;
}

/* Project Section */
Expand All @@ -39,14 +27,6 @@

.project h2 {
color: var(--highlight-color);
font-size: 1.8rem;
margin-bottom: 20px;
}

.project p {
color: var(--text-light);
line-height: 1.6;
margin: 15px 0;
}

/* Image Styling */
Expand All @@ -70,16 +50,12 @@
}

/* Project Features List */
.project ul {
padding: 0; /* Resets handled globally */
margin: 20px 0;
}

.project ul li {
position: relative;
padding-left: 1.5em;
margin-bottom: 0.5em;
color: var(--text-light);

}

.project ul li::before {
Expand Down
Loading

0 comments on commit 73c15b8

Please sign in to comment.