Bachelorthesis_Code/frontend/src/App.css

55 lines
827 B
CSS
Raw Normal View History

* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "PT Sans", sans-serif;
2021-05-05 01:08:58 +00:00
}
2021-06-07 02:14:00 +00:00
:root {
--primary: rgb(41, 63, 87);
--secondary: rgb(218,218,218);
2021-06-07 03:03:18 +00:00
--third: rgb(171, 183, 183);
2021-06-07 02:14:00 +00:00
}
.home,
.about {
2021-05-05 01:08:58 +00:00
display: flex;
height: 90vh;
2021-05-05 01:08:58 +00:00
align-items: center;
justify-content: center;
font-size: 3rem;
}
.about {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
font-size: 100px;
2021-05-05 01:08:58 +00:00
}
2021-06-21 01:51:15 +00:00
.sitePage {
min-height: 90vh;
2021-06-21 01:51:15 +00:00
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
background-color: var(--secondary);
color: var(--primary);
2021-06-21 01:51:15 +00:00
}
2021-06-21 01:51:15 +00:00
.sitePage h1 {
font-size: 5em;
margin: 0.7em auto;
2021-06-21 01:51:15 +00:00
}
.sitePage h2 {
font-size: 3.75em;
margin: 0.7em auto;
}
.sitePage p {
font-size: 2em;
max-width: 60%;
margin-bottom: 4vh;
}