-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
411 lines (361 loc) · 16.8 KB
/
index.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>Loopstudios</title>
</head>
<body>
<!-- Hero -->
<section id="hero">
<!-- Hero Container -->
<div class="container max-w-6xl mx-auto px-6 py-12">
<!-- Nav/Logo -->
<nav class="nav flex items-center justify-between font-bold text-white">
<img src="images/logo.svg" alt="" />
<!-- Menu -->
<div class="hidden h-10 font-alata md:flex md:space-x-8">
<div class="group">
<a href="#">About</a>
<div class="mx-2 group-hover:border-b group-hover:border-blue-50"></div>
</div>
<div class="group">
<a href="#">Careers</a>
<div class="mx-2 group-hover:border-b group-hover:border-blue-50"></div>
</div>
<div class="group">
<a href="#">Events</a>
<div class="mx-2 group-hover:border-b group-hover:border-blue-50"></div>
</div>
<div class="group">
<a href="#">Products</a>
<div class="mx-2 group-hover:border-b group-hover:border-blue-50"></div>
</div>
<div class="group">
<a href="#">Support</a>
<div class="mx-2 group-hover:border-b group-hover:border-blue-50"></div>
</div>
</div>
<!-- hambuger -->
<div class="md:hidden">
<button
id="menu-btn"
type="button"
class="z-40 block hamburger md:hidden focus:outline-none"
>
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
</div>
</nav>
<!-- mobile menu -->
<div
id="menu"
class="absolute top-0 bottom-0 left-0 flex-col self-end hidden w-full min-h-screen py-1 pt-40 pl-12 space-y-3 text-lg text-white uppercase bg-black"
>
<a href="#" class="hover:text-pink-500">About</a>
<a href="#" class="hover:text-pink-500">Careers</a>
<a href="#" class="hover:text-pink-500">Events</a>
<a href="#" class="hover:text-pink-500">Products</a>
<a href="#" class="hover:text-pink-500">Support</a>
</div>
<div
class="max-w-lg mt-32 mb-32 p-4 font-sans text-4xl text-white uppercase border-2 md:p-10 md:m-32 md:mx-0 md:text-6xl"
>
Impressive Experiences That Deliver
</div>
</div>
</section>
<!-- Feature -->
<section id="feature">
<!-- Feature container -->
<div
class="relative container flex flex-col max-w-6xl mx-auto my-32 px-6 text-gray-900 md:flex-row md:px-0"
>
<!-- image -->
<img src="images/desktop/image-interactive.jpg" alt="" />
<!-- Text -->
<div class="top-48 pr-0 bg-white md:absolute md:right-0 md:py-20 md:pl-20">
<h2
class="max-w-lg mt-10 mb-6 font-sans text-4xl text-center text-gray-900 uppercase md:text-5xl md:mt-0 md:text-left"
>
The leader in interactive VR
</h2>
<p class="max-w-md text-center md:text-left">
Founded in 2011, Loopstudios has been producing world-class virtual reality
projects for some of the best companies around the globe. Our award-winning
creations have transformed businesses through digital experiences that bind
to their brand.
</p>
</div>
</div>
</section>
<!-- Creations -->
<section id="creations">
<!-- Creations Container -->
<div class="container max-w-6xl mx-auto my-32 px-6 text-gray-900 md:px-0">
<!-- Creations header -->
<div class="flex justify-center mb-20 md:justify-between">
<h2 class="text-4xl text-center uppercase md:text-left md:text-5xl">
Our Creations
</h2>
<button class="hidden btn md:block">See All</button>
</div>
<!-- Items Container 1 -->
<div class="item-container">
<!-- Item 1 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-deep-earth.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-deep-earth.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>Deep Earth</h5>
</div>
<!-- Item 2 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-night-arcade.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-night-arcade.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>Night Arcade</h5>
</div>
<!-- Item 3 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-soccer-team.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-soccer-team.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>Soccer VR</h5>
</div>
<!-- Item 4 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-grid.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img src="images/mobile/image-grid.jpg" alt="" class="w-full md:hidden" />
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>The Grid</h5>
</div>
</div>
<!-- Items Container 2 -->
<div class="item-container mt-10">
<!-- Item 1 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-from-above.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-from-above.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>From Above VR</h5>
</div>
<!-- Item 2 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-pocket-borealis.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-pocket-borealis.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>Pocket Borealis</h5>
</div>
<!-- Item 3 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-curiosity.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-curiosity.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>The Curiosity</h5>
</div>
<!-- Item 4 -->
<div class="group item">
<!-- Desktop -->
<img
src="images/desktop/image-fisheye.jpg"
alt=""
class="hidden w-full duration-200 md:block group-hover:scale-110"
/>
<!-- Mobile -->
<img
src="images/mobile/image-fisheye.jpg"
alt=""
class="w-full md:hidden"
/>
<!-- Item Gradient -->
<div class="item-gradient"></div>
<!-- Item Text -->
<h5>Make It Fisheye</h5>
</div>
</div>
<!-- Bottom Button -->
<div class="flex justify-center mt-10 md:hidden">
<button class="btn w-full md:hidden">See All</button>
</div>
</div>
</section>
<!-- footer -->
<footer class="bg-black">
<div class="container max-w-6xl py-10 mx-auto">
<div
class="flex flex-col items-center mb-8 space-y-6 md:flex-row md:space-y-0 md:justify-between md:items-start"
>
<!-- menu and logo -->
<div class="flex flex-col items-center space-y-8 md:items-start md:space-y-4">
<div class="h-8">
<img src="images/logo.svg" alt="" class="w-44 md:ml-3" />
</div>
<!-- menu container -->
<div
class="flex flex-col items-center space-y-4 font-bold text-white md:flex-row md:space-y-0 md:space-x-6 md:ml-3"
>
<!-- Item 1 -->
<div class="h-10 group">
<a href="#">About</a>
<div
class="mx-2 group-hover:border-b group-hover:border-blue-50"
></div>
</div>
<!-- Item 2 -->
<div class="h-10 group">
<a href="#">Careers</a>
<div
class="mx-2 group-hover:border-b group-hover:border-blue-50"
></div>
</div>
<!-- Item 3 -->
<div class="h-10 group">
<a href="#">Events</a>
<div
class="mx-2 group-hover:border-b group-hover:border-blue-50"
></div>
</div>
<!-- Item 4 -->
<div class="h-10 group">
<a href="#">Products</a>
<div
class="mx-2 group-hover:border-b group-hover:border-blue-50"
></div>
</div>
<!-- Item 5 -->
<div class="h-10 group">
<a href="#">Support</a>
<div
class="mx-2 group-hover:border-b group-hover:border-blue-50"
></div>
</div>
</div>
</div>
<!-- socials and copy -->
<div class="flex flex-col items-start justify-between space-y-4 text-gray-500">
<!-- Icons -->
<div
class="flex items-center justify-center mx-auto md:mx-0 space-x-4 md:justify-end"
>
<!-- Icon 1 -->
<div class="h-8 group">
<a href="#"
><img src="images/icon-facebook.svg" alt="" class="h-6"
/></a>
</div>
<!-- Icon 2 -->
<div class="h-8 group">
<a href="#"
><img src="images/icon-twitter.svg" alt="" class="h-6"
/></a>
</div>
<!-- Icon 3 -->
<div class="h-8 group">
<a href="#"
><img src="images/icon-pinterest.svg" alt="" class="h-6"
/></a>
</div>
<!-- Icon 4 -->
<div class="h-8 group">
<a href="#"
><img src="images/icon-instagram.svg" alt="" class="h-6"
/></a>
</div>
</div>
<!-- Copyright -->
<div class="font-bold">© 2022 Loopstudios. All rights reserved</div>
</div>
</div>
</div>
</footer>
<script src="js/script.js" defer></script>
</body>
</html>