Add icons

This commit is contained in:
Michael Pivato
2024-03-03 13:01:46 +10:30
parent 10edeed307
commit 8c03b4d31c
12 changed files with 63 additions and 3 deletions

3
.gitattributes vendored Normal file
View File

@@ -0,0 +1,3 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.ico filter=lfs diff=lfs merge=lfs -text
*.svg filter=lfs diff=lfs merge=lfs -text

BIN
android-chrome-192x192.png LFS Normal file

Binary file not shown.

BIN
android-chrome-256x256.png LFS Normal file

Binary file not shown.

BIN
apple-touch-icon.png LFS Normal file

Binary file not shown.

9
browserconfig.xml Normal file
View 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 LFS Normal file

Binary file not shown.

BIN
favicon-32x32.png LFS Normal file

Binary file not shown.

BIN
favicon.ico LFS Normal file

Binary file not shown.

View File

@@ -4,6 +4,13 @@
<title>Michael Pivato</title> <title>Michael Pivato</title>
<link rel="stylesheet" href="node_modules/@picocss/pico/css/pico.min.css" /> <link rel="stylesheet" href="node_modules/@picocss/pico/css/pico.min.css" />
<link rel="stylesheet" href="site.css" /> <link rel="stylesheet" href="site.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<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" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head> </head>
<body> <body>
<main class="container"> <main class="container">
@@ -266,9 +273,7 @@
</p> </p>
</section> </section>
<footer class="container"> <footer class="container">
<small <small>Michael Pivato • 2024</small>
>Michael Pivato • 2024</small
>
</footer> </footer>
</div> </div>
</main> </main>

BIN
mstile-150x150.png LFS Normal file

Binary file not shown.

BIN
safari-pinned-tab.svg LFS Normal file

Binary file not shown.

19
site.webmanifest Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}