|
|
|
@ -14,6 +14,8 @@ body {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*Bouton*/
|
|
|
|
|
|
|
|
|
|
.btn{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
@ -75,6 +77,8 @@ body {
|
|
|
|
|
animation-fill-mode: backwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Model */
|
|
|
|
|
|
|
|
|
|
.model {
|
|
|
|
|
width: 450px;
|
|
|
|
|
background: rgba(255,255,255, .5);
|
|
|
|
@ -162,10 +166,65 @@ body {
|
|
|
|
|
opacity: .4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-card-form .checkbox{
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 7px;
|
|
|
|
|
/*CheckBox*/
|
|
|
|
|
|
|
|
|
|
.check {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: auto;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
.check:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -20px;
|
|
|
|
|
left: -15px;
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: rgba(34,50,84,0.03);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
.check svg {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
fill: none;
|
|
|
|
|
stroke-linecap: round;
|
|
|
|
|
stroke-linejoin: round;
|
|
|
|
|
stroke: #c8ccd4;
|
|
|
|
|
stroke-width: 1.5;
|
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
.check svg path {
|
|
|
|
|
stroke-dasharray: 60;
|
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
|
}
|
|
|
|
|
.check svg polyline {
|
|
|
|
|
stroke-dasharray: 22;
|
|
|
|
|
stroke-dashoffset: 66;
|
|
|
|
|
}
|
|
|
|
|
.check:hover:before {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
.check:hover svg {
|
|
|
|
|
stroke: #4285f4;
|
|
|
|
|
}
|
|
|
|
|
#cbx:checked + .check svg {
|
|
|
|
|
stroke: #4285f4;
|
|
|
|
|
}
|
|
|
|
|
#cbx:checked + .check svg path {
|
|
|
|
|
stroke-dashoffset: 60;
|
|
|
|
|
transition: all 0.3s linear;
|
|
|
|
|
}
|
|
|
|
|
#cbx:checked + .check svg polyline {
|
|
|
|
|
stroke-dashoffset: 42;
|
|
|
|
|
transition: all 0.2s linear;
|
|
|
|
|
transition-delay: 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-card-form .form-item-other {
|
|
|
|
@ -219,6 +278,8 @@ body {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Les réseaux social **/
|
|
|
|
|
|
|
|
|
|
.social {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|