mirror of https://github.com/astrit/css.gg.git
26 lines
497 B
CSS
26 lines
497 B
CSS
@keyframes loadbar {
|
|
0%,to { left: 0; right: 80% }
|
|
25%,75% { left: 0; right: 0 }
|
|
50% { left: 80%; right: 0 }
|
|
}
|
|
|
|
.gg-loadbar,
|
|
.gg-loadbar::before {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
height: 4px
|
|
}
|
|
|
|
.gg-loadbar {
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 18px
|
|
}
|
|
|
|
.gg-loadbar::before {
|
|
content: "";
|
|
position: absolute;
|
|
border-radius: 4px;
|
|
background: currentColor;
|
|
animation: loadbar 2s cubic-bezier(0,0,.58,1) infinite
|
|
} |