aboutsummaryrefslogtreecommitdiffstats
path: root/styles/main/_splash.scss
blob: 82347d050b72ac0523fc52335f2557dd720485de (plain) (blame)
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
.loader,
.connection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;

  @keyframes rotating {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  svg {
    font-size: 64px;
    color: #555;
  }

  p {
    padding-top: 1em;
    color: #555;
    font-weight: 600;
  }
}

.loader {
  svg {
    animation: rotating 1s linear infinite;
  }
}