authelia/web/src/components/FingerTouchIcon.module.css
Clement Michaud 9ae2096d2a Rewrite authelia frontend to improve user experience.
This refactoring simplify the code of the frontend and prepare the
portal for receiving a user settings page and an admin page.
2019-12-05 11:05:24 +01:00

20 lines
372 B
CSS

.hand {
transform: rotate(20deg);
}
.strong.hand path {
stroke: black;
stroke-width: 10;
}
.shaking {
animation: shaking 1s;
animation-iteration-count:infinite;
}
@keyframes shaking {
0% {transform: translateX(20px) translateY(20px)}
50% {transform: translateX(0px) translateY(0px)}
100% {transform: translateX(20px) translateY(20px)}
}