48 lines
786 B
Plaintext
48 lines
786 B
Plaintext
#root-turn-queue {
|
|
align-self: center;
|
|
width: auto;
|
|
align-items: center;
|
|
}
|
|
|
|
#turn-queue {
|
|
position: relative;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
overflow: hidden;
|
|
align-self: center;
|
|
justify-content: flex-start;
|
|
max-width: 800px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#current-queue {
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
#next-queue {
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
#queue-end {
|
|
height: 100%;
|
|
width: 20px;
|
|
flex-shrink: 0;
|
|
background-color: rgb(0, 0, 0);
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.active-turn {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#waiting {
|
|
font-size: 30px;
|
|
-unity-font-style: bold;
|
|
text-shadow: 0 0 50px rgb(255, 255, 255);
|
|
}
|