-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOutdatedBrowser.aspx
More file actions
97 lines (84 loc) · 3.53 KB
/
OutdatedBrowser.aspx
File metadata and controls
97 lines (84 loc) · 3.53 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OutdatedBrowser.aspx.cs" Inherits="OutdatedBrowser" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
lang="en"
xml: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" />
<meta name="language"
content="en" />
<title>Cube Crawler: You are using an outdated browser</title>
<link rel="shortcut icon"
href="/images/cube-crawler-supervisor-images/favicon.ico" />
<link rel="stylesheet"
href="/css/cube-crawler-supervisor-css/cube-crawler-supervisor.css" />
<style>
html, body {
width: 100%;
height: 100%;
background: #ffffff;
background-image: url(/images/background.png);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
background-size:cover;
padding: 0px;
margin: 0px;
}
#bad_browser {
position: absolute;
left: 50%;
top: 50%;
text-align: center;
width: 530px;
margin: -200px 0px 0px -250px;
line-height: 180%;
}
#content {
padding: 20px;
font-size: 16px;
}
#content div {
margin: 10px 0 16px 0;
}
#content #browsers {
width: 480px;
height: 136px;
margin: 15px auto 0px;
}
#browsers a {
float: left;
width: 120px;
padding: 106px 0px 13px 0;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
#browsers a:hover {
text-decoration: none;
background-color: #E0F2F1 !important;
}
</style>
</head>
<body>
<div id="bad_browser" class="shadow-z-1">
<div id="head"></div>
<div id="wrap">
<div id="content">
JavaScript and Cookies need to be supported in order to use the site.
<div>
To be able to use all of the site's functions, download and install one of the following browsers:
<div id="browsers" style="width: 360px;">
<a href="http://www.google.com/chrome/"
target="_blank" style="background: url(/images/cube-crawler-supervisor-images/browser/chrome.png) no-repeat 50% 17px;">Chrome</a>
<a href="http://www.opera.com/" target="_blank" style="background: url(/images/cube-crawler-supervisor-images/browser/opera.png) no-repeat 50% 15px;">Opera</a>
<a href="http://www.mozilla-europe.org/" target="_blank" style="background: url(/images/cube-crawler-supervisor-images/browser/firefox.png) no-repeat 50% 17px;">Firefox</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>