exclude duplicate line

This commit is contained in:
Felipe da Silva
2018-03-01 11:51:19 -03:00
parent 7f96966dfb
commit ea9875a17f

View File

@ -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);
}
}
</style>