-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'deepnight:master' into master
- Loading branch information
Showing
58 changed files
with
22,385 additions
and
864 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,111 @@ | ||
<html> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<!-- Stylesheets --> | ||
<!-- <link rel="stylesheet" href="css/app.min.css"/> --> | ||
<style type="text/css"> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
padding: 16px; | ||
overflow: hidden; | ||
color: #737f9d; | ||
font-family: Roboto, Arial; | ||
/* border: 1px solid blue; */ | ||
} | ||
|
||
@font-face { | ||
font-family: Roboto; | ||
src: url("fonts/RobotoCondensed-Light.ttf"); | ||
} | ||
|
||
@font-face { | ||
font-family: Roboto Bold; | ||
src: url("fonts/RobotoCondensed-Bold.ttf"); | ||
} | ||
|
||
|
||
.wrapper { | ||
display: grid; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.splash { | ||
position: absolute; | ||
display: grid; | ||
grid-template-rows: auto min-content; | ||
gap: 16px; | ||
grid-template-columns: 300px min-content; | ||
box-sizing: border-box; | ||
width: 90%; | ||
height: 90%; | ||
margin: 5%; | ||
padding: 32px; | ||
|
||
border-radius: 8px; | ||
background-color: #1e2229; | ||
box-shadow: 0px 0px 16px rgba(0,0,0, 0.5); | ||
overflow: hidden; | ||
box-shadow: 0px 4px 8px rgba(0,0,0, 0.3), | ||
0px 0px 32px rgba(0,0,0, 0.4); | ||
} | ||
|
||
.splash img { | ||
.splash .logo { | ||
padding: 16px; | ||
background: #1e2229d3; | ||
border-top: 1px solid #545d7352; | ||
box-shadow: 0px 0px 32px #2c3546a4 inset; | ||
} | ||
|
||
.splash .logo img { | ||
width: 100%; | ||
} | ||
|
||
.splash .sub { | ||
font-size: 14pt; | ||
font-family: Roboto, Arial; | ||
text-align: center; | ||
.splash .version { | ||
display: grid; | ||
grid-template-columns: min-content min-content; | ||
justify-content: center; | ||
|
||
color: #1e2229; | ||
white-space: nowrap; | ||
font-size: 110px; | ||
line-height: 1em; | ||
letter-spacing: -3px; | ||
padding-left: 8px; | ||
padding-right: 16px; | ||
|
||
background: #fc0; | ||
} | ||
|
||
.splash .version #mainVersion, | ||
.splash .version #patchVersion { | ||
display: flex; | ||
align-items: center; | ||
} | ||
.splash .version #mainVersion { | ||
font-weight: bold; | ||
} | ||
</style> | ||
</head> | ||
|
||
|
||
<body> | ||
<div class="splash"> | ||
<img src="img/LDtk.svg"/> | ||
<div class="sub">Loading...</div> | ||
<div class="wrapper"> | ||
<div class="splash"> | ||
|
||
<div class="logo"> | ||
<img src="img/LDtk-simple.svg"/> | ||
</div> | ||
|
||
<div class="version"> | ||
<span id="mainVersion">???</span> | ||
<span id="patchVersion">???</span> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
// Write version from args | ||
window.location.search | ||
.substr(1) | ||
.split("&") | ||
.forEach(function (item) { | ||
if( item.split("=")[0]=="patchVersion" ) | ||
document.getElementById("patchVersion").innerHTML = item.split("=")[1]; | ||
if( item.split("=")[0]=="mainVersion" ) | ||
document.getElementById("mainVersion").innerHTML = item.split("=")[1]; | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.