-
Notifications
You must be signed in to change notification settings - Fork 0
/
missions.html
445 lines (430 loc) · 18.4 KB
/
missions.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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="csrf-token"
content="RS0eDTkzJzk9ER1jRBUoNzE_MxUxSCUW7iOEtKEQtEt-uJbdIMGYRerU"
/>
<title data-suffix=" · JOIN">Home · JOIN</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="stylesheet" href="assets/app.css" />
<script
defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"
></script>
</head>
<div>
<body
class="overflow-x-hidden bg-gradient-to-l from-primary via-secondary to-primary"
>
<header x-data="{ navbar: false }" class="px-8 lg:px-14 xl:px-20">
<div
x-show="navbar"
class="fixed inset-0 z-50 lg:hidden"
role="dialog"
aria-modal="true"
>
<div
x-transition:enter="transition-opacity ease-linear duration-300"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="transition-opacity ease-linear duration-300"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
class="hidden z-50 sm:block sm:fixed sm:inset-0 sm:bg-gray-600 sm:bg-opacity-75"
aria-hidden="true"
@click="navbar = false"
></div>
<nav
x-transition:enter="transition ease-out duration-150 sm:ease-in-out sm:duration-300"
x-transition:enter-start="transform opacity-0 scale-110 sm:translate-x-full sm:scale-100 sm:opacity-100"
x-transition:enter-end="transform opacity-100 scale-100 sm:translate-x-0 sm:scale-100 sm:opacity-100"
x-transition:leave="transition ease-in duration-150 sm:ease-in-out sm:duration-300"
x-transition:leave-start="transform opacity-100 scale-100 sm:translate-x-0 sm:scale-100 sm:opacity-100"
x-transition:leave-end="transform opacity-0 scale-110 sm:translate-x-full sm:scale-100 sm:opacity-100"
class="fixed inset-0 z-50 py-6 w-full h-full sm:inset-y-0 sm:right-0 sm:left-auto sm:w-full sm:max-w-sm sm:shadow-lg bg-primary"
aria-label="Global"
>
<div class="flex justify-between items-center px-4 h-16 sm:px-6">
<a href="index.html">
<img class="w-28" src="images/logo.svg" alt="JOIN Logo" />
</a>
<button
@click="navbar = false"
class="inline-flex justify-center items-center p-2 text-white"
>
<span class="sr-only">Close main menu</span>
<svg
class="w-6 h-6"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</div>
<div
class="flex flex-col items-center w-full mx-auto overflow-scroll gap-y-8 my-6 h-[75%]"
>
<a href="index.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Home
</span>
</a>
<a href="schedule.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Schedule
</span>
</a>
<a href="missions.html">
<span
@click="navbar = false"
class="font-bold text-white text-lg text-center hover:text-gray-300"
>
Missions
</span>
</a>
<a href="faqs.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Faqs
</span>
</a>
</div>
<div
class="flex absolute bottom-0 justify-between items-center py-4 px-8 mx-auto w-full bg-primary"
>
<a href="https://cesium.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/cesium.svg"
alt="CeSIUM Logo"
/>
</a>
<a href="https://necc.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/necc.svg"
alt="NECC Logo"
/>
</a>
<a href="https://nefum.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/nefum.svg"
alt="NEFUM Logo"
/>
</a>
</div>
</nav>
</div>
<div class="flex justify-between items-center pt-10 w-full lg:pt-14">
<div class="hidden w-full text-white lg:block">
<div class="flex flex-col lg:flex-row">
<div class="flex flex-row items-center space-x-1">
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="index.html"
>Home</a
>
</span>
<span class="select-none">|</span>
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="schedule.html"
>Schedule</a
>
</span>
<span class="select-none">|</span>
<span class="font-bold inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="missions.html"
>Missions</a
>
</span>
<span class="select-none">|</span>
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="faqs.html"
>Faqs</a
>
</span>
</div>
</div>
</div>
<div class="flex flex-row justify-between w-full lg:flex-row-reverse">
<div class="flex gap-x-4 justify-center items-center sm:gap-x-8">
<a href="https://cesium.di.uminho.pt/">
<img
class="w-16 h-auto text-white md:w-20"
src="images/logos/cesium.svg"
alt="CeSIUM Logo"
/>
</a>
<a href="https://necc.di.uminho.pt/">
<img
class="w-16 h-auto text-white md:w-20"
src="images/logos/necc.svg"
alt="NECC Logo"
/>
</a>
<a href="https://nefum.di.uminho.pt/">
<img
class="w-12 h-auto text-white md:w-16"
src="images/logos/nefum.svg"
alt="NEFUM Logo"
/>
</a>
</div>
<button class="lg:hidden" type="button" @click="navbar = !navbar">
<img
class="w-5 sm:w-6"
src="images/assets/hamburger.svg"
alt="Hamburger menu"
/>
</button>
</div>
</div>
</header>
<main class="px-8 md:px-14 xl:px-20">
<p class="alert alert-info" role="alert"></p>
<p class="alert alert-danger" role="alert"></p>
<div class="mt-20 md:mt-28">
<div
class="relative w-full h-[300px] sm:h-[350px] lg:h-[450px] xl:h-[550px]"
>
<div
class="absolute top-20 -left-40 -rotate-90 md:-left-32 lg:-left-24 lg:top-40"
>
<span class="title"> Missions </span>
</div>
<div
class="mr-10 ml-20 font-extrabold leading-none text-white uppercase md:ml-36 2xl:mx-80 text-[35px] sm:text-[60px] lg:ml-[240px] lg:text-[78px] xl:text-[85px]"
>
Complete missions, gain experience, earn
<span class="underline decoration-4 sm:decoration-8">rewards</span
>.
</div>
</div>
<div class="lg:mx-20 xl:mx-40">
<div
class="flex flex-row-reverse gap-x-4 items-center mt-10 sm:mt-24 xl:mt-10"
>
<div
class="flex justify-center items-center bg-white rounded-full w-[115px] h-[115px] shrink-0 sm:w-[175px] sm:h-[175px]"
>
<div
style="box-shadow: 0px 0px 8px 10px rgb(209, 213, 219)"
class="flex justify-center items-center bg-white rounded-full shrink-0 w-[85px] h-[85px] sm:w-[130px] sm:h-[130px]"
>
<span
class="text-4xl font-bold sm:text-5xl sm:font-extrabold text-secondary"
>
1/4
</span>
</div>
</div>
<div class="w-[400px]">
<div class="text-right text-white">
<p class="text-xl font-bold sm:text-2xl lg:text-3xl">
Complete missions
</p>
<p class="text-xs sm:text-sm lg:text-md">
At the JOIN you will be able to complete missions while
engaging with companies, and going to workshops or talks,
among others.
</p>
</div>
</div>
</div>
<div class="flex gap-x-4 items-center mt-10 sm:mt-24 xl:mt-10">
<div
class="flex z-0 justify-center items-center bg-white rounded-full w-[115px] h-[115px] shrink-0 sm:w-[175px] sm:h-[175px]"
>
<div
style="box-shadow: 0px 0px 8px 10px rgb(209, 213, 219)"
class="flex z-0 justify-center items-center bg-white rounded-full shrink-0 w-[85px] h-[85px] sm:w-[130px] sm:h-[130px]"
>
<div
style="
background: conic-gradient(
rgb(234, 59, 45) 100deg,
rgb(239, 94, 86) 36deg 170deg
);
"
class="flex relative z-0 justify-center items-center w-full h-full rounded-full bg-tertiary"
>
<div
class="flex z-20 justify-center items-center w-2/3 h-2/3 bg-white rounded-full"
>
<span
class="text-4xl font-bold sm:text-5xl sm:font-extrabold text-secondary"
>
2
</span>
</div>
</div>
</div>
</div>
<div class="w-[400px]">
<div class="text-left text-white">
<p class="text-xl font-bold sm:text-2xl lg:text-3xl">
Level up
</p>
<p class="text-xs sm:text-sm lg:text-md">
By completing tasks and missions, you will earn experience
that will level up your account, making it the greatest of
them all.
</p>
</div>
</div>
</div>
<div
class="flex flex-row-reverse gap-x-4 items-center mt-10 sm:mt-24 xl:mt-10"
>
<div
class="flex justify-center items-center bg-white rounded-full w-[115px] h-[115px] shrink-0 sm:w-[175px] sm:h-[175px]"
>
<div
style="box-shadow: 0px 0px 8px 10px rgb(209, 213, 219)"
class="flex justify-center items-center p-4 bg-white rounded-full shrink-0 w-[85px] h-[85px] sm:w-[130px] sm:h-[130px]"
>
<img
class="h-full"
src="images/assets/lock.svg"
alt="Lock Image"
/>
</div>
</div>
<div class="w-[400px]">
<div class="text-right text-white">
<p class="text-xl font-bold sm:text-2xl lg:text-3xl">
Unlock missions and rewards
</p>
<p class="text-xs sm:text-sm lg:text-md">
As you progress through the event, you'll unlock more
difficult missions that give you access to more rewards.
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="relative px-8 pt-32 pb-5 sm:pb-10 md:px-14 xl:px-20">
<img
class="hidden absolute right-0 bottom-0 w-96 lg:block -z-10"
src="images/cords/footer_cords.svg"
alt="footer cord"
/>
<div
class="sm:hidden block absolute bottom-0 left-0 w-full rounded-t-[50px] h-[96px] -z-20 bg-secondary sm:bg-none drop-shadow-[0_35px_35px_rgba(0,0,0,0.75)]"
></div>
<div class="flex flex-row justify-between items-center">
<div class="flex flex-col gap-y-2 px-2 text-center">
<span
class="text-sm font-normal text-white sm:font-bold md:text-lg hover:underline underline-offset-2"
></span>
<div class="hidden flex-row gap-x-12 justify-center sm:flex">
<a href="https://www.instagram.com/join_uminho/">
<svg
class="w-5 h-auto fill-white hover:fill-tertiary"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
width="512"
height="512"
viewBox="0 0 512 512"
>
<path
d="M349.33,69.33a93.62,93.62,0,0,1,93.34,93.34V349.33a93.62,93.62,0,0,1-93.34,93.34H162.67a93.62,93.62,0,0,1-93.34-93.34V162.67a93.62,93.62,0,0,1,93.34-93.34H349.33m0-37.33H162.67C90.8,32,32,90.8,32,162.67V349.33C32,421.2,90.8,480,162.67,480H349.33C421.2,480,480,421.2,480,349.33V162.67C480,90.8,421.2,32,349.33,32Z"
></path>
<path
d="M377.33,162.67a28,28,0,1,1,28-28A27.94,27.94,0,0,1,377.33,162.67Z"
></path>
<path
d="M256,181.33A74.67,74.67,0,1,1,181.33,256,74.75,74.75,0,0,1,256,181.33M256,144A112,112,0,1,0,368,256,112,112,0,0,0,256,144Z"
></path>
</svg>
</a>
<a href="https://www.linkedin.com/company/join-di-uminho/">
<svg
class="w-5 h-auto fill-white hover:fill-tertiary"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
width="512"
height="512"
viewBox="0 0 512 512"
>
<path
d="M444.17,32H70.28C49.85,32,32,46.7,32,66.89V441.61C32,461.91,49.85,480,70.28,480H444.06C464.6,480,480,461.79,480,441.61V66.89C480.12,46.7,464.6,32,444.17,32ZM170.87,405.43H106.69V205.88h64.18ZM141,175.54h-.46c-20.54,0-33.84-15.29-33.84-34.43,0-19.49,13.65-34.42,34.65-34.42s33.85,14.82,34.31,34.42C175.65,160.25,162.35,175.54,141,175.54ZM405.43,405.43H341.25V296.32c0-26.14-9.34-44-32.56-44-17.74,0-28.24,12-32.91,23.69-1.75,4.2-2.22,9.92-2.22,15.76V405.43H209.38V205.88h64.18v27.77c9.34-13.3,23.93-32.44,57.88-32.44,42.13,0,74,27.77,74,87.64Z"
></path>
</svg>
</a>
<a href="https://github.com/joinum/">
<svg
class="w-5 h-auto fill-white hover:fill-tertiary"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
width="512"
height="512"
viewBox="0 0 512 512"
>
<path
d="M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9a17.56,17.56,0,0,0,3.8.4c8.3,0,11.5-6.1,11.5-11.4,0-5.5-.2-19.9-.3-39.1a102.4,102.4,0,0,1-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5-10.2-26.5-24.9-33.6-24.9-33.6-19.5-13.7-.1-14.1,1.4-14.1h.1c22.5,2,34.3,23.8,34.3,23.8,11.2,19.6,26.2,25.1,39.6,25.1a63,63,0,0,0,25.6-6c2-14.8,7.8-24.9,14.2-30.7-49.7-5.8-102-25.5-102-113.5,0-25.1,8.7-45.6,23-61.6-2.3-5.8-10-29.2,2.2-60.8a18.64,18.64,0,0,1,5-.5c8.1,0,26.4,3.1,56.6,24.1a208.21,208.21,0,0,1,112.2,0c30.2-21,48.5-24.1,56.6-24.1a18.64,18.64,0,0,1,5,.5c12.2,31.6,4.5,55,2.2,60.8,14.3,16.1,23,36.6,23,61.6,0,88.2-52.4,107.6-102.3,113.3,8,7.1,15.2,21.1,15.2,42.5,0,30.7-.3,55.5-.3,63,0,5.4,3.1,11.5,11.4,11.5a19.35,19.35,0,0,0,4-.4C415.9,449.2,480,363.1,480,261.7,480,134.9,379.7,32,256,32Z"
></path>
</svg>
</a>
</div>
</div>
<div>
<img class="w-32" src="images/logo.svg" alt="JOIN Logo" />
</div>
<div class="flex items-center px-2">
<span
class="text-sm font-normal text-center text-white sm:font-bold md:text-lg hover:underline underline-offset-2"
>
<a href="docs/regulamento-geral.pdf"> General Regulation </a>
</span>
</div>
</div>
</footer>
</body>
</div>
</html>