1
0
mirror of https://github.com/osmarks/website synced 2025-09-02 18:57:55 +00:00

updated things???

This commit is contained in:
2020-07-01 20:29:42 +01:00
parent 958facc2cf
commit dee9035ffe
14 changed files with 254 additions and 12 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 B

View File

@@ -1,5 +1,6 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg viewBox="0 0 384 384" version="1.1" xmlns="http://www.w3.org/2000/svg">
<rect width="100%" height="100%" style="fill: black; stroke-width: 0;" shape-rendering="crispEdges"></rect>
<rect x="0" y="0" width="128" height="128" shape-rendering="crispEdges" style="fill: none; stroke-width: 0;"></rect>
<rect x="128" y="0" width="128" height="128" shape-rendering="crispEdges" style="fill: white; stroke-width: 0;"></rect>
<rect x="256" y="0" width="128" height="128" shape-rendering="crispEdges" style="fill: none; stroke-width: 0;"></rect>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
assets/images/logo192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 B

BIN
assets/images/logo384.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

BIN
assets/images/logo768.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 B

BIN
assets/images/logo96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

BIN
assets/images/logo96inv.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

View File

@@ -297,4 +297,14 @@ window.points = (() => {
achievementInfo,
setMetric
}
})()
})()
const customStyle = localStorage.getItem("user-stylesheet")
let customStyleEl = null
if (customStyle) {
customStyleEl = document.createElement("style")
customStyleEl.appendChild(document.createTextNode(customStyle))
customStyleEl.onload = () => console.log("Loaded custom styles")
customStyleEl.id = "custom-style"
document.head.appendChild(customStyleEl)
}

View File

@@ -3,19 +3,33 @@
"lang": "en",
"name": "{{{name}}}",
"scope": "/",
"display": "browser",
"display": "minimal-ui",
"start_url": "https://{{domain}}/",
"short_name": "{{domain}}",
"theme_color": "transparent",
"description": "{{siteDescription}}",
"orientation": "any",
"background_color": "transparent",
"related_applications": "",
"prefer_related_applications": "false",
"icons": [
{
"src": "/assets/images/icon.png?reloadyoustupidicon=4",
"src": "/assets/images/logo96.png",
"sizes": "96x96"
},
{
"src": "/assets/images/logo192.png",
"sizes": "192x192"
},
{
"src": "/assets/images/logo384.png",
"sizes": "384x384"
},
{
"src": "/assets/images/logo768.png",
"sizes": "768x768"
},
{
"src": "/assets/images/logo.svg",
"sizes": "512x512"
}
]
}
],
"theme_color": "#000000",
"background_color": "#000000"
}