-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp_fallback.html
58 lines (55 loc) · 1.11 KB
/
app_fallback.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="minimum-scale=1.0, width=device-width" name="viewport">
<title>It works!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,700">
<style>
body {
background: #0e141a;
font-family: 'Open Sans', sans-serif;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 90%;
}
h1 {
font-size: 40px;
font-weight: 700;
color: #00d46a;
margin: 0;
}
h2 {
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
margin: 0;
font-size: 16px;
}
.logo {
position: absolute;
bottom: 20px;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (min-width: 680px) {
h1 {
font-size: 72px;
}
h2 {
font-size: 24px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Shopify Application Fallback Rendered</h1>
</div>
<img class="logo" src="https://cloud.githubusercontent.com/assets/398893/16279177/af9b3622-386e-11e6-920e-3a3f33169831.png" width="150" alt="WeDeploy">
</body>
</html>