mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
78 lines
2.7 KiB
HTML
78 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Bitburner</title>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="dist/apple-touch-icon.png"/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="dist/favicon-32x32.png"/>
|
|
<link rel="icon" type="image/png" sizes="16x16" href="dist/favicon-16x16.png"/>
|
|
<link rel="manifest" href="dist/site.webmanifest"/>
|
|
<link rel="mask-icon" href="dist/safari-pinned-tab.svg" color="#000000"/>
|
|
<meta name="apple-mobile-web-app-title" content="Bitburner"/>
|
|
<meta name="application-name" content="Bitburner"/>
|
|
<meta name="msapplication-TileColor" content="#000000"/>
|
|
<meta name="msapplication-config" content="dist/browserconfig.xml"/>
|
|
<meta name="theme-color" content="#ffffff"/>
|
|
<!-- MONACO JS -->
|
|
<link rel="stylesheet" data-name="vs/editor/editor.main" href="dist/ext/monaco-editor/min/vs/editor/editor.main.css"/>
|
|
|
|
<script>
|
|
var require = { paths: { vs: "dist/ext/monaco-editor/min/vs", "monaco-vim": "dist/ext/monaco-vim" } };
|
|
</script>
|
|
|
|
<script src="dist/ext/monaco-editor/min/vs/loader.js"></script>
|
|
<script src="dist/ext/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
|
|
<script src="dist/ext/monaco-editor/min/vs/editor/editor.main.js"></script>
|
|
<script src="dist/ext/monaco-vim.js"></script>
|
|
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function (i, s, o, g, r, a, m) {
|
|
i["GoogleAnalyticsObject"] = r;
|
|
(i[r] =
|
|
i[r] ||
|
|
function () {
|
|
(i[r].q = i[r].q || []).push(arguments);
|
|
}),
|
|
(i[r].l = 1 * new Date());
|
|
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
|
a.async = 1;
|
|
a.src = g;
|
|
m.parentNode.insertBefore(a, m);
|
|
})(window, document, "script", "https://www.google-analytics.com/analytics.js", "ga");
|
|
</script>
|
|
|
|
<script>
|
|
ga("create", "UA-100157497-1", "auto");
|
|
ga("send", "pageview");
|
|
</script>
|
|
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
background-color: black;
|
|
}
|
|
* {
|
|
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
scrollbar-width: none; /* for Firefox */
|
|
}
|
|
.myGlyphMarginClass {
|
|
background: red;
|
|
}
|
|
.myContentClass {
|
|
background: lightblue;
|
|
}
|
|
*::-webkit-scrollbar {
|
|
display: none; /* for Chrome, Safari, and Opera */
|
|
}
|
|
</style>
|
|
<link rel="shortcut icon" href="favicon.ico"></head>
|
|
<body>
|
|
<div id="root"/>
|
|
<script type="text/javascript" src="dist/vendor.bundle.js"></script><script type="text/javascript" src="dist/main.bundle.js"></script></body>
|
|
</html>
|