67 lines
826 B
CSS
67 lines
826 B
CSS
body {
|
|
background-color: aliceblue;
|
|
display: flex;
|
|
}
|
|
|
|
p.orateurice {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
li.dernier_arrive {
|
|
font-style: italic;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
aside#configuration {
|
|
max-width: 30%;
|
|
background-color: lightgrey;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
height: 100%;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|