kikikoz/kikikoz.css

77 lines
988 B
CSS

body {
margin: 0;
}
details.aide[open] {
columns: 2;
background-color: rgba(255, 255, 255, 0.5);
border-radius: .5rem;
}
details.aide > summary {
font-weight: 1000;
}
details.configuration[open] {
background-color: rgba(0, 0, 0, 0.2);
padding: 1ex;
border-radius: .5rem;
}
body > div {
background-color: aliceblue;
display: flex;
min-height: 100vh;
padding: 8px;
}
section#les_queues {
display: flex;
}
#les_queues > div {
flex-grow: 1;
}
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;
}