aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/mainmenu/LoadingScreen.razor.scss
blob: 026bafa53fb095081d6fa62f65d1bd81d8d2d0d7 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.loadingpanel {
  background-image: url("menu/boxes.webm");
  background-position: center;
  background-size: cover;
  background-tint: #555;
  width: 100%;
  height: 100%;
  color: white;
  padding: 100px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: Poppins;
  pointer-events: all;
  color: #ccc;

  > .title {
    font-size: 80px;
    font-weight: bolder;
  }

  > .subtitle {
    font-size: 30px;
    color: #aaa;
    font-weight: 200;
  }

  > .controls {
    position: absolute;
    bottom: 100px;
    right: 200px;

    .button {
      font-size: 20px;
      padding: 10px 50px;
      background-color: #666;
      color: #111;
      font-weight: bold;
      cursor: pointer;

      &:hover {
        background-color: #888;
      }
    }
  }

  > .progress {
    margin: 50px 0px;
    background-color: #0003;
    width: 500px;
    border-radius: 5px;
    overflow: hidden;

    .bar {
      background-color: #fff1;
      position: absolute;
      height: 100%;
    }

    .text-left {
      flex-grow: 1;
      flex-shrink: 0;
    }

    .text-right {
      flex-shrink: 0;
    }

    .text-left, .text-right {
      padding: 5px 20px;
      white-space: nowrap;
      font-weight: bold;
      opacity: 0.2;
      font-size: 20px;
      align-items: flex-end;

      .unit {
        font-size: 15px;
        opacity: 0.5;
      }
    }
  }
}

choosemappage.navigator-body {
  margin: 0;
  padding: 0;
}