sendou.ink/app/components/match-page/MatchBanner.module.css
2026-04-03 14:17:48 +03:00

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);
}