-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (53 loc) · 960 Bytes
/
styles.css
File metadata and controls
54 lines (53 loc) · 960 Bytes
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
html,
body {
box-sizing: border-box;
margin: 0;
height: 100%;
background: white;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
}
.image-container {
display: flex;
height: 100%;
max-width: 100%;
position: relative;
-webkit-perspective: 1500px;
perspective: 1500px;
transform-style: preserve-3d;
transform: translate3d(0, 0, 0);
}
.canvas {
width: auto;
max-height: 100%;
max-width: 100%;
display: block;
margin: auto;
}
.loading-screen {
position: absolute;
width: 100%;
height: 100%;
background: white;
top: 0;
left: 0;
bottom: 0;
right: 0;
visibility: visible;
opacity: 1;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 40px;
transition: 0.25s ease all 0.75s;
color: #999;
transform: translateZ(50px);
}
.loading-screen.hidden {
visibility: hidden;
opacity: 0;
}