Reworked my project.html to remove any text-decoration and put that styling into the projectStyle.css file. Additionally, updated the project.html page to reflect current projects.

This commit is contained in:
2026-03-23 14:02:44 +00:00
parent 46145e40b7
commit 346f868784
9 changed files with 70 additions and 45 deletions

View File

@@ -190,11 +190,17 @@ img.hero-img {
}
#projects {
display: grid;
gap: 2rem;
grid-template-columns: 1fr;
max-width: 1200px;
margin: 0 auto;
}
#projects a {
text-decoration: none;
}
.project-box {

View File

@@ -135,6 +135,9 @@ a {
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card a {
text-decoration: none;
}
.project-card:hover {
transform: translateY(-4px);