linkroots/src/App.css

26 lines
486 B
CSS
Raw Normal View History

.App {
2021-10-14 16:56:16 +00:00
background:
linear-gradient(
rgba(0, 0, 0, 0.7),
rgba(0, 0, 0, 0.7)
),
url('background.png');
position: fixed;
min-width: 100%;
min-height: 100%;
background-size: cover;
background-position: center;
}
2021-10-13 17:57:23 +00:00
#title {
text-align: center;
margin-top: 3%;
2021-10-14 16:56:16 +00:00
font-family: "Roboto";
color: white;
2021-10-28 18:03:09 +00:00
}
#container {
display: flex;
2021-11-20 18:52:37 +00:00
flex-direction: column;
align-items: flex-start;
2021-10-28 18:03:09 +00:00
justify-content: center;
margin-top: 3%;
}