-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoentry.html
56 lines (49 loc) · 1.43 KB
/
noentry.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
<!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">
<title>GoCue</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {
background-color: black;
font-family: 'Lato', sans-serif;
margin: 0px;
}
h1 {
font-size: 3vw;
text-align: center;
color: white;
}
h2 {
font-size: 1vw;
text-align: center;
color: white;
}
@media only screen and (max-width: 700px) {
h1 {
font-size: 10vw;
text-align: center;
color: white;
}
h2 {
font-size: 4vw;
text-align: center;
color: white;
}
}
.image_container {
text-align: center;
padding: 4em;
}
</style>
</head>
<body>
<div class="image_container">
<img src="Logo.png" style="width:50vw; text-align: center;">
</div>
<h1>This device does not meet the minimum requirements<br>for GoCue</h1>
<h2>Please try again in landscape mode (if you aren't already),<br> or on a different device with a larger / higher resolution display.</h2>
</body>