blob: 8e9d2f2d155e7a9cbdce725c2ab0fe726bac5dff (
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
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
|
#update {
* {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
&:before, &:after {
box-sizing: inherit;
}
}
html {
width: 100vw;
height: 100vh;
}
body {
background-color: #1fa2ed;
color: #fff;
}
// LET THE LOADING BEGIN
.start-screen {
display: flex;
justify-content: center;
flex-flow: nowrap column;
align-items: center;
min-height: 100vh;
}
.loading {
display: flex;
margin: 24px 0;
}
.loading__element {
font: normal 100 2rem/1 Roboto;
letter-spacing: .5em;
}
[class*="el"] {
animation: bouncing 3s infinite ease;
}
@for $i from 1 through 19 {
$delay: percentage($i);
.el#{$i} {
animation-delay: $delay / 1000% + s;
}
}
@keyframes bouncing {
0%, 100% {
transform: scale3d(1,1,1);
}
50% {
transform: scale3d(0,0,1);
}
}
.current-event {
color: rgba(255, 255, 255, 0.53);
font: normal 100 1rem/1 Roboto;
letter-spacing: .1em;
}
}
|