Compare commits

...

4 Commits

Author SHA1 Message Date
Max Bradbury 458604cd1a display number of tiles added 2020-11-08 17:36:24 +00:00
Max Bradbury bb0b970281 bump 2020-11-08 17:36:11 +00:00
Max Bradbury f62202cb74 style header differently 2020-11-08 17:36:00 +00:00
Max Bradbury 745b18dfc0 styling tweaks 2020-11-08 17:35:28 +00:00
3 changed files with 25 additions and 17 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pixsy" name = "pixsy"
version = "0.72.6" version = "0.72.7"
description = "convert images to Bitsy rooms" description = "convert images to Bitsy rooms"
authors = ["Max Bradbury <max@tinybird.info>"] authors = ["Max Bradbury <max@tinybird.info>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,7 @@
@background: #fff4d9; @background: #57506a;
@text: #ec6d7d; @page-background: #968eb5;
@accent: #a3c4ef; @accent: #ec6d7d;
@text: #464256;
* { * {
box-sizing: border-box; box-sizing: border-box;
@ -36,6 +37,10 @@ button {
} }
} }
header * {
color: @accent;
}
h1 { h1 {
margin: 0; margin: 0;
} }
@ -112,8 +117,8 @@ textarea {
height: 80vmin; height: 80vmin;
width: 80vmin; width: 80vmin;
background-color: @background; background-color: @page-background;
border: 2px solid @accent; color: @text;
border-radius: 5vmin; border-radius: 5vmin;
box-shadow: @accent 1vmin 1vmin; box-shadow: @accent 1vmin 1vmin;
padding: 5vmin; padding: 5vmin;

View File

@ -7,6 +7,7 @@ html(lang="en-gb")
link(rel="stylesheet" href="includes/cropper.css") link(rel="stylesheet" href="includes/cropper.css")
script(src="includes/cropper.min.js") script(src="includes/cropper.min.js")
body body
header
h1 h1
| pixsy | pixsy
//img(alt="pixsy" src="includes/pixsy.png") //img(alt="pixsy" src="includes/pixsy.png")
@ -80,6 +81,8 @@ html(lang="en-gb")
button.pagination.prev#back-to-image previous button.pagination.prev#back-to-image previous
button.pagination.next#room-next add room button.pagination.next#room-next add room
.page.download .page.download
p#added
h2 download h2 download
textarea#output(autocomplete="off") textarea#output(autocomplete="off")