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.
Application-Web/front/style/editor.css

59 lines
845 B

@import "colors.css";
#main-div {
display: flex;
height: 100%;
width: 100%;
background-color: var(--background-color);
flex-direction: column;
}
#topbar-div {
display: flex;
background-color: var(--main-color);
justify-content: space-between;
align-items: stretch;
}
#racks {
display: flex;
justify-content: space-between;
}
.title_input {
width: 25ch;
}
#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;
}