mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
61 lines
1.2 KiB
HTML
61 lines
1.2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
<!--
|
|
body {
|
|
background: #ffdddd;
|
|
}
|
|
.box {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 40%;
|
|
width: 500px;
|
|
height: 300px;
|
|
margin-left: -250px;
|
|
margin-top: -150px;
|
|
|
|
border-width: 3px;
|
|
border-color: black;
|
|
border-style: solid;
|
|
|
|
background: white;
|
|
text-align: center;
|
|
}
|
|
.header {
|
|
font-size: 2em;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px
|
|
|
|
}
|
|
p {
|
|
font-size: 1.2em;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
-->
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="header">Browser not supported</div>
|
|
|
|
<p>Sorry, the web browser you are using is not supported by
|
|
Skybreak. Skybreak uses advanced JavaScript features and can not
|
|
support Internet Explorer version 7 and below.</p>
|
|
|
|
<p>Do yourself a favor download a modern browser,
|
|
like <a href="http://www.mozilla.com/firefox/">Firefox</a>
|
|
or <a href="http://chrome.google.com">Chrome</a>. Your web browsing
|
|
experience will be much better!
|
|
</p>
|
|
|
|
<p>Learn more about reducing Internet Explorer 6 usage at
|
|
the <a href="http://www.ie6countdown.com/">official Microsoft IE6
|
|
countdown page</a></p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|