about summary refs log tree commit diff stats
path: root/html/simple-shape/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/simple-shape/index.html')
-rw-r--r--html/simple-shape/index.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/html/simple-shape/index.html b/html/simple-shape/index.html
new file mode 100644
index 0000000..3eda1f7
--- /dev/null
+++ b/html/simple-shape/index.html
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Simple Shapes</title>
+    <meta name="description" content="Simple shapes. Draw them, riff on them.">
+    <style>
+        body {
+            margin: 0;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            min-height: 100vh;
+            background: #f0f0f0;
+            padding: 40px;
+        }
+        .canvas-container {
+            width: 100%;
+            max-width: 800px;
+            margin: 20px;
+            padding: 40px;
+            background: white;
+            box-shadow: 0 0 20px rgba(0,0,0,0.1);
+        }
+        canvas {
+            width: 100%;
+            height: auto;
+            background: white;
+        }
+        /* Print styles */
+        @media print {
+            body { 
+                background: none;
+                padding: 0;
+            }
+            .canvas-container {
+                max-width: none;
+                width: 8.5in;
+                margin: 0;
+                padding: 0;
+                box-shadow: none;
+            }
+            canvas {
+                width: 8.5in;
+                height: 11in;
+                border: none;
+            }
+        }
+    </style>
+</head>
+<body>
+    <div class="canvas-container">
+        <canvas id="canvas"></canvas>
+    </div>
+    <script src="app.js"></script>
+</body>
+</html>
\ No newline at end of file