gcloud, crude killing players functionality

This commit is contained in:
Alec
2021-12-07 01:49:16 -05:00
parent 2debf7be35
commit bad4e3dfc4
12 changed files with 187 additions and 74 deletions

View File

@@ -314,7 +314,6 @@ label[for='moderator'] {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
}
@@ -326,7 +325,7 @@ label[for='moderator'] {
margin-bottom: 1em;
}
.moderator-player {
.game-player {
border-left: 2px solid gray;
display: flex;
color: #d7d7d7;
@@ -335,9 +334,10 @@ label[for='moderator'] {
padding: 0 5px;
justify-content: space-between;
margin: 0.5em 0;
position: relative;
}
.moderator-player-name {
.game-player-name {
width: 10em;
overflow: hidden;
white-space: nowrap;
@@ -360,6 +360,21 @@ label[for='moderator'] {
min-width: 6em;
}
.killed::after {
content: '\01F480';
position: absolute;
right: -44px;
font-size: 24px;
}
.killed {
filter: grayscale(1);
opacity: 0.6;
pointer-events: none;
}
}
.make-mod-button {
background-color: #3f5256;
font-size: 18px;
@@ -378,7 +393,7 @@ label[for='moderator'] {
background-color: #3f5256;
}
#player-list-moderator > div {
#game-player-list > div {
padding: 2px 10px;
border-radius: 3px;
margin-bottom: 1em;