52 lines
627 B
CSS
52 lines
627 B
CSS
body {
|
|
background-color: aliceblue;
|
|
display: flex;
|
|
}
|
|
|
|
|
|
section#les_queues {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
p.orateurice {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
li.dernier_arrive {
|
|
font-style: italic;
|
|
}
|
|
|
|
.personne {
|
|
color: darkgrey;
|
|
}
|
|
|
|
.active section.queue {
|
|
background-color: lightgreen;
|
|
}
|
|
|
|
.attente section.queue {
|
|
background-color: pink;
|
|
}
|
|
|
|
section.queue {
|
|
border-radius: .5rem;
|
|
margin: .5rem;
|
|
padding: .5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|