1
0
James Ketrenos b094229675 Fix #85 -- SelectPlayer right margin to 30rem
Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
2022-03-08 12:07:13 -08:00

402 lines
6.2 KiB
CSS
Executable File

.Table {
display: flex;
position: absolute;
align-self: stretch;
width: 100%;
height: 100vh;
min-height: 100%;
justify-content: space-between; /* left-justify 'board', right-justify 'game' */
background-image: url("./assets/tabletop.png");
}
.Loading {
position: absolute;
top: 1em;
right: 31em;
width: 3em !important;
height: 3em !important;
z-index: 10010;
}
.NoNetwork {
position: absolute;
z-index: 10000;
display: flex;
top: 1em;
right: 31em;
width: 3em;
height: 3em;
background-image: url("./assets/no-network.png");
background-size: contain;
background-position: center;
}
.Roberta .Pip-Shape:hover,
.Roberta .Pip-Shape {
background-image:url("./assets/woman-robber.png");
}
.BottomBar {
display: flex;
position: absolute;
bottom: 0;
left: 0;
right: 30rem;
justify-items: space-between;
justify-content: space-between;
align-items: flex-end;
height: 10.5rem;
}
.GameOrder {
display: flex;
position: absolute;
left: 0;
right: 30vw;
bottom: 0;
top: 0;
justify-content: center;
align-items: center;
z-index: 1000;
max-height: 100vh;
overflow: auto;
}
.GameOrder .Title {
align-self: center;
padding: 2px;
font-weight: bold;
}
.GameOrder .PlayerList {
padding: 0.5em;
background-color:rgba(224, 224, 224);
margin: 0.5em 0;
}
.GameOrder > * {
min-width: 20em;
display: inline-flex;
padding: 0.5em;
flex-direction: column;
}
.GameOrder .PlayerColor {
width: 1em;
height: 1em;
}
.GameOrder .GameOrderPlayer {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
padding: 2px 0;
}
.GameOrderPlayer > * {
margin: 0 0.25em;
}
.SelectPlayer {
display: flex;
position: absolute;
left: 0;
right: 30rem;
bottom: 0;
top: 0;
justify-content: center;
align-items: center;
background: rgba(0,0,0,0.5);
z-index: 1000;
}
.SelectPlayer .Title {
align-self: center;
padding: 2px;
font-weight: bold;
}
.SelectPlayer .SelectPlayerList {
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 0.5em;
background-color:rgba(224, 224, 224);
margin: 0.5em 0;
}
.SelectPlayer > * {
width: 20em;
display: inline-flex;
padding: 0.5em;
flex-direction: column;
}
.SelectPlayer .PlayerColor {
width: 1em;
height: 1em;
}
.SelectPlayer .SelectPlayerItem {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
padding: 2px 0;
cursor: pointer;
}
.SelectPlayer > * {
margin: 0 0.25em;
}
.Display {
display: inline-block;
position: absolute;
}
.Table .Cards {
display: inline-block;
position: absolute;
text-align: right;
vertical-align: bottom;
padding: 0.5em;
box-sizing: border-box;
max-height: 100%;
max-width: 100%;
}
.Stack {
position: relative;
display: flex;
}
.Stack:not(:first-child) {
margin-left: -3.5em;
transition: margin-left 1s ease-in-out 0.25s;
}
.Stack > * {
transition: margin-left 1s ease-in-out 0.25s, margin-right 1s ease-in-out 0.25s;
}
.Stack > *:not(:first-child) {
margin-left: -4em;
}
.Hand {
display: flex;
min-height: calc(7.2em + 0.5em);
justify-items: space-between;
justify-content: space-between;
}
.Placard:hover {
filter: brightness(105%);
}
.Development:hover {
filter: brightness(150%);
}
.Development.Selected {
filter: brightness(150%);
top: -1em;
}
.Game {
display: flex;
position: absolute;
flex-direction: column;
box-sizing: border-box;
max-height: 100vh;
overflow: hidden;
max-width: 30rem;
z-index: 100;
padding: 0.5em;
right: 0;
}
.Game > * {
/* for Firefox */
min-height: 0;
}
.Game > *:not(:last-child) {
margin-bottom: 0.5em;
}
.Game.lobby {
}
/*
* Game
* Message
* Players
* Chat
* Action
*/
.Players {
flex: 1 0;
overflow: hidden;
padding: 0.5em;
user-select: none;
}
.PlayerSelector .PlayerColor {
width: 1em;
height: 1em;
}
.PlayerSelector {
display: inline-flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
}
.PlayerSelector.MuiList-padding {
padding: 0;
}
.PlayerSelector .PlayerEntry {
flex: 1 1 0px;
align-items: center;
display: inline-flex;
flex-direction: row;
min-width: 10em;
}
.PlayerSelector .MuiTypography-body1 {
font-size: 0.8rem;
/* white-space: nowrap;*/
}
.PlayerSelector .MuiTypography-body2 {
font-size: 0.7rem;
white-space: nowrap;
}
.Players .PlayerEntry {
border: 1px solid rgba(0,0,0,0);
border-radius: 0.5em;
min-width: 10em;
}
.Players .PlayerEntry[data-selectable=true]:hover {
border-color: rgba(0,0,0,0.5);
cursor: pointer;
}
.Players .PlayerEntry[data-selected=true] {
background-color: rgba(255, 255, 0, 0.5);
}
.Players .PlayerToggle {
min-width: 5em;
display: inline-flex;
align-items: flex-end;
flex-direction: column;
}
.PlayerName {
padding: 0.5em;
}
.Players > * {
width: 100%;
}
.Players .nameInput {
flex-grow: 1;
}
.Development {
position: relative;
display: inline-block;
width: 4.9em;
height: 7.2em;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: 0.25em;
cursor: pointer;
}
.Action {
display: flex;
flex-wrap: wrap;
flex: 1 0;
align-items: center;
justify-content: space-evenly;
background-color: rgba(16, 16, 16, 0.25);
padding: 0.25em;
}
button {
margin: 0.25em;
background-color: white;
border: 1px solid black !important;
}
.Error {
display: flex;
position: absolute;
top: calc(50vh - 1.5em);
left: calc(0vw + 1em);
right: calc(30vw + 2em);
align-items: center;
justify-content: center;
background-color: yellow;
padding: 1em;
z-index: 10000;
}
.Message {
display: inline-block;
flex: 1 0;
justify-content: left;
text-align: left;
/* font-size: 12pt;*/
padding: 0.5em;
user-select: none;
}
.Message .PlayerColor {
width: 1em;
height: 1em;
}
.Message div {
display: inline-flex;
}
.PlayerName {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
.PlayerName > .nameInput {
margin-right: 1em;
flex: 1;
max-width: 30em;
}
.PlayerName > Button {
background: lightblue;
}
.Statistics > div:nth-child(2) {
display: flex;
flex-direction: row;
border: 1px solid black;
}
.Statistics div:nth-child(2) div {
padding: 0.25em 0.5em;
}