-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
63 lines (57 loc) · 980 Bytes
/
main.css
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
.logo {
padding: 8px;
width: 95%;
height: auto;
max-width: 600px;
vertical-align: middle;
}
.loading-and-error {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.error-text {
color: white;
font-family: 'Open Sans', sans-serif;
font-size: 28px;
padding: 4px;
}
html, body {
width: 100%;
margin: 0px;
height: 100%;
/* background: #000000; */
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 200px
}
.ball {
width: 22px;
height: 22px;
border-radius: 11px;
margin: 0 10px;
animation: 2s bounce ease infinite;
}
.blue {
background-color: #4285F5;
}
.red {
background-color: #EA4436;
animation-delay: .25s;
}
.yellow {
background-color: #FBBD06;
animation-delay: .5s;
}
.green {
background-color: #34A952;
animation-delay: .75s;
}
@keyframes bounce {
50% {
transform: translateY(25px);
}
}