Add a background; hide some broken stuff
This commit is contained in:
parent
7a6370c9e9
commit
5e2c8ee65e
5
background.svg
Normal file
5
background.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 17 KiB |
@ -15,10 +15,11 @@
|
|||||||
<header id="header-main">
|
<header id="header-main">
|
||||||
<img src="icon.png" alt="">
|
<img src="icon.png" alt="">
|
||||||
<h1>Lexy's Labyrinth</h1>
|
<h1>Lexy's Labyrinth</h1>
|
||||||
|
<p>— a game by <a href="https://eev.ee/">eevee</a></p>
|
||||||
<nav>
|
<nav>
|
||||||
<button id="main-about" type="button">about</button>
|
<button id="main-about" type="button">about</button>
|
||||||
<button id="main-help" type="button" disabled>help</button>
|
<button id="main-help" type="button" disabled>help</button>
|
||||||
<button id="main-options" type="button">options</button>
|
<button id="main-options" type="button" disabled>options</button>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<header id="header-pack">
|
<header id="header-pack">
|
||||||
@ -60,9 +61,9 @@
|
|||||||
<!-- TODO explain how to find chips.dat or steam folder -->
|
<!-- TODO explain how to find chips.dat or steam folder -->
|
||||||
<!-- TODO drag and drop? -->
|
<!-- TODO drag and drop? -->
|
||||||
<input id="splash-upload" type="file" accept=".dat,.ccl,.c2m,.ccs">
|
<input id="splash-upload" type="file" accept=".dat,.ccl,.c2m,.ccs">
|
||||||
<button type="button" id="splash-upload-button" class="button-big">Open a local level<br>(or drag and drop a file into this window)</button>
|
<button type="button" id="splash-upload-button" class="button-big">Open a local level<!-- TODO: <br>(or drag and drop a file into this window) --></button>
|
||||||
<p>Supports both the old Microsoft <code>CHIPS.DAT</code> format and the Steam <code>C2M</code> format.</p>
|
<p>Supports both the old Microsoft <code>CHIPS.DAT</code> format and the Steam <code>C2M</code> format.</p>
|
||||||
<p>Does <em>not</em> yet support the Steam <code>C2G</code> format, so tragically, the original Steam levels can only be played one at a time! This should be fixed soon!</p>
|
<p>Does <em>not</em> yet support the Steam <code>C2G</code> format, so tragically, the original Steam levels can only be played one at a time. This should be fixed soon!</p>
|
||||||
<!--
|
<!--
|
||||||
<p>If you own the Steam versions of <a href="https://store.steampowered.com/app/346850/Chips_Challenge_1/">Chip's Challenge 1</a> (<em>free!</em>) or <a href="https://store.steampowered.com/app/348300/Chips_Challenge_2/">Chip's Challenge 2</a> ($5 last I checked), you can play those too, even on Linux or Mac:</p>
|
<p>If you own the Steam versions of <a href="https://store.steampowered.com/app/346850/Chips_Challenge_1/">Chip's Challenge 1</a> (<em>free!</em>) or <a href="https://store.steampowered.com/app/348300/Chips_Challenge_2/">Chip's Challenge 2</a> ($5 last I checked), you can play those too, even on Linux or Mac:</p>
|
||||||
<ol class="normal-list">
|
<ol class="normal-list">
|
||||||
|
|||||||
@ -1193,6 +1193,7 @@ const EDITOR_TOOLS = [{
|
|||||||
icon: 'icons/tool-pencil.png',
|
icon: 'icons/tool-pencil.png',
|
||||||
name: "Pencil",
|
name: "Pencil",
|
||||||
desc: "Draw individual tiles",
|
desc: "Draw individual tiles",
|
||||||
|
/* TODO not implemented
|
||||||
}, {
|
}, {
|
||||||
mode: 'line',
|
mode: 'line',
|
||||||
icon: 'icons/tool-line.png',
|
icon: 'icons/tool-line.png',
|
||||||
@ -1208,6 +1209,7 @@ const EDITOR_TOOLS = [{
|
|||||||
icon: 'icons/tool-fill.png',
|
icon: 'icons/tool-fill.png',
|
||||||
name: "Fill",
|
name: "Fill",
|
||||||
desc: "Flood-fill an area with tiles",
|
desc: "Flood-fill an area with tiles",
|
||||||
|
*/
|
||||||
}, {
|
}, {
|
||||||
mode: 'force-floors',
|
mode: 'force-floors',
|
||||||
icon: 'icons/tool-force-floors.png',
|
icon: 'icons/tool-force-floors.png',
|
||||||
@ -1218,6 +1220,7 @@ const EDITOR_TOOLS = [{
|
|||||||
icon: 'icons/tool-adjust.png',
|
icon: 'icons/tool-adjust.png',
|
||||||
name: "Adjust",
|
name: "Adjust",
|
||||||
desc: "Toggle blocks and rotate actors",
|
desc: "Toggle blocks and rotate actors",
|
||||||
|
/* TODO not implemented
|
||||||
}, {
|
}, {
|
||||||
mode: 'connect',
|
mode: 'connect',
|
||||||
icon: 'icons/tool-connect.png',
|
icon: 'icons/tool-connect.png',
|
||||||
@ -1232,6 +1235,7 @@ const EDITOR_TOOLS = [{
|
|||||||
// TODO interesting option: rotate an actor as you draw it by dragging? or hold a key like in
|
// TODO interesting option: rotate an actor as you draw it by dragging? or hold a key like in
|
||||||
// slade when you have some selected?
|
// slade when you have some selected?
|
||||||
// TODO ah, railroads...
|
// TODO ah, railroads...
|
||||||
|
*/
|
||||||
}];
|
}];
|
||||||
// Tiles the "adjust" tool will turn into each other
|
// Tiles the "adjust" tool will turn into each other
|
||||||
const EDITOR_ADJUST_TOGGLES = {
|
const EDITOR_ADJUST_TOGGLES = {
|
||||||
|
|||||||
@ -12,6 +12,8 @@ body {
|
|||||||
font-family: Ubuntu, Source Sans Pro, DejaVu Sans, sans-serif;
|
font-family: Ubuntu, Source Sans Pro, DejaVu Sans, sans-serif;
|
||||||
line-height: 1.33;
|
line-height: 1.33;
|
||||||
background: #080808;
|
background: #080808;
|
||||||
|
background-image: url(background.svg);
|
||||||
|
background-size: 10%;
|
||||||
color: #ececec;
|
color: #ececec;
|
||||||
|
|
||||||
--panel-bg-color: hsl(225, 10%, 20%);
|
--panel-bg-color: hsl(225, 10%, 20%);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user