This commit is contained in:
ntr
2019-10-15 17:53:22 +11:00
parent b386057326
commit 85e13c5922
+3 -8
View File
@@ -73,20 +73,19 @@ svg {
}
.red-blue-border {
animation: rb 3s ease-in-out 0s infinite alternate;
animation: rb 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate;
}
.red-green-border {
animation: rg 3s ease-in-out 0s infinite alternate;
animation: rg 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate;
}
.blue-green-border {
animation: bg 3s ease-in-out 0s infinite alternate;
animation: bg 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate;
}
@keyframes rg {
from {
border-color: @red;
}
to {
border-color: @green;
}
@@ -96,7 +95,6 @@ svg {
from {
border-color: @red;
}
to {
border-color: @blue;
}
@@ -106,7 +104,6 @@ svg {
from {
border-color: @blue;
}
to {
border-color: @green;
}
@@ -122,6 +119,4 @@ button {
&.green {
border-color: @green;
}
}