-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunsupported.html
executable file
·90 lines (75 loc) · 2.65 KB
/
unsupported.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- standard viewport tag to set the viewport to the device's width
, Android 2.3 devices need this so 100% width works properly and
doesn't allow children to blow up the viewport width-->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
<!-- width=device-width causes the iPhone 5 to letterbox the app, so
we want to exclude it for iPhone 5 to allow full screen apps -->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
<!-- provide the splash screens for iPhone 5 and previous -->
<link href="assets/splashs/splash_1096.png" rel="apple-touch-startup-image" media="(device-height: 568px)">
<link href="assets/splashs/splash_iphone_2x.png" rel="apple-touch-startup-image" sizes="640x960" media="(device-height: 480px)">
<link rel="icon" type="image/png" href="favicon.ico">
<title>Zeega</title>
<style>
html {
background: black;
font-family: "Helvetica", sans-serif;
color: white;
}
body {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
padding: 0;
margin: 0;
background: url(assets/img/unsupported.gif) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
header {
font-size: 3em;
}
.content {
position: absolute;
z-index: 1;
text-shadow: 0 3px 5px black;
padding:20px;
}
.bg-overlay {
width: 100%;
height: 100%;
background: black;
opacity: 0.5;
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
a:link,
a:hover,
a:visited,
a:active {
color: white;
}
</style>
</head>
<body>
<div class="content">
<header>This Zeega is not available for mobile :(</header>
<div class="">
<a href="mailto:your@email.com?subject=Check out this Zeega!&body=http://www.zeega.com/12345">email and view on a computer?</a>
</div>
</div>
<div class="bg-overlay"></div>
</body>
</html>