-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathno-embed.html
59 lines (59 loc) · 2.01 KB
/
no-embed.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ugwisha activation ceremony</title>
<meta charset="UTF-8">
<meta name="description" content="Ugwisha has subconsciously detected that you are using a degenerate form of Ugwisha and would like to require you to experience its true form."/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#ff5959">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Ugwisha">
<link rel="apple-touch-icon" href="./images/logo/ios.png">
<link rel="icon" href="./images/logo/192.png">
<link rel="manifest" href="./manifest.json">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<style media="screen">
html, body {
width: 100%;
height: 100%;
}
body {
margin: 0;
font-family: 'Roboto Condensed', sans-serif;
font-size: 0;
color: rgba(255, 255, 255, 0.9);
word-wrap: break-word;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-image: radial-gradient(circle at 50% 50%, #ff5959, black);
background-size: contain;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
::selection {
background-color: rgba(0, 188, 212, 0.4);
}
.logo {
width: 100px;
margin-bottom: 14px;
opacity: 0.9;
}
.text {
font-size: 24px;
}
</style>
<script type="text/javascript">
document.addEventListener('click', e => {
top.location.replace('./');
});
</script>
</head>
<body>
<img src="./images/logo/transparent.svg" alt="Ugwisha" class="logo">
<span class="text">Click or tap to launch Ugwisha</span>
</body>
</html>