File size: 799 Bytes
da96562
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.matomo-loader {
  width: 16px;
  height: 11px;
  display: inline-block;
  position: relative;

  span {
    background: #f0f0f0;
    position: absolute;
    top: 2px;
    animation: matomo-loader 1s infinite ease-in-out;
    width: 2px;
    height: 5px;
    display: inline-block;
    border: 1px solid #f5f5f5;
    box-sizing: content-box;

    &:nth-child(1) {
      left: 0;
      display: inline-block;
    }

    &:nth-child(2) {
      left: 6px;
      display: inline-block;
      animation-delay: 0.15s;
    }

    &:nth-child(3) {
      left: 12px;
      animation-delay: 0.35s;
      display: inline-block;
    }
  }
}

@keyframes matomo-loader {
  0%, 75%, 100% {
    top: 2px;
    height: 5px;
  }
  25% {
    top: 0;
    height: 9px;
    border-color: #bbb;
    background: #ccc;
  }
}