Kekkai-web/src/web/static/styles/index.css

57 lines
925 B
CSS
Raw Normal View History

2024-09-21 20:42:44 +03:00
body {
background: #4F5574;
color: white;
font-family: "Gotham Pro", sans-serif;
2024-09-21 20:42:44 +03:00
font-weight: bold;
margin: 0;
padding: 0;
2024-09-21 20:42:44 +03:00
}
.banner {
background: rgba(0, 0, 0, 0.39);
border-radius: 3vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2%;
max-width: 95vw;
margin: .5% auto;
2024-09-21 20:42:44 +03:00
}
.banner-img {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
2024-09-21 20:42:44 +03:00
}
.banner-img img {
width: 100%;
max-width: 450px;
height: auto;
2024-09-21 20:42:44 +03:00
margin: 1.5%;
}
.desc {
width: 100%;
max-width: 600px;
2024-09-21 20:42:44 +03:00
text-align: center;
margin: 1% auto;
word-wrap: break-word;
padding: 0 2%;
box-sizing: border-box;
font-size: 16px;
}
@media (min-width: 768px) {
.desc {
font-size: 20px;
}
}
@media (min-width: 1200px) {
.desc {
font-size: 24px;
}
2024-09-21 20:42:44 +03:00
}