File size: 1,571 Bytes
d039b4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html, body {
	height: 100%;
	width: 100%;
	font-family: Open Sans, sans-serif;
	font-size: 13px;
}

body {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}

h1, h3 {
	display: block;
}

img {
	width: 100vw;
	height: 100vh;
	display: block;
	object-fit: cover;
}

.cleanPreview {
	position: absolute;
	width: 100vw;
	height: 100vh;
	display: block;
	z-index: 2;
	top: 0;
	left: 0;
	pointer-events: none;
}
.cleanPreview.active {
	z-index: 3;
}

a {
	z-index: 0;
	display: block;
	position: relative;
}

a.disabled {
	cursor: default;
}

.viewerVersionNote {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	padding: 0 20px;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 2;
	color: #555;
	text-align: center;
}

.viewerVersionNote span {
	margin: auto;
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	padding: 10px 15px;
	border-radius: 3px;
}

.viewerVersionNote.active {
	opacity: 1;
	visibility: visible;
}

svg.ar {
	position: fixed;
	z-index: 10;
	top: 20px;
	right: 20px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

img.ar {
	position: fixed;
	z-index: 10;
	top: 20px;
	right: 20px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	width: 74px;
	height: 74px;
}

img.ar.active {
	opacity: 1;
	visibility: visible;
}

img.vectaryLogo {
	position: fixed;
	z-index: 9;
	bottom: 20px;
	left: 20px;
	opacity: 0.8;
	width: 113px;
	height: auto;
}