mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-25 04:53:00 -05:00
43 lines
699 B
CSS
43 lines
699 B
CSS
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1-5);
|
|
}
|
|
|
|
.banner {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-areas: "map info" "notice notice";
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
width: 100%;
|
|
height: 175px;
|
|
border-radius: var(--radius-box);
|
|
padding: var(--s-2);
|
|
background-image:
|
|
linear-gradient(
|
|
to top,
|
|
rgba(255, 255, 255, 0),
|
|
rgba(255, 255, 255, 0),
|
|
rgba(0, 0, 0, 0.6)
|
|
),
|
|
var(--stage-img);
|
|
}
|
|
|
|
.info {
|
|
grid-area: info;
|
|
justify-self: flex-end;
|
|
}
|
|
|
|
.map {
|
|
grid-area: map;
|
|
display: flex;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.thickText {
|
|
font-size: var(--font-md);
|
|
font-weight: var(--weight-semi);
|
|
}
|