Initial commit

This commit is contained in:
2025-10-23 22:15:21 +02:00
commit 55f963d98b
12 changed files with 279 additions and 0 deletions

22
html/styles/projects.css Normal file
View File

@@ -0,0 +1,22 @@
#projects .content {
display: flex;
flex-direction: column;
}
.project-list {
display: flex;
flex-direction: row;
gap : 1rem;
margin-bottom: 2rem;
}
.project-list img {
width: 215px;
border : solid 1px black;
border-radius: 15px;
transition: transform 0.2s ease-in-out;
}
.project-list img:hover {
transform: scale(1.1);
}