Bachelorthesis_Code/frontend/src/App.css

45 lines
792 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
}
.home,
.services,
.products,
.sign-up {
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;
}
.services {
background-image: url('images/img-9.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
2021-05-05 01:08:58 +00:00
}
.products {
background-image: url('images/img-9.jpg');
background-position: center;
background-size: fill;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
2021-05-05 01:08:58 +00:00
}
.sign-up {
background-image: url('images/img-9.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
2021-05-05 01:08:58 +00:00
}