protocol independent links, favicons
@@ -45,3 +45,4 @@ Get started at https://shtclck.org
|
|||||||
- https://stackoverflow.com/questions/6139225/how-to-detect-a-long-touch-pressure-with-javascript-for-android-and-iphone
|
- https://stackoverflow.com/questions/6139225/how-to-detect-a-long-touch-pressure-with-javascript-for-android-and-iphone
|
||||||
- https://stackoverflow.com/questions/879152/how-do-i-make-javascript-beep
|
- https://stackoverflow.com/questions/879152/how-do-i-make-javascript-beep
|
||||||
- and many more open tabs :)
|
- and many more open tabs :)
|
||||||
|
- RealFaviconGenerator for (you guessed it!) favicons (https://realfavicongenerator.net/)
|
||||||
BIN
android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
9
browserconfig.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#da532c</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
||||||
BIN
favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
11
index.html
@@ -1,7 +1,14 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link href="http://fonts.cdnfonts.com/css/seven-segment" rel="stylesheet">
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||||
<link href="http://fonts.cdnfonts.com/css/profession" rel="stylesheet">
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<meta name="msapplication-TileColor" content="#da532c">
|
||||||
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
|
<link href="//fonts.cdnfonts.com/css/seven-segment" rel="stylesheet">
|
||||||
|
<link href="//fonts.cdnfonts.com/css/profession" rel="stylesheet">
|
||||||
|
|
||||||
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
|
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
|
||||||
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
|
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
|
||||||
|
|||||||
BIN
mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
19
site.webmanifest
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"short_name": "",
|
||||||
|
"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"
|
||||||
|
}
|
||||||