CARIA.2.2

Update for the final presentation
huge change with previous version
This commit is contained in:
ccunatbrule
2024-09-03 12:17:44 +02:00
parent ebcb596a4f
commit 2ddf2360e6
44 changed files with 7080 additions and 657 deletions

View File

@@ -17,7 +17,7 @@ input {
.counter {
position: relative;
bottom: 98px;
left: 0px;
left: 50px;
font-size: 48px;
text-align: center;
color: blue;
@@ -47,42 +47,6 @@ input {
transition: box-shadow 0.3s;
border-radius: 50px;
}
.button_fct {
margin: 10px 15px 10px 15px;
width: auto;
height: 50px;
transition: box-shadow 0.3s;
border-radius: 50px;
}
/* Button toogle */
.button-container {
display: flex;
flex-direction: column;
align-items: flex-start;
}
input[type="checkbox"] {
margin: 10px 15px 10px 15px;
width: 50px;
height: 30px;
-webkit-appearance: none;
appearance: none;
background-color: #ddd;
border-radius: 25px;
position: relative;
cursor: pointer;
}
input[type="checkbox"]:before {
content: '';
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: white;
top: 50%;
left: 3px;
transform: translateY(-50%);
transition: 0.2s;
}
input[type="checkbox"]:checked:before {
left: calc(100% - 33px);
.form-check-input {
transform: scale(1.5); /* Augmente la taille du bouton */
}