mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9ae2096d2a
This refactoring simplify the code of the frontend and prepare the portal for receiving a user settings page and an admin page.
20 lines
372 B
CSS
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)}
|
|
} |