2018-01-22 16:51:14 -08:00
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Westeroscraft Launcher</title>
|
|
|
|
<script src="./assets/js/uicore.js"></script>
|
|
|
|
<script src="./assets/js/actionbinder.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
#main {
|
2018-04-02 13:05:48 -07:00
|
|
|
height: calc(100% - 22px);
|
2018-01-27 19:29:15 -08:00
|
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
|
2018-01-22 16:51:14 -08:00
|
|
|
}
|
2018-04-02 19:43:11 -07:00
|
|
|
#main[overlay] {
|
|
|
|
filter: blur(3px) contrast(0.9) brightness(1.0);
|
|
|
|
}
|
2018-01-22 16:51:14 -08:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<% include frame.ejs %>
|
|
|
|
<div id="main">
|
2018-04-02 13:05:48 -07:00
|
|
|
<% include welcome.ejs %>
|
2018-03-28 13:13:57 -07:00
|
|
|
<% include login.ejs %>
|
2018-04-02 13:05:48 -07:00
|
|
|
<% include landing.ejs %>
|
2018-01-22 16:51:14 -08:00
|
|
|
</div>
|
2018-04-02 19:43:11 -07:00
|
|
|
<% include overlay.ejs %>
|
2018-01-22 16:51:14 -08:00
|
|
|
</body>
|
|
|
|
</html>
|