Skip to content

Commit

Permalink
Added manifest for standalone web app. Updated SCSS, fixed HTML markup.
Browse files Browse the repository at this point in the history
  • Loading branch information
keaukraine committed Jan 28, 2019
1 parent 3143a00 commit f0f01fc
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 23 deletions.
17 changes: 9 additions & 8 deletions index.html
Expand Up @@ -22,15 +22,16 @@

<meta name="mobile-web-app-capable" content="yes">
<link rel="manifest" href="/manifest.json">
</head>

<style>
body, html {
margin: 0;
padding: 0;
background: #000;
}
</style>
<style>
body,
html {
margin: 0;
padding: 0;
background: #000;
}
</style>
</head>

<body>
<canvas id="canvasGL" class="canvasGL hidden">
Expand Down
28 changes: 15 additions & 13 deletions manifest.json
@@ -1,14 +1,16 @@
{
"short_name": "Buddha LWP Web Demo",
"name": "Buddha LWP Web Demo",
"icons": [
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"start_url": "/index.html",
"display": "fullscreen",
"orientation": "portrait"
}
"short_name": "3D Buddha WebGL Demo",
"name": "Buddha Live Wallpaper Web Demo",
"icons": [
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"start_url": "/index.html",
"display": "fullscreen",
"orientation": "portrait",
"background_color": "#111111",
"theme_color": "#111111"
}
2 changes: 1 addition & 1 deletion styles/css/site.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion styles/css/site.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f0f01fc

Please sign in to comment.