mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
Add icons
This commit is contained in:
parent
633581ea0c
commit
57e324e202
9 changed files with 33 additions and 0 deletions
BIN
apple-touch-icon.png
Normal file
BIN
apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 475 B |
9
browserconfig.xml
Normal file
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>#555555</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
icons/android-chrome-192x192.png
Normal file
BIN
icons/android-chrome-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 475 B |
BIN
icons/android-chrome-512x512.png
Normal file
BIN
icons/android-chrome-512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 475 B |
BIN
icons/favicon-16x16.png
Normal file
BIN
icons/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 239 B |
BIN
icons/favicon-32x32.png
Normal file
BIN
icons/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 312 B |
18
icons/manifest.json
Normal file
18
icons/manifest.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#555555",
|
||||
"background_color": "#555555",
|
||||
"display": "standalone"
|
||||
}
|
1
icons/safari-pinned-tab.svg
Normal file
1
icons/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20.263 3.12l.617.617-3.268 3.255.91.91c.335.335.335.884 0 1.218l-.856.857c.748 1.354 1.19 2.92 1.19 4.594 0 5.21-4.218 9.43-9.427 9.43C4.22 24 0 19.78 0 14.57c0-5.208 4.22-9.427 9.43-9.427 1.673 0 3.24.442 4.593 1.19l.857-.856c.334-.334.883-.334 1.217 0l.91.91zm.108-.75c-.08.08-.188.135-.294.135-.12 0-.228-.054-.31-.134L18.55 1.167c-.16-.174-.16-.443 0-.617.173-.16.442-.16.616 0l1.205 1.218c.175.16.175.443 0 .603zm3.08 3.08c-.093.08-.2.12-.307.12-.107 0-.214-.04-.31-.12L21.63 4.233c-.174-.16-.174-.443 0-.603.16-.175.442-.175.603 0l1.218 1.204c.162.174.162.443 0 .617zM24 3c0 .24-.19.43-.43.43h-1.284c-.24 0-.43-.19-.43-.43s.19-.43.43-.43h1.285c.24 0 .43.19.43.43zM21.43.43v1.284c0 .24-.19.43-.43.43s-.43-.19-.43-.43V.43c0-.24.19-.43.43-.43s.43.19.43.43zm2.02.736L22.233 2.37c-.08.08-.19.134-.295.134-.12 0-.228-.053-.31-.133-.172-.16-.172-.44 0-.602l1.207-1.22c.174-.16.443-.16.617 0 .16.175.16.443 0 .618z"/></svg>
|
After Width: | Height: | Size: 1,015 B |
|
@ -9,6 +9,11 @@
|
|||
<meta name="description" content="{{ site.description }}">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src {{ site.url }} 'unsafe-inline' data:">
|
||||
<link rel="canonical" href="{{ site.url }}/">
|
||||
<link rel="icon" type="image/png" href="/icons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/icons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/icons/manifest.json">
|
||||
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#555555">
|
||||
<meta name="theme-color" content="#555555">
|
||||
<style type="text/css">
|
||||
{% capture style %}
|
||||
{% include _css/fonts.css %}
|
||||
|
|
Loading…
Reference in a new issue