| 123456789101112131415161718192021222324252627282930313233 |
- <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 {
- height: calc(100% - 22px);
- background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
- will-change: filter;
- transition: filter 0.5s ease;
- }
- #main[overlay] {
- filter: blur(3px) contrast(0.9) brightness(1.0);
- }
- </style>
- </head>
- <body>
- <% include frame.ejs %>
- <div id="main">
- <% include welcome.ejs %>
- <% include login.ejs %>
- <% include landing.ejs %>
- </div>
- <% include overlay.ejs %>
- </body>
- </html>
|