added PWA support
This commit is contained in:
parent
67cbc3ceae
commit
d7a37beff1
|
|
@ -5,7 +5,7 @@
|
||||||
{
|
{
|
||||||
"type": "pwa-msedge",
|
"type": "pwa-msedge",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Edge against localhost",
|
"name": "Launch Web-App",
|
||||||
"url": "file:///${workspaceFolder}/index.html",
|
"url": "file:///${workspaceFolder}/index.html",
|
||||||
"webRoot": "${workspaceFolder}"
|
"webRoot": "${workspaceFolder}"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@
|
||||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||||
<link rel="icon" type="image/x-icon" href="MORBLOX.ico">
|
<link rel="icon" type="image/x-icon" href="MORBLOX.ico">
|
||||||
<link rel="stylesheet" href="main.css">
|
<link rel="stylesheet" href="main.css">
|
||||||
|
<link rel="manifest" href="manifest.json">
|
||||||
<script type="text/javascript" src="index.js"></script>
|
<script type="text/javascript" src="index.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
2
main.css
2
main.css
|
|
@ -138,7 +138,7 @@ html {
|
||||||
font-family: "Helvetica";
|
font-family: "Helvetica";
|
||||||
src: url('Helvetica.ttf') format('truetype'),;
|
src: url('Helvetica.ttf') format('truetype'),;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
background-color: rgb(49, 107, 223);
|
background-color: #316bdf;
|
||||||
color: white;
|
color: white;
|
||||||
animation-name: animatedbackground;
|
animation-name: animatedbackground;
|
||||||
animation-duration: 50s;
|
animation-duration: 50s;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "MORBLOX",
|
||||||
|
"lang": "en-US",
|
||||||
|
"start_url": "index.html",
|
||||||
|
"display": "standalone",
|
||||||
|
"version": "1.0.0"
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue