You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.3 KiB
92 lines
1.3 KiB
@import "colors.css";
|
|
|
|
#main-div {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: var(--background-color);
|
|
|
|
flex-direction: column;
|
|
}
|
|
|
|
#topbar-left {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
#topbar-right {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
#topbar-div {
|
|
display: flex;
|
|
background-color: var(--main-color);
|
|
margin-bottom: 3px;
|
|
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
}
|
|
|
|
#racks {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title-input {
|
|
width: 25ch;
|
|
align-self: center;
|
|
}
|
|
|
|
#edit-div {
|
|
height: 100%;
|
|
}
|
|
|
|
#allies-rack .player-piece,
|
|
#opponent-rack .player-piece {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.player-piece.opponents {
|
|
background-color: #f59264;
|
|
}
|
|
|
|
#court-div {
|
|
background-color: var(--background-color);
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-content: center;
|
|
}
|
|
|
|
#court-div-bounds {
|
|
width: 60%;
|
|
}
|
|
|
|
.react-draggable {
|
|
z-index: 2;
|
|
}
|
|
|
|
.save-state {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 20%;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.save-state-error {
|
|
color: red;
|
|
}
|
|
|
|
.save-state-ok {
|
|
color: green;
|
|
}
|
|
|
|
.save-state-saving,
|
|
.save-state-guest {
|
|
color: gray;
|
|
}
|