From ea9875a17f693dd784ddbdc16ea76c1ef0857527 Mon Sep 17 00:00:00 2001 From: Felipe da Silva Date: Thu, 1 Mar 2018 11:51:19 -0300 Subject: [PATCH] exclude duplicate line --- Animated-loading-animation.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Animated-loading-animation.md b/Animated-loading-animation.md index 11ae0e316..3b3e14bf4 100644 --- a/Animated-loading-animation.md +++ b/Animated-loading-animation.md @@ -76,24 +76,21 @@ Clean & simple animated loading animation with CSS3. If you are worried about su background: black; border-radius: 50px; animation: loader 0.9s infinite alternate; - animation: loader 0.9s infinite alternate; } .snippet-demo__Animated-loading-animation span:nth-of-type(2) { animation-delay: 0.3s; - animation-delay: 0.3s; } .snippet-demo__Animated-loading-animation span:nth-of-type(3) { animation-delay: 0.6s; - animation-delay: 0.6s; } @keyframes loader { 0% { opacity: 0.9; - -webkit-transform: translateY(0); + transform: translateY(0); } 100% { opacity: 0.1; - -webkit-transform: translateY(-21px); + transform: translateY(-21px); } }