41 lines
580 B
CSS
41 lines
580 B
CSS
html, body {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.hero:before {
|
|
display: block;
|
|
background-color: #c00;
|
|
mix-blend-mode: multiply;
|
|
content: '';
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
transform: translateX(50%) skew(-40deg);
|
|
}
|
|
|
|
.text-red {
|
|
color: #c00;
|
|
}
|
|
|
|
.stat-container {
|
|
border: 1px solid #efefef;
|
|
padding: 1.5rem;
|
|
border-radius: 0.75rem;
|
|
}
|
|
|
|
.section-header:after {
|
|
display: block;
|
|
content: '';
|
|
width: 4rem;
|
|
background-color: #c00;
|
|
height: 1px;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
.game-versus {
|
|
color: #c00;
|
|
}
|
|
|
|
footer {
|
|
background-color: #18191B;
|
|
} |