Remove vendor prefixes

This commit is contained in:
2017-02-05 11:47:42 +08:00
parent 1d9f510bb4
commit fc3d2cb20d
+7 -7
View File
@@ -1,6 +1,6 @@
@keyframes pulse {
from {
opacity: 0.2;
opacity: 0.1;
}
to {
opacity: 0.6;
@@ -24,13 +24,13 @@
#path-comet {
fill: lightblue;
opacity: 0.6;
opacity: 0.1;
-moz-animation-name: pulse;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: ease-in-out;
-moz-animation-direction: alternate;
-moz-animation-duration: 1s;
animation-name: pulse;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-direction: alternate;
animation-duration: 1s;
}
}
}