Archived
1
0
This commit is contained in:
Jeff Becker
2017-01-28 11:29:57 -05:00
parent baf6e29473
commit 1d20cb3142
5 changed files with 17 additions and 3 deletions

View File

@@ -626,3 +626,14 @@ th > label {
#censor-toggle, a {
color: #34345C;
}
@keyframes ebin {
0% {transform: rotate(-10deg);}
50% {transform: rotate(10deg);}
100% {transform: rotate(-10deg);}
}
.wobble {
animation: ebin 0.25s infinite;
animation-timing-function: linear;
}