les stats sont responsive now

This commit is contained in:
Guillaume Joffre 2022-07-31 12:09:27 +02:00
parent 51815cecd5
commit 6aabc12328
2 changed files with 16 additions and 7 deletions

View file

@ -122,6 +122,9 @@ main {
@media (max-width: 700px) {
.planning-container {
font-size: 2vh;
}
.column {
width: 50%;
}
@ -179,4 +182,8 @@ main {
.column div.day:after {
content: none;
}
.column div.hour:after {
content: "h";
}
}

View file

@ -25,8 +25,6 @@ table.out {
span.box-point {
padding: 0;
margin: 0;
margin-top: 10px;
display: block;
width: 80%;
height: 70px;
@ -34,8 +32,7 @@ span.box-point {
border-radius: 20px;
color: white;
border: 3px solid white;
margin-left: auto;
margin-right: auto;
margin: 10px auto 0;
}
table.in {
@ -56,7 +53,12 @@ table.in .right {
background-color: white;
color: black;
padding: 20px;
margin: 30px;
margin-top: 0;
font-size: 1.5rem;
margin: 0 3.5vw 3.5vw;
font-size: 1.5rem;
}
@media (max-width: 700px) {
table.out {
padding: 0;
}
}