summaryrefslogtreecommitdiff
path: root/pixeled.css
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2023-09-04 19:58:50 -0700
committerzlg <zlg@zlg.space>2023-09-04 19:58:50 -0700
commita8a8f07be563412eedd46a2e5f157cbd18a6f24e (patch)
treea22a08c734f011d81d14afc6bd2d54287086515e /pixeled.css
parentInitial commit (diff)
downloadpixeled-js-a8a8f07be563412eedd46a2e5f157cbd18a6f24e.tar.gz
pixeled-js-a8a8f07be563412eedd46a2e5f157cbd18a6f24e.tar.bz2
pixeled-js-a8a8f07be563412eedd46a2e5f157cbd18a6f24e.tar.xz
pixeled-js-a8a8f07be563412eedd46a2e5f157cbd18a6f24e.zip
Right click toggles to another tool as needed
Also added a 'show grid' toggle button, which will update 'on' or 'off' on its label as necessary.
Diffstat (limited to 'pixeled.css')
-rw-r--r--pixeled.css12
1 files changed, 9 insertions, 3 deletions
diff --git a/pixeled.css b/pixeled.css
index 6e2da15..5f02f19 100644
--- a/pixeled.css
+++ b/pixeled.css
@@ -53,8 +53,11 @@ button {
#grid_container > div {
background: white;
aspect-ratio: 1;
- border-bottom: 1px solid #888;
- border-right: 1px solid #888;
+}
+
+.show_grid > div {
+ border-bottom: 1px solid #777;
+ border-right: 1px solid #777;
border-collapse: collapse;
}
@@ -76,7 +79,7 @@ button {
font-weight: bold;
z-index: 2;
gap: 2rem;
- grid-template-rows: 10vh 15vh 20vh 1fr 1fr 1fr 1fr
+ grid-template-rows: 10vh 15vh 20vh 1fr 1fr 1fr 1fr 1fr;
}
#toolbox > header {
@@ -145,3 +148,6 @@ button {
button.selected {
border: 4px solid #fff !important;
}
+
+#btn_overlay {
+}