Contact section & other polish

This commit is contained in:
Patrick Schwarzer 2025-05-12 17:22:24 +02:00
parent 46ecce3224
commit 6846632d42
2 changed files with 89 additions and 7 deletions

View file

@ -279,7 +279,7 @@ body.light-mode .projects-container h1 {
text-align: center;
background-color: rgb(33, 37, 41);
border-radius: 4px;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
body.light-mode .project {
background-color: #eeeeee;
@ -347,6 +347,77 @@ body.light-mode .project a:hover {
}
/* skills Section */
.skills-container {
margin-top: 6rem;
display: flex;
flex-direction: column;
align-items: center;
color: rgb(216, 216, 216);
}
body.light-mode .skills-container {
color: rgb(216, 216, 216);
}
.skills-container h1 {
font-size: 2rem;
margin-bottom: 2rem;
color: rgb(216, 216, 216);
}
body.light-mode .skills-container h1 {
color: #3a3a3a;
}
.skills-container ul {
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
list-style: none;
gap: 1em;
}
.skills-container li {
padding: 1rem;
background-color: #5660ca;
border-radius: 0.5rem;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
.skills-container li:hover {
background-color: #3b43a0;
transform: translateY(-3px);
}
/* contact Section */
.contact-container {
margin-top: 6rem;
display: flex;
flex-direction: column;
align-items: center;
color: rgb(216, 216, 216);
}
body.light-mode .contact-container {
color: rgb(216, 216, 216);
}
.contact-container h1 {
font-size: 2rem;
margin-bottom: 2rem;
color: rgb(216, 216, 216);
}
body.light-mode .contact-container h1 {
color: #3a3a3a;
}
.contact-container a {
padding: 1rem;
background-color: #5660ca;
border-radius: 0.5rem;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
text-decoration: none; align-items: center;
color: rgb(216, 216, 216);
}
.contact-container a:hover {
background-color: #3b43a0;
transform: translateY(-3px);
}
/* <a> transition fix */
.project a,