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.
104 lines
1.5 KiB
104 lines
1.5 KiB
|
|
.lobby-container {
|
|
display: flex;
|
|
background-color: #fff;
|
|
min-height: 100vh;
|
|
font-size: calc(10px + 2vmin);
|
|
/* color: #2A4541; */
|
|
}
|
|
|
|
.left-section {
|
|
padding: 20px;
|
|
margin-right: 10px;
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
.lobby-vertical-divider{
|
|
width: 10px;
|
|
/* background-color: #2A4541; */
|
|
}
|
|
|
|
.right-section {
|
|
padding: 20px;
|
|
margin: 10px;
|
|
}
|
|
|
|
|
|
.player-board{
|
|
height: 100%;
|
|
width: 800px;
|
|
background-color: rgb(243, 241, 235);
|
|
border-radius: 20px;
|
|
|
|
padding: 20px 0px;
|
|
margin: 10px 15px;
|
|
}
|
|
|
|
.title-param-div{
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 20px;
|
|
}
|
|
|
|
|
|
.NumbDiv{
|
|
display: flex;
|
|
align-items: start;
|
|
justify-content: start;
|
|
margin: auto 20px;
|
|
}
|
|
.codeDiv{
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: end;
|
|
margin: auto 20px;
|
|
}
|
|
|
|
.codeDiv p, .NumbDiv p{
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
color: gray;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.centerButton {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.lobbyR{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.lobbyR *{
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
.valuebutton{
|
|
border-radius: 90px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.nbNodeDiv{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
border: solid 2px whitesmoke;
|
|
border-radius: 15px;
|
|
|
|
background-color: white;
|
|
|
|
width: 70%;
|
|
}
|
|
|
|
.nbNodeDiv div {
|
|
display: flex;
|
|
justify-content: center;
|
|
} |