46 lines
559 B
CSS
46 lines
559 B
CSS
body {
|
|
background-color: aliceblue;
|
|
}
|
|
|
|
p.prochain {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.personne {
|
|
color: darkgrey;
|
|
}
|
|
|
|
.courante {
|
|
background-color: lightgreen;
|
|
}
|
|
|
|
.attente {
|
|
background-color: pink;
|
|
}
|
|
|
|
section.queue {
|
|
border-radius: .5rem;
|
|
margin: .5rem;
|
|
padding: .5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.courante li:first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.finisseur {
|
|
margin-top: auto;
|
|
}
|
|
|
|
section#queues {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|