summaryrefslogtreecommitdiff
path: root/client/simple/src/less/toolkit_loader.less
blob: 3163b63897ce59d1f30c949310379f4d9f3b4774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: AGPL-3.0-or-later

.loader,
.loader::after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.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;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}