03/10/23 firstcommit

This commit is contained in:
2023-10-03 09:22:32 +02:00
commit ae1cf1315c
60 changed files with 6143 additions and 0 deletions
+104
View File
@@ -0,0 +1,104 @@
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');
body {
margin: 0px;
padding: 0px;
}
/* projectsSpace-bigContainer */
.projectsSpace-bigContainer {
width: 100vw;
height: fit-content;
display: flex;
flex-direction: column;
background-color: #111;
}
.projectsSpace {
width: 100vw;
min-height: 100vh;
display: flex;
justify-content: center;
}
.divs-container {
width: 80vw;
min-height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
.spanProjects {
background-color: #fff;
width: 400px;
height: 500px;
margin-bottom: 2.5%;
margin-top: 2.5%;
border-radius: 30px;
text-decoration: none;
}
.spanProjects:hover {
box-shadow: 10px 5px 5px #f1f1f1;
transition: 0.05s ease-in-out;
transform: translateX(-5px);
transform: translateY(-5px);
}
.titleSpace {
width: 100%;
height: 100%;
border-top-right-radius: 28px;
border-top-left-radius: 28px;
border-bottom-left-radius: 28px;
border-bottom-right-radius: 28px;
display: flex;
align-items: top;
}
#span1 {
background-image: url("../img/bgSpace.svg");
background-size: cover;
background-repeat: no-repeat;
background-position: 25%;
}
#span2 {
background-image: url("../img/bgCodeHtmlFlou.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: 25%;
}
#span3 {
background-image: url("../img/imgCodeAppInventorFlou.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: 25%;
}
.title h2 {
width: 100%;
margin-left: 10%;
margin-top: 60%;
text-align: left;
font-size: 2.5em;
color: #f1f1f1;
text-transform: uppercase;
font-family: 'Tilt Warp', cursive;
-webkit-text-stroke: 0.5px #111;
}
@media screen and (max-width:1023px) {
.projectsSpace {
padding-top: 7%;
padding-bottom: 7%;
}
.spanProjects {
margin-top: 5%;
margin-bottom: 5%;
}
}