Make TachiAZ page more like AZ (#220)

This commit is contained in:
az4521 2020-05-27 19:02:08 -04:00 committed by GitHub
parent 3f8138c9c5
commit 9204c0cc18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,9 @@ sidebar: false
width: fit-content;
animation: wiggleAnim 1s ease-out infinite;
}
.textWiggle:hover {
animation: doABarrelRoll .6s;
}
.bigText {
font-family: "Comic Sans MS", "Comic Sans", cursive;
font-size: 2em;
@ -46,6 +49,10 @@ sidebar: false
0% {transform: translate(0, 0);}
100% {transform: translate(-100%, 0);}
}
@keyframes doABarrelRoll {
from {transform:rotate(0deg)}
to {transform:rotate(360deg)}
}
@keyframes wiggleAnim {
0% {transform: rotate(0deg)}
25% {transform: rotate(-15deg)}