You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
805 B
CSS
59 lines
805 B
CSS
|
|
:root{
|
|
--color1: rgb(105, 105, 255);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body, html{
|
|
margin: 0;
|
|
padding: 0;
|
|
color: var(--color1);
|
|
}
|
|
|
|
.hemicycle{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: 100vw;
|
|
margin: 0 auto;
|
|
}
|
|
h1{
|
|
font-size: 60px;
|
|
text-align: center;
|
|
}
|
|
|
|
#partyRef,
|
|
#seatRef{
|
|
display: none;
|
|
}
|
|
.party{
|
|
border: solid 1px black;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
width: 20vw;
|
|
}
|
|
|
|
.seat{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: center;
|
|
margin: 4px 1px;
|
|
width: 100px;
|
|
}
|
|
|
|
.seat .mic{
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 10%;
|
|
border: solid 3px var(--color1);
|
|
background-color: white;
|
|
color: currentColor;
|
|
}
|
|
.label{
|
|
width: 80px;
|
|
}
|