52 lines
568 B
CSS
52 lines
568 B
CSS
#navigation {
|
|
display: none;
|
|
}
|
|
|
|
body, html {
|
|
background-color: #000;
|
|
color: #fff;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0
|
|
}
|
|
|
|
.answer {
|
|
font-size: 180%;
|
|
}
|
|
|
|
.teamspoiler {
|
|
display: none;
|
|
}
|
|
|
|
.right {
|
|
background-color: green;
|
|
}
|
|
|
|
footer {
|
|
background: transparent !important;
|
|
}
|
|
|
|
#players {
|
|
display: table;
|
|
table-layout: fixed;
|
|
|
|
height:100px;
|
|
text-align: center;
|
|
}
|
|
#players div {
|
|
display: table-cell;
|
|
height:100px;
|
|
}
|
|
|
|
.player {
|
|
width: 100%;
|
|
}
|