63 lines
792 B
SCSS
63 lines
792 B
SCSS
@import '../../../styles';
|
|
|
|
#add-game {
|
|
padding-top: $header_height;
|
|
display: grid;
|
|
grid-template-areas: 'entry entry scores';
|
|
}
|
|
|
|
#game-infos {
|
|
grid-area: entry;
|
|
}
|
|
|
|
#scores {
|
|
grid-area: scores;
|
|
}
|
|
|
|
#which-players div {
|
|
padding: 0.3em;
|
|
}
|
|
|
|
#which-players div:hover {
|
|
color: $text;
|
|
}
|
|
|
|
.active-true, .elder-player-true {
|
|
color: $active;
|
|
}
|
|
|
|
.active-false, .elder-player-false {
|
|
color: $inactive;
|
|
}
|
|
|
|
#player-amount-warn, #announcement-warn, #team-warn, #score-warn {
|
|
color: $warn;
|
|
}
|
|
|
|
.visible-false {
|
|
display: none;
|
|
}
|
|
|
|
.visible-true {
|
|
display: inherit;
|
|
}
|
|
|
|
.togglebtn {
|
|
text-align: center;
|
|
max-width: 10em;
|
|
background-color: $button;
|
|
margin: .5em;
|
|
}
|
|
|
|
.team-Re {
|
|
background-color: $secondary;
|
|
}
|
|
|
|
.team-Contra {
|
|
background-color: $primary;
|
|
}
|
|
|
|
table.point-entry td {
|
|
padding: .5em;
|
|
}
|