bitburner-src/src/index.html

45 lines
1.4 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2021-09-05 01:09:30 +02:00
<head>
<meta charset="utf-8" />
<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>
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>
2022-08-23 08:37:53 +02:00
<div id="root" style="display:flex" />
2021-09-05 01:09:30 +02:00
</body>
</html>