mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 15:43:49 +01:00
45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" translate="no">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><%= htmlWebpackPlugin.options.title %></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" />
|
|
|
|
<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>
|
|
</head>
|
|
<body>
|
|
<div id="root" style="display:flex"></div>
|
|
</body>
|
|
</html>
|