-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
112 lines (97 loc) · 3.01 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<head>
<title>GameDistribution.com</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<style>
html, body {
height: 100%;
}
body {
overflow: hidden;
margin: 0;
padding: 0;
background-color: #fff;
font-size: 1rem;
font-family: 'Segoe UI', 'Segoe WP', Helvetica, Arial, sans-serif;
color: #fff;
line-height: 170%;
}
p {
margin-bottom: 1.5rem;
}
button {
margin: auto;
padding: 10px 22px;
border-radius: 5px;
border: 3px solid white;
background: linear-gradient(0deg, #dddddd, #ffffff);
color: #222;
text-shadow: 0 0 1px #fff;
font-family: 'Segoe UI', 'Segoe WP', Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 18px;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
button:hover {
background: linear-gradient(0deg, #ffffff, #dddddd);
}
button:active {
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
background: linear-gradient(0deg, #ffffff, #f5f5f5);
}
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.wrapper-row {
display: table-row;
}
.container {
position: relative;
display: table-cell;
vertical-align: middle;
overflow: hidden;
width: 100%;
height: 100%;
background-color: #111;
text-align: center;
}
.caption {
display: block;
width: 100%;
white-space: nowrap;
line-height: 1.5rem;
font-size: 0.6rem;
text-align: right;
color: #666;
font-weight: 400;
}
.caption a {
color: #666;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-60359297-40"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-60359297-40', { 'anonymize_ip': true });
</script>
</head>
<body>
<div class="wrapper">
<div class="wrapper-row">
<div id="container" class="container"></div>
</div>
<div class="wrapper-row">
<span id="caption" class="caption">Provided by GameDistribution (<a href="https://static.gamedistribution.com/policy/privacy-enduser.html">privacy policy</a>).</span>
</div>
</div>
<script async type="application/javascript" src="./lib/main.min.js?v=1"></script>
</body>
</html>