lobby/lobbyboard.razor.scss
LobbyBoard {
.board {
flex-direction: column;
justify-content: flex-start;
background-color: rgba(0, 0, 0, 0.7);
color: white;
font-family: Poppins;
padding: 24px;
width: 100%;
height: 100%;
}
.title {
font-size: 180px;
font-weight: 800;
margin-bottom: 32px;
width: 100%;
justify-content: center;
}
.grid {
flex-direction: column;
width: 100%;
}
.cell {
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 20px 32px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
width: 100%;
margin-bottom: 20px;
overflow: hidden;
.name {
font-size: 96px;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.dot {
width: 80px;
height: 80px;
border-radius: 40px;
background-color: red;
&.ready {
background-color: #2ecc71;
}
&.notready {
background-color: #e74c3c;
}
}
}
.launch-number {
font-size: 1200px;
font-weight: 900;
color: #2ecc71;
width: 100%;
flex-grow: 1;
justify-content: center;
align-items: center;
}
}