Various UI improvements

This commit is contained in:
Samuel Kent
2022-12-28 14:20:19 +11:00
parent 221414aff4
commit fa1874aae4
9 changed files with 110 additions and 30 deletions
+41 -2
View File
@@ -15,8 +15,31 @@ a, a:visited {
#userListPanel {
position: absolute;
right: 100px;
top: 100px;
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 {
@@ -35,3 +58,19 @@ a, a:visited {
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;
}
}