You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
32 lines
486 B
32 lines
486 B
/* Copyright © 2023 Entreprise SkamKraft */ |
|
|
|
.languettes input:hover{ |
|
animation: slide-left; |
|
position: relative; |
|
animation-timing-function: ease; |
|
animation-fill-mode: forwards; |
|
animation-duration: 1s; |
|
} |
|
@keyframes slide-left { |
|
0% { |
|
right: 0px; |
|
top: 0px; |
|
} |
|
100% { |
|
right: 25px; |
|
top: 0px; |
|
} |
|
} |
|
|
|
.ext-modal[open] { |
|
animation: myFadeIn 0.5s ease normal; |
|
} |
|
|
|
@keyframes myFadeIn{ |
|
from { |
|
bottom: 100%; |
|
} |
|
to { |
|
bottom: 0%; |
|
} |
|
} |