-
Notifications
You must be signed in to change notification settings - Fork 28
/
landing.html
207 lines (183 loc) · 7.58 KB
/
landing.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>ARENA Users</title>
<link href="static/vendor/mdb/mdb.min.css" rel="stylesheet" type="text/css" />
<link href="static/vendor/fontawesome-5/css/all.min.css" rel="stylesheet" type="text/css" />
<link href="static/images/conix-x.png" rel="icon" type="image/png" />
<link href="https://fonts.gstatic.com" rel="preconnect" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab&display=swap" rel="stylesheet" />
<style>
body,
html {
height: 100%;
font-family: 'Roboto', sans-serif;
}
.top-logo {
max-height: 100px;
}
.intro-text {
font-family: 'Roboto Slab', serif;
font-size: 1.4rem;
}
.font-weight-boldest {
font-weight: 900;
}
.btn-xred {
color: #fff;
background-color: #a42629;
font-size: 1em;
}
.btn-xred.focus,
.btn-xred:focus,
.btn-xred:hover {
color: #fff;
background-color: #8d2013;
}
.btn-check:active + .btn-xred,
.btn-check:checked + .btn-xred,
.btn-xred.active,
.btn-xred:active,
.show > .btn-xred.dropdown-toggle {
color: #fff;
background-color: #521819;
}
.btn-check:active + .btn-xred:focus,
.btn-check:checked + .btn-xred:focus,
.btn-xred.active:focus,
.btn-xred:active:focus,
.show > .btn-xred.dropdown-toggle:focus {
-webkit-box-shadow:
0 4px 10px 0 rgba(0, 0, 0, 0.2),
0 4px 20px 0 rgba(0, 0, 0, 0.1);
box-shadow:
0 4px 10px 0 rgba(0, 0, 0, 0.2),
0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.btn-xred.disabled,
.btn-xred:disabled {
color: #fff;
background-color: #a42629;
}
.btn-outline-xred {
color: #a42629;
border-color: #a42629;
font-size: 1em;
font-weight: 900;
}
.btn-outline-xred:hover {
color: #a42629;
background-color: rgba(0, 0, 0, 0.02);
}
.btn-outline-xred.active,
.btn-outline-xred.dropdown-toggle.show,
.btn-outline-xred.focus,
.btn-outline-xred:active,
.btn-outline-xred:focus {
color: #a42629;
background-color: transparent;
}
.btn-outline-xred.active:focus,
.btn-outline-xred.dropdown-toggle.show:focus,
.btn-outline-xred:active:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-outline-xred.disabled,
.btn-outline-xred:disabled {
color: #a42629;
}
.social-icon {
max-height: 48px;
}
img.scene-thumb {
transition: transform 0.25s ease;
}
@media (min-width: 1200px) {
img.scene-thumb:hover {
transform: scale(1.75);
}
.thumb-container:nth-child(4n + 2) img.scene-thumb:hover {
transform: translateX(30%) scale(1.75);
}
.thumb-container:nth-child(4n + 1) img.scene-thumb:hover {
transform: translateX(-30%) scale(1.75);
}
}
@media (min-width: 768px) and (max-width: 1199px) {
img.scene-thumb:hover {
transform: scale(1.5);
}
.thumb-container:nth-child(3n + 2) img.scene-thumb:hover {
transform: translateX(25%) scale(1.5);
}
.thumb-container:nth-child(3n + 1) img.scene-thumb:hover {
transform: translateX(-25%) scale(1.5);
}
}
@media (min-width: 576px) and (max-width: 767.98px) {
.thumb-container:nth-child(even) img.scene-thumb:hover {
transform: translateX(25%) scale(1.5);
}
.thumb-container:nth-child(odd) img.scene-thumb:hover {
transform: translateX(-25%) scale(1.5);
}
}
</style>
</head>
<body>
<div class="min-vh-100 routePage" id="landing">
<div class="container-xxl">
<div class="row pt-3 d-flex justify-content-between align-items-center">
<div class="col-lg-4">
<img alt="CONIX Logo" class="top-logo" src="static/images/xr-logo-v8.png" />
</div>
<div class="col-lg-4 text-end">
<a class="btn btn-xred" href="/user">Login</a>
</div>
</div>
<div class="row mt-3">
<div class="col col-lg-8 offset-lg-2 col-12">
<div class="intro-text">
The ARENA (Augmented Reality Edge Networking Architecture) is a platform for supporting
real-time mixed reality interaction between multiple users and the physical world.
</div>
</div>
</div>
<div class="row my-4">
<div class="col-lg-10 offset-lg-1 col-12 px-0 py-5 text-center">
<h3 class="mb-5">ARENA has been installed.</h3>
<h4>
To customize this page, modify the <code>landing.html</code> file in the arena-web
directory.
</h4>
</div>
</div>
<div class="row my-5">
<div class="col col-lg-8 offset-lg-2 col-12 d-flex">
<div class="flex-grow-1 text-center d-flex justify-content-around">
<a
href="https://www.youtube.com/playlist?list=PL_AQ_N7xzl5qA-5ezYJg80Br_jdbdathD"
target="_blank"
>
<img alt="youtube icon" class="social-icon" src="static/images/youtube-icon.png" />
</a>
<a href="https://github.com/arenaxr" target="_blank">
<img alt="github icon" class="social-icon" src="static/images/github-icon.png" />
</a>
</div>
<div class="flex-grow-1 text-center">
<a class="btn btn-outline-xred btn-lg" href="https://docs.arenaxr.org/">Learn More</a>
</div>
<div class="flex-grow-1 text-center">
<a class="btn btn-xred btn-lg font-weight-boldest" href="/user">Try Arena</a>
</div>
</div>
</div>
</div>
</div>
<script src="static/vendor/mdb/mdb.min.js" type="text/javascript"></script>
</body>
</html>