diff options
-rw-r--r-- | static/styles.css | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/static/styles.css b/static/styles.css index 8715207..a15f136 100644 --- a/static/styles.css +++ b/static/styles.css @@ -26,20 +26,6 @@ div { padding: 1em; } -@keyframes shake { - 0% { transform: translate(1px, 1px) rotate(0deg); } - 10% { transform: translate(-1px, -2px) rotate(-1deg); } - 20% { transform: translate(-3px, 0px) rotate(1deg); } - 30% { transform: translate(3px, 2px) rotate(0deg); } - 40% { transform: translate(1px, -1px) rotate(1deg); } - 50% { transform: translate(-1px, 2px) rotate(-1deg); } - 60% { transform: translate(-3px, 1px) rotate(0deg); } - 70% { transform: translate(3px, 1px) rotate(-1deg); } - 80% { transform: translate(-1px, -1px) rotate(1deg); } - 90% { transform: translate(1px, 2px) rotate(0deg); } - 100% { transform: translate(1px, -2px) rotate(-1deg); } -} - table#toplinks { width: 100%; td { @@ -52,9 +38,7 @@ table#toplinks { } a:hover { color: darkgreen; - filter: blur(1px); - animation: shake 0.2s; - animation-iteration-count: infinite; + filter: blur(2px); } } } |