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.
31 lines
448 B
31 lines
448 B
#main {
|
|
height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#topbar {
|
|
display: flex;
|
|
background-color: var(--main-color);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin-top: 0;
|
|
}
|
|
|
|
#court-container {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: var(--main-color);
|
|
}
|
|
|
|
#court {
|
|
max-width: 80%;
|
|
max-height: 80%;
|
|
}
|