images, download page & rwd

This commit is contained in:
janis
2023-01-10 21:50:18 +01:00
parent f686863211
commit 7937175a99
13 changed files with 449 additions and 104 deletions

View File

@@ -7,6 +7,14 @@
*
*/
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-size: calc(14pt + 0.4vw);
}
body {
background-color: #dcdcdc;
/*TODO: Choose better font*/
@@ -25,14 +33,18 @@ body {
/* This is the tile element with the background image and the title */
.title {
/* TODO: Add background image*/
/* make div full width (well technically oversized and move it to -1% offset */
display: block;
width: 101vw;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 120vh;
margin-top: -0.5vh;
margin-left: -0.5vw;
text-align: center;
font-size: 2.5rem;
background-image: url("/assets/main_bg_cut.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.title-content {
@@ -43,14 +55,28 @@ body {
.title-buttons {
position: relative;
font-size: 1.3rem;
top: 30vh;
}
.type-animation {
font-size: 600%;
.heading {
color: white !important;
}
.subheading {
color: white !important;
font-size: 1.7rem !important;
}
#navbar {
height: 15vh;
position: relative;
z-index: 1;
}
#footer {
height: 70vh;
}
/*
*
@@ -61,10 +87,10 @@ body {
/* Buttons */
.button {
display: inline-block;
background-color: green;
background-color: rgba(0, 128, 0, 1);
text-decoration: none;
color: white;
font-size: 150%;
font-size: 1.2rem;
margin: 5px;
font-weight: bold;
padding: 30px;
@@ -73,10 +99,6 @@ body {
border-radius: 50px;
}
.button:hover {
background-color: lightgreen;
}
/*
@@ -101,14 +123,22 @@ body {
background-color: aqua;
}
.features {
.centered {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.feature-item {
display: inline-block;
width: 40%;
margin: 2%;
.sidebyside {
display: flex;
flex-direction: column;
}
.sidebyside-element {
width: 100%;
}
@@ -123,4 +153,21 @@ body {
.big-text {
font-size: 200%;
}
@media only screen and (min-width: 999px) {
#footer {
height: 40vh;
}
.sidebyside {
width: 100%;
align-items: flex-start;
justify-content: space-between;
flex-direction: row;
}
.sidebyside-element {
width: 40%;
}
}