[feature] Adding favicon and related.
The key file was favicon.ico, but other browsers can support other formats. And those browsers/devices that allow for "pinning" the site require some additional files as well.
BIN
dist/android-chrome-192x192.png
vendored
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
dist/android-chrome-512x512.png
vendored
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
dist/apple-touch-icon.png
vendored
Normal file
After Width: | Height: | Size: 3.3 KiB |
9
dist/browserconfig.xml
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square70x70logo src="dist/mstile-70x70.png"/>
|
||||
<TileColor>#000000</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
dist/favicon-16x16.png
vendored
Normal file
After Width: | Height: | Size: 282 B |
BIN
dist/favicon-32x32.png
vendored
Normal file
After Width: | Height: | Size: 365 B |
BIN
dist/mstile-70x70.png
vendored
Normal file
After Width: | Height: | Size: 903 B |
1
dist/safari-pinned-tab.svg
vendored
Normal file
After Width: | Height: | Size: 8.2 KiB |
19
dist/site.webmanifest
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "Bitburner",
|
||||
"short_name": "Bitburner",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
BIN
favicon.ico
Normal file
After Width: | Height: | Size: 2.7 KiB |
11
index.html
@ -3,6 +3,17 @@
|
||||
<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">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<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">
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/terminal.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/menupages.css" />
|
||||
|