Skip to content
Snippets Groups Projects
Verified Commit 67d6c3e0 authored by Jonas Röger's avatar Jonas Röger
Browse files

Changed css loading bar

parent d3aaecf3
No related tags found
1 merge request!20Changed css loading bar
Pipeline #1948 passed with warnings
......@@ -345,18 +345,19 @@ h3 {
.loadingbar {
margin-top: 1px;
margin-bottom: 1px;
height: 1px;
height: 2px;
width: 100%;
background-color: #14b967;
animation-name: left-right;
animation-name: left-to-right;
animation-duration: 1s;
animation-direction: alternate;
animation-direction: normal;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes left-right {
/* Use with animation-direction alternate */
@keyframes left-to-right-and-back {
from {
float: left;
width: 5%;
......@@ -370,6 +371,21 @@ h3 {
}
}
/* Use with animation-direction normal */
@keyframes left-to-right {
from {
float: left;
width: 0%;
}
50% {
width: 100%;
}
to {
float: right;
width: 0%;
}
}
.big-link {
margin-top: auto;
margin-bottom: auto;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment