werewolves/style/big-screen.scss

49 lines
778 B
SCSS
Raw Permalink Normal View History

2026-02-20 00:28:14 +00:00
.big-screen-wrapper {
margin: 0;
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
user-select: none;
2026-02-20 22:37:31 +00:00
font-size: 3em;
.target-picker {
font-size: 1.25em;
.target {
flex-grow: 1;
}
}
2026-02-20 00:28:14 +00:00
.role-reveal {
width: 100%;
height: 100%;
2026-02-20 22:37:31 +00:00
// font-size: 2em;
2026-02-20 00:28:14 +00:00
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 0.5ch;
align-items: stretch;
.player {
flex-grow: 1;
height: auto;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
background-color: color.change($red1, $alpha: 0.1);
border: 1px solid color.change($red1, $alpha: 0.6);
&.ready {
background-color: color.change($blue1, $alpha: 0.3);
border: 1px solid $blue1;
}
}
}
}