Initial Commit

This commit is contained in:
2025-03-27 11:47:23 +02:00
commit b2f9bd1e8a
17 changed files with 260 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
.project {
display: flex;
position: relative;
min-height: 150px;
margin: 25px;
background: #575757;
border: #9c9c9c;
border-style: solid;
border-radius: 50px;
border-width: 5px;
padding: 20px;
opacity: 0;
float: left;
clear: both;
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
animation: fadeIn 1s forwards;
}
.project img {
display: block;
float: left;
max-height: 100%;
width: auto;
margin-top: auto;
margin-bottom: auto;
margin-right: 15px;
}
.project div {
float: right;
}
.project p {
font-size: 1vw;
}
.project a,h1 {
color: #7db3ff;
}