[A] webmanifest

This commit is contained in:
Jan 2020-07-20 13:11:03 +02:00
parent 3a3c02233b
commit fc19305664
3 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,5 @@
/* https://coolors.co/52d1dc-475b5a-8d8e8e-a3a9aa-bbbbbf */
body { body {
margin: 0; margin: 0;
} }

View file

@ -3,6 +3,8 @@
<head> <head>
<title>WebFrame</title> <title>WebFrame</title>
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://dummyimage.com/92x92/52d0dc/475b5a.png&text=+WF">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="stylesheet" type="text/css" href="index.css"> <link rel="stylesheet" type="text/css" href="index.css">
<script src="vue.js"></script> <script src="vue.js"></script>
</head> </head>

View file

@ -0,0 +1,22 @@
{
"short_name": "WebFrame",
"name": "WebFrame - Your personal digital picture frame on the web.",
"description": "With webframe you can turn any device with a screen and browser into a digital picture frame.",
"icons": [
{
"src": "https://dummyimage.com/192x192/52d0dc/475b5a.png&text=+WebFrame",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "https://dummyimage.com/512x512/52d0dc/475b5a.png&text=+WebFrame",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/",
"background_color": "#52D1DC",
"display": "fullscreen",
"scope": "/",
"theme_color": "#52D1DC"
}