mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-24 22:31:30 -04:00
36 lines
861 B
HTML
36 lines
861 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="manifest" href="manifest.webmanifest">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #000000;
|
|
overflow: hidden;
|
|
}
|
|
#canvasArea {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* GDJS_CUSTOM_STYLE */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- 3D_LIBRARY_SCRIPT -->
|
|
<!-- Libs and GDJS core files : -->
|
|
<!-- GDJS_CODE_FILES -->
|
|
<!-- GDJS_CUSTOM_HTML -->
|
|
</body>
|
|
</html>
|