58 lines
874 B
CSS
58 lines
874 B
CSS
|
|
.logo {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 7em ;
|
|
padding: 0.2em;
|
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
|
|
margin: 1em;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
.participants {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 200px;
|
|
}
|
|
|
|
/* Barre de progression */
|
|
|
|
.progression {
|
|
animation: 3s loadbar;
|
|
width:auto;
|
|
background-color: white;
|
|
display: inline-block;
|
|
padding: 0.7em 0.5em 0.5em 0.5em;
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
@keyframes loadbar {
|
|
0% { width:0%; }
|
|
}
|
|
|
|
.bar {
|
|
width : 50%;
|
|
margin : auto;
|
|
border : 2px solid white;
|
|
display: inline-block;
|
|
}
|
|
.progression > span {
|
|
|
|
display: inline-block;
|
|
width: 100%;
|
|
font-family: MonTrappist;
|
|
font-size : 1.5em;
|
|
}
|
|
|
|
.lessthanhalf span {
|
|
padding-left: 100%;
|
|
color: white;
|
|
padding-left: calc(100% + 1em);
|
|
}
|
|
|
|
.morethanhalf {
|
|
text-align : end;
|
|
color:black;
|
|
}
|