Feat: split stats in 2 components caOnPeriod and caRepartition

This commit is contained in:
2021-08-12 06:15:36 +02:00
parent ed90959687
commit 2212ff4afe
6 changed files with 259 additions and 9 deletions

View File

@@ -55,3 +55,29 @@ button:hover {
border-radius: 10px;
background-color: white;
}
.hightlights {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.hightlight > ul{
list-style-type: none;
display: flex;
flex-flow: column wrap;
padding-inline-start: 0;
margin-block-start: 0;
margin-block-end: 0;
}
.hightlight > ul > li {
margin: 5px;
flex-direction: column-reverse;
}
.hightlight > ul :first-child{
font-size: 3rem;
font-weight: bold;
text-align: center;
}
.hightlight > ul :last-child{
text-align: end;
}