-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (61 loc) · 1.18 KB
/
style.css
File metadata and controls
74 lines (61 loc) · 1.18 KB
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
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100vw;
font-family: 'Ropa Sans', sans-serif;
box-sizing: border-box;
}
.ar-screen{
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
canvas, video {
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
video {
z-index: 1!important;
}
h1, h2 {
padding: 20px;
margin: 0;
color: inherit;
}
footer {
position: absolute;
bottom: 0;
margin-left: 20px;
margin-bottom: 20px;
}
.loader {
position: absolute;
width: 100%;
height: 100%;
top: 0;
z-index: 0;
transform: scale(0, 1);
transform-origin: left;
-webkit-transition: transform .3s cubic-bezier(.23, 1, .32, 1);
transition: transform .3s cubic-bezier(.23, 1, .32, 1);
background: #007adf;
background-image: linear-gradient(to top, #007adf 0%, #00ecbc 100%);
}
.images .imgWrapper{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.imgWrapper img{
height: 80%;
}