initial setup of website

This commit is contained in:
2023-03-10 18:38:27 +01:00
parent 0d4191eec3
commit 5ca3e383a6
26 changed files with 387 additions and 30 deletions

View File

@@ -19,10 +19,24 @@
}
.feature {
text-align: center;
display: inline-flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 40%;
width: 100%;
padding: 2%;
}
.image {
width: 40%;
height: auto;
margin: 3%;
}
@media only screen and (min-width: 999px) {
.feature {
width: 40%;
}
}

View File

@@ -30,6 +30,7 @@ body {
*/
background-color: white;
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
justify-content: center;
@@ -47,19 +48,43 @@ body {
width: 90%;
padding: 2%;
margin: 3%;
background-color: rgba(255, 255, 255, 0.644);
background-color: rgba(142, 156, 237, 0.644);
border-radius: 0px 0px 50px 50px;
margin-top: 0%;
margin-top: 0;
}
.button {
background-color: rgb(24, 43, 61);
color: white;
text-decoration: none;
padding: 5%;
padding-bottom: 3%;
padding-top: 3%;
padding: 40px;
padding-bottom: 20px;
padding-top: 20px;
border-radius: 30px;
cursor: pointer;
margin: 1.5%;
}
#nav {
position: relative;
z-index: 1;
height: 25vh;
}
@media only screen and (min-width: 999px) {
#nav {
height: 15vh;
}
.content, .title-wrapper {
width: 70%;
padding: 5%;
margin: 10%;
margin-top: 0;
}
.title-wrapper {
margin-top: 3%;
margin-bottom: 0;
}
}