kikikoz/kikikoz.css

109 lines
1.3 KiB
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 {
padding: 1ex;
}
details.configuration[open] {
background-color: rgba(0, 0, 0, 0.2);
border-radius: .5rem;
}
details.configuration > summary {
width: 100%;
text-align: right;
}
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;
}
p.orateurice button{
margin: auto;
display: block;
margin-top: 10px;
}
li.dernier_arrive {
font-style: italic;
}
.personne {
color: darkgrey;
}
.active section.queue {
background-color: lightgreen;
}
.active section.queue h3::before {
content: ">>> " ;
font-style: italic;
}
.active section.queue h3 {
font-style: italic;
}
.attente section.queue {
background-color: pink;
}
section.queue {
border-radius: .5rem;
margin: .5rem;
padding: .5rem;
display: flex;
flex-direction: column;
}
.hidden {
display: none;
}
#bouton_next {
font-size: 1.5rem;
font-weight: bold;
}