77 lines
1.0 KiB
CSS
77 lines
1.0 KiB
CSS
body {
|
|
color: rgb(255, 255, 255);
|
|
background-color: rgb(23, 23, 23);
|
|
font-size: 25px;
|
|
padding: 20px 60px;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: rgb(199, 147, 255);
|
|
}
|
|
|
|
#interface {
|
|
text-align: center;
|
|
}
|
|
|
|
#userListPanel {
|
|
position: absolute;
|
|
left: 50%;
|
|
width: 1200px;
|
|
margin-left: -600px;
|
|
top: 200px;
|
|
}
|
|
|
|
#PlayersList {
|
|
position: absolute;
|
|
left: 200px;
|
|
}
|
|
|
|
#ChasersList {
|
|
position: absolute;
|
|
left: 800px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: square;
|
|
margin: 0px;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
#buzzer {
|
|
position: relative;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#buzzerOptions img {
|
|
width: 50px;
|
|
}
|
|
|
|
#buzzerOptions {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
}
|
|
|
|
#message {
|
|
position: absolute;
|
|
font-size: 15px;
|
|
top: 0px;
|
|
left: 20px;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
#userListPanel {
|
|
top: 80px;
|
|
width: 500px;
|
|
margin-left: -250px;
|
|
font-size: 15px;
|
|
}
|
|
#PlayersList {
|
|
left: 0px;
|
|
}
|
|
#ChasersList {
|
|
left: 350px;
|
|
}
|
|
}
|