-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile.html
112 lines (97 loc) · 3.09 KB
/
mobile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.arcesium.com/wp-content/themes/arcesium/assets/fav/favicon-32x32.png">
<title>Arcquizitive - GIDS 2024 Challenge</title>
<style>
html, body {
height: 100vh;
margin: 0;
padding: 0;
color: white;
font-family: Arial, sans-serif;
text-align: center;
font-size: 2.5vh;
}
.bg {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.l1 {
background-image: url('./assets/background.png');
}
@media (width <= 850px) {
.l2 {
background-image: url('./assets/elements-90.png');
}
}
@media (width > 850px) {
.l2 {
background-image: url('./assets/elements.png');
}
}
.l2 {
width: 100vw;
}
h1 {
color: #fff084;
font-size: 3.6vh;
font-weight: 400;
}
h2 {
font-weight: lighter;
font-size: 3vh;
}
ul {
font-weight: lighter;
list-style-type: none;
margin: 0;
padding: 0;
}
li {
font-size: 2.6vh;
margin: 1.5vh 0;
}
img {
margin-bottom: 10vh;
height: 6vh;
}
a {
color: unset;
text-decoration: unset;
}
a:hover {
color: rgba(255, 255, 255, 0.5);
}
</style>
</head>
<body>
<div class="bg l1">
<div class="bg l2">
<div class="logo">
<img src="assets/arcesium.png" alt="Arecesium" />
</div>
<h1>Welcome to Arcquizitive,<br>the ultimate 4-day cerebral showdown!</h1>
<h2>Solve the daily quiz to stand<br>a chance to win Apple Airpods Pro!</h2>
<div>
<ul>
<li><a href="" onclick="alert('We too can\'t wait, but this quiz is yet to start!');">Quiz day 1</a></li>
<li><a href="" onclick="alert('We too can\'t wait, but this quiz is yet to start!');">Quiz day 2</a></li>
<li><a href="" onclick="alert('We too can\'t wait, but this quiz is yet to start!');">Quiz day 3</a></li>
<li><a href="" onclick="alert('We too can\'t wait, but this quiz is yet to start!');">Quiz day 4</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>