-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.html
60 lines (54 loc) · 1.2 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="dist/style.css">
<script src="dist/outdated-browser-rework.js"></script>
<script>
// Since this is a demo page, we disable support for all browsers
outdatedBrowserRework({
fullscreen: false,
browserSupport: {
'Edge': false,
'Chrome': false,
'Safari': false,
'Mobile Safari': false,
'Firefox': false,
'Opera': false,
'IE': false,
}
})
</script>
<style type="text/css">
/* Ugly 90s CSS */
p {
font-family: "Open Sans", "Segoe UI", sans-serif;
font-size: 24pt;
}
div.content-wrapper {
display: table;
width: 100%;
}
div.content {
display: table-cell;
vertical-align: middle;
height: 600px;
text-align: center;
}
div.content p {
display: inline-block;
text-align: center;
width: 500px;
}
</style>
</head>
<body>
<!-- Ugly 90s HTML -->
<div class="content-wrapper">
<div class="content">
<p>This page is a demonstration, showing what a user with an outdated browser will experience.
<br>
<b>All browsers in this demo are marked as not supported</b>, so you'll see it even with new browsers!</p>
</div>
</div>
<div id="outdated"></div>
</body>
</html>