1
0
mirror of https://github.com/lexogrine/cs2-react-hud.git synced 2026-05-04 04:03:10 +02:00
Files
cs2-react-hud-lexogrine/src/HUD/Trivia/trivia.scss
T
Hubert Walczak 989ede8638 initial commit
2023-09-11 12:37:32 +02:00

27 lines
487 B
SCSS

.trivia_container {
position: absolute;
left:20px;
background-color:black;
color: white;
width: 450px;
top:830px;
opacity:1;
transition: opacity 1s;
font-size: 16pt;
}
.trivia_container .title {
height: 30px;
display: flex;
align-items: center;
padding-left:30px;
font-weight:bold;
padding-top:10px;
}
.trivia_container .content {
padding-left:30px;
padding-bottom:15px;
}
.trivia_container.hide {
opacity:0;
}