2019-04-02 23:12:45 +00:00
|
|
|
<!doctype html>
|
2019-07-25 12:52:03 +00:00
|
|
|
<html lang="en">
|
2019-04-02 23:12:45 +00:00
|
|
|
<head>
|
2021-11-14 08:01:37 +00:00
|
|
|
<meta charset="utf-8">
|
2019-07-25 12:52:03 +00:00
|
|
|
<title>Antimatter Dimensions</title>
|
|
|
|
<link rel="icon" type="image/png" href="icon.png">
|
2021-11-14 08:01:37 +00:00
|
|
|
<meta name="Antimatter Dimensions" content="A game about huge numbers and watching them go up." >
|
2019-07-25 12:52:03 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
|
2022-03-25 20:19:11 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/fontawesome/css/all.css">
|
2019-07-25 12:52:03 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/codemirror.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/show-hint.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/lint.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/panda-syntax.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/liquibyte.css">
|
2021-12-03 15:58:40 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/vue-sfc-classes.css">
|
2019-07-25 12:52:03 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/ad-slider-component.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/glyphs.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css?3">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/automator.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/time-studies.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/tooltips.css">
|
2019-07-31 21:30:20 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/vis-network.css">
|
2019-04-02 23:12:45 +00:00
|
|
|
</head>
|
2019-07-25 12:52:03 +00:00
|
|
|
|
2019-04-02 23:12:45 +00:00
|
|
|
<body>
|
2022-03-21 01:35:03 +00:00
|
|
|
<div id="browser-warning">
|
2023-02-16 00:03:21 +00:00
|
|
|
Your browser is not supported.
|
2022-03-21 01:35:03 +00:00
|
|
|
<br>
|
|
|
|
Please update to a newer browser.
|
|
|
|
</div>
|
2019-11-20 18:39:49 +00:00
|
|
|
<div id="loading"></div>
|
2019-07-25 12:52:03 +00:00
|
|
|
<div id="ui"></div>
|
|
|
|
<div id="background-animations">
|
2019-08-27 22:03:10 +00:00
|
|
|
<div class="videocontainer videocontainer--background">
|
2019-06-27 20:47:22 +00:00
|
|
|
<video autoplay muted loop id="stars">
|
2021-09-29 03:38:24 +00:00
|
|
|
<source src="images/stars-bg.webm" type="video/webm">
|
2019-06-27 20:47:22 +00:00
|
|
|
</video>
|
2019-07-25 12:52:03 +00:00
|
|
|
</div>
|
2019-11-20 18:51:06 +00:00
|
|
|
<div id="snow" style="display: none;"></div>
|
2019-06-27 20:47:22 +00:00
|
|
|
</div>
|
2019-07-25 12:52:03 +00:00
|
|
|
<div class="videocontainer">
|
2019-11-20 18:51:06 +00:00
|
|
|
<video preload muted id="realityanimbg" style="opacity: 0; display: none;">
|
2019-07-25 12:52:03 +00:00
|
|
|
<source src="images/realityanimbg.webm" type="video/webm">
|
2019-04-02 23:12:45 +00:00
|
|
|
</video>
|
2019-07-25 12:52:03 +00:00
|
|
|
</div>
|
|
|
|
<div id="performance-stats" class="c-performance-stats" style="display: none;"></div>
|
2021-11-14 08:01:37 +00:00
|
|
|
</body>
|
2022-03-21 03:19:58 +00:00
|
|
|
<script>
|
2022-03-24 01:59:00 +00:00
|
|
|
// We use an IE only document variable to check here to force it to show the browser warning.
|
2022-03-24 00:04:36 +00:00
|
|
|
// For some reason, IE really does *not* want to cooperate, even when you have a file as a <script> that you load
|
2023-02-16 00:03:21 +00:00
|
|
|
// in the body.
|
2022-03-24 01:59:00 +00:00
|
|
|
// Other browsers will be checked whenever window.onload is ran.
|
|
|
|
if (document.documentMode) {
|
2022-03-21 03:19:58 +00:00
|
|
|
document.getElementById("loading").style.display = "none";
|
|
|
|
document.getElementById("browser-warning").style.display = "flex";
|
|
|
|
}
|
|
|
|
</script>
|
2019-04-02 23:12:45 +00:00
|
|
|
</html>
|