aboutsummaryrefslogtreecommitdiffstats
path: root/styles/main/_splash.scss
blob: d1dc441a94632c7b9b8d2c4cf15b20681e86a8fd (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: 72px;
    color: #555;
  }

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

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