-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "Dream Bean", | ||
"short_name": "Dream Bean", | ||
"description": "", | ||
"start_url": "index.html", | ||
"display": "fullscreen", | ||
"orientation": "landscape", | ||
"background_color": "#ffffff", | ||
"icons": [ | ||
{ | ||
"src": "icons/icon-16.png", | ||
"sizes": "16x16", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-32.png", | ||
"sizes": "32x32", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-64.png", | ||
"sizes": "64x64", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-128.png", | ||
"sizes": "128x128", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-256.png", | ||
"sizes": "256x256", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Dream Bean</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | ||
|
||
<link rel="manifest" href="appmanifest.json"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<link rel="apple-touch-icon" sizes="128x128" href="icons/icon-128.png"> | ||
<link rel="apple-touch-icon" sizes="256x256" href="icons/icon-256.png"> | ||
<link rel="apple-touch-icon" sizes="512x512" href="icons/icon-512.png"> | ||
<link rel="icon" type="image/png" href="icons/icon-512.png"> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
|
||
</head> | ||
<body> | ||
<div id="fb-root"></div> | ||
|
||
<noscript> | ||
<div id="notSupportedWrap"> | ||
<h2 id="notSupportedTitle">This content requires JavaScript</h2> | ||
<p id="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p> | ||
</div> | ||
</noscript> | ||
<script src="scripts/supportCheck.js"></script> | ||
<script src="scripts/offlineClient.js"></script> | ||
<script src="scripts/main.js"></script> | ||
<script src="scripts/register-sw.js"></script> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":1556823629583,"fileList":["scripts/c3runtime.js","data.json","style.css","scripts/offlineClient.js","images/shared-0-sheet0.png","images/shared-0-sheet1.png","images/shared-0-sheet2.png","images/shared-0-sheet3.png","images/shared-0-sheet4.png","images/bigmario-sheet0.png","images/bigmario-sheet1.png","images/bigmario-sheet2.png","images/bigmario-sheet3.png","images/bigmario-sheet4.png","images/dirt_solid-sheet0.png","images/dirt_solid-sheet1.png","images/player-sheet0.png","images/dirt_hiding-sheet0.png","scripts/main.js","scripts/dispatchWorker.js","scripts/jobWorker.js","scripts/workerMain.js","scripts/supportCheck.js","icons/icon-16.png","icons/icon-32.png","icons/icon-64.png","icons/loading-logo.png","icons/icon-128.png","icons/icon-256.png","icons/icon-512.png","scripts/register-sw.js"]} |
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
html, body { | ||
padding: 0; | ||
margin: 0; | ||
overflow: hidden; | ||
|
||
background: #09142c; | ||
color: white; | ||
} | ||
|
||
html, body, canvas { | ||
touch-action: none; | ||
touch-action-delay: none; | ||
} | ||
|
||
#notSupportedWrap { | ||
margin: 2em auto 1em auto; | ||
width: 75%; | ||
max-width: 45em; | ||
border: 2px solid #aaa; | ||
border-radius: 1em; | ||
padding: 2em; | ||
background-color: #f0f0f0; | ||
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; | ||
color: black; | ||
} | ||
|
||
#notSupportedTitle { | ||
font-size: 1.8em; | ||
} | ||
|
||
#notSupportedMessage { | ||
font-size: 1.2em; | ||
} | ||
|
||
#notSupportedMessage em { | ||
color: #888; | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.