Capture <IE11

This commit is contained in:
James 2018-12-16 14:27:51 +11:00
parent 08bc615957
commit 7cf0c41a83
2 changed files with 29 additions and 0 deletions

View File

@ -73,3 +73,16 @@ pre {
.has-padding .is-left-floating { .has-padding .is-left-floating {
left: 1rem; left: 1rem;
} }
.fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 9999;
padding: 20px;
background: #fff;
}

View File

@ -14,6 +14,22 @@
<link rel="stylesheet" href="/css/main.css" type="text/css"> <link rel="stylesheet" href="/css/main.css" type="text/css">
</head> </head>
<body class="is-max-height"> <body class="is-max-height">
<div class="fullscreen" id="ie-blackout" style="display: none">
<div class="title">Your computer is out of date.</div>
<div class="subtitle">
Make sure that your computer is up to date, and that you have Internet Explorer 11 installed.
</div>
<div class="subtitle">
Please note we do not support pirated or unsupported versions of Windows.
</div>
</div>
<script type="text/javascript">
if (!document.__proto__) {
document.getElementById("ie-blackout").style.display = "block";
}
</script>
<div id="app" class="is-max-height"> <div id="app" class="is-max-height">
<section class="section is-max-height"> <section class="section is-max-height">
<div class="container is-max-height"> <div class="container is-max-height">