37 lines
533 B
CSS
37 lines
533 B
CSS
.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: 1rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.section-header:after {
|
|
display: block;
|
|
content: '';
|
|
width: 4rem;
|
|
background-color: #c00;
|
|
height: 1px;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
.game-versus {
|
|
color: #c00;
|
|
}
|
|
|
|
footer {
|
|
background-color: #18191B;
|
|
} |