-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapeocalypse.css
59 lines (52 loc) · 1.05 KB
/
shapeocalypse.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
html, body {
width: 100%;
height: 100%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
font-family: Roboto,"Helvetica Neue",Arial,Helvetica,sans-serif;
padding: 0;
margin: 0;
min-height: 715px;
}
#gamecontainer {
width: 100%;
height: 100%;
display: flex;
align-items: center;
align-content: center;
}
game-container {
margin: 0 auto;
height: 715px;
width: 700px;
}
#loading {
display: flex;
flex-direction: column;
justify-content: center;
height: 550px;
}
#loading > .text {
color: white;
}
#loading > .spinner {
margin: 10px auto 10px auto;
height: 28px;
width: 28px;
animation: rotate 1.2s infinite linear;
-webkit-animation: rotate 1.2s infinite linear;
border: 8px solid #4285f4;
border-right-color: transparent;
border-radius: 50%;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@-webkit-keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}