-
Notifications
You must be signed in to change notification settings - Fork 4
/
beta.php
74 lines (72 loc) · 3.02 KB
/
beta.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SWViewer | Beta</title>
<meta name="application-name" content="SWViewer">
<meta name="author" content="Iluvatar, Ajbura, 1997kB">
<meta name="description" content="App for viewing queue of edits on small wikis for SWMT">
<meta name="keywords" content="SWMT">
<meta name="msapplication-TileColor" content="#808d9f">
<!-- icons -->
<link rel="icon" type="image/png" sizes="32x32" href="img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicons/favicon-16x16.png">
<link rel="mask-icon" href="img/favicons/safari-pinned-tab.svg" color="#5bbad5">
<!-- Add iOS meta tags and icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#191919">
<meta name="apple-mobile-web-app-title" content="SWViewer">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicons/apple-touch-icon.png">
<!-- PWA -->
<style>
*, *::before, *::after {
box-sizing: border-box;
}
a { color: rgb(93, 193, 251); }
body {
margin: 0;
padding: 16px 16px 0;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
background-color: rgb(53, 53, 53);
background-image: url(https://source.unsplash.com/1600x900?nature);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
html, body {
width: 100%;
height: 100%;
}
.dark-card {
padding: 8px 16px;
background-color: #0000009c;
backdrop-filter: blur(2px);
border-radius: 8px;
}
.flex-wrap {
max-width: 450px;
margin: auto;
height: auto;
padding: 48px 16px;
text-align: center;
}
.emoji { font-size: 90px; }
.msg { opacity: .6; }
</style>
</head>
<body>
<div class="flex-wrap dark-card">
<span class="emoji">↛</span>
<h1>Beta not available</h1>
<span class="msg">Beta version is not available right now. For more information you can join our <a href='https://discord.gg/UTScYTR' rel='noopener noreferrer' target='_blank'>discord server</a> or <a href='http://ircredirect.toolforge.org/?server=irc.freenode.net&channel=swviewer&consent=yes' rel='noopener noreferrer' target='_blank'>IRC channel</a>.</span>
</div>
<span class="dark-card" style="border-radius: 8px 8px 0 0;">Image source: <a href='https://source.unsplash.com/' rel='noopener noreferrer' target='_blank'>Unsplash</a></span>
</body>
</html>