2018-08-30 16:43:18 +02:00
|
|
|
<!DOCTYPE html>
|
2024-03-21 01:39:23 +01:00
|
|
|
<html lang="en" translate="no">
|
2021-09-05 01:09:30 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2018-08-30 17:13:27 +02:00
|
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
2021-09-09 05:47:34 +02:00
|
|
|
<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" />
|
2021-09-05 01:09:30 +02:00
|
|
|
<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" />
|
2021-12-14 01:46:08 +01:00
|
|
|
|
2021-10-01 22:22:33 +02:00
|
|
|
<style>
|
2022-01-09 17:15:09 +01:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2021-10-01 22:22:33 +02:00
|
|
|
body {
|
|
|
|
background-color: black;
|
2021-10-02 04:31:58 +02:00
|
|
|
}
|
|
|
|
* {
|
2021-10-01 22:22:33 +02:00
|
|
|
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
|
|
scrollbar-width: none; /* for Firefox */
|
|
|
|
}
|
2021-10-29 05:04:26 +02:00
|
|
|
.myGlyphMarginClass {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
.myContentClass {
|
|
|
|
background: lightblue;
|
|
|
|
}
|
2021-10-02 04:31:58 +02:00
|
|
|
*::-webkit-scrollbar {
|
2021-10-01 22:22:33 +02:00
|
|
|
display: none; /* for Chrome, Safari, and Opera */
|
|
|
|
}
|
|
|
|
</style>
|
2021-09-05 01:09:30 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-03-21 01:39:23 +01:00
|
|
|
<div id="root" style="display:flex"></div>
|
2021-09-05 01:09:30 +02:00
|
|
|
</body>
|
2018-08-30 16:43:18 +02:00
|
|
|
</html>
|