Files
searxng/client/simple/src/less/toolkit_loader.less
T

32 lines
645 B
Plaintext
Raw Normal View History

// SPDX-License-Identifier: AGPL-3.0-or-later
2018-08-09 16:13:50 +02:00
.loader,
.loader::after {
border-radius: 50%;
width: 10em;
height: 10em;
2018-08-09 16:13:50 +02:00
}
2018-08-09 16:13:50 +02:00
.loader {
margin: 60px auto;
font-size: 10px;
position: relative;
text-indent: -9999em;
border-top: 1.1em solid var(--color-loading-indicator);
border-right: 1.1em solid var(--color-loading-indicator);
border-bottom: 1.1em solid var(--color-loading-indicator);
border-left: 1.1em solid var(--color-loading-indicator-gap);
transform: translateZ(0);
animation: load8 1.1s infinite linear;
2018-08-09 16:13:50 +02:00
}
2018-08-09 16:13:50 +02:00
@keyframes load8 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}