about summary refs log tree commit diff stats
path: root/js/pixel-art/pixel/index.html
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-12-25 20:30:03 -0500
committerelioat <elioat@tilde.institute>2024-12-25 20:30:03 -0500
commit4d334af3c676fe7f7f0c713a1ed87404cee081c0 (patch)
tree488105828884acb9b2a5e6dce1f1694dbab5f664 /js/pixel-art/pixel/index.html
parentc6d7d21c89bd8595db7e7f97d1fd77fbf6ecdb2b (diff)
downloadtour-4d334af3c676fe7f7f0c713a1ed87404cee081c0.tar.gz
*
Diffstat (limited to 'js/pixel-art/pixel/index.html')
-rw-r--r--js/pixel-art/pixel/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/pixel-art/pixel/index.html b/js/pixel-art/pixel/index.html
index eea03b1..3d48f5e 100644
--- a/js/pixel-art/pixel/index.html
+++ b/js/pixel-art/pixel/index.html
@@ -65,7 +65,6 @@
             transform: translateX(-11.25rem);
         }
 
-        #palette label,
         #palette input,
         #palette button {
             display: block;
@@ -154,15 +153,14 @@
     <div id="palette">
         <div style="display: flex; gap: 5px; margin-bottom: 10px;">
             <div style="flex: 1;">
-                <label for="gridWidth">W:</label>
+                <label for="gridWidth">Width:</label>
                 <input type="number" id="gridWidth" value="16" min="1" max="100" style="width: 90%;">
             </div>
             <div style="flex: 1;">
-                <label for="gridHeight">H:</label>
+                <label for="gridHeight">Height:</label>
                 <input type="number" id="gridHeight" value="16" min="1" max="100" style="width: 90%;">
             </div>
         </div>
-        <br>
         <label for="colorPicker">Select Color:</label>
         <input type="color" id="colorPicker" value="#000000">
         <div id="colorHistory" class="color-history"></div>
@@ -182,6 +180,8 @@
         <button id="newCanvasBtn">➕ New Canvas</button>
         <hr>
         <button id="exportBtn">Export as PNG</button>
+        <button id="saveProjectBtn">Save Project</button>
+        <button id="loadProjectBtn">Load Project</button>
         <button id="resetBtn">Reset</button>
     </div>
     <script src="app.js"></script>