diff --git a/index.html b/index.html index 56e34b3..fe37e80 100644 --- a/index.html +++ b/index.html @@ -32,6 +32,28 @@ font-family: 'Roboto Mono', monospace; color: #000000; } + .canvas-container { + flex: 1; + width: 100%; + display: none; + position: relative; + background-color: white; + } + #drawing-canvas { + width: 100%; + height: 100%; + cursor: url("https://radical.omar-c29.workers.dev/memes/maccas32.jpg") 12 12, pointer; + } + .drawing-controls { + background-color: #f1f1f1; + padding: 10px; + display: none; + justify-content: space-between; + align-items: center; + border-top: 1px solid #ddd; + flex-wrap: wrap; + gap: 10px; + } .controls { background-color: #f1f1f1; padding: 10px; @@ -42,7 +64,7 @@ flex-wrap: wrap; gap: 10px; } - .font-size-control, .font-family-control, .color-control { + .font-size-control, .font-family-control, .color-control, .pen-control { display: flex; align-items: center; gap: 10px; @@ -62,6 +84,10 @@ overflow: hidden; z-index: 1; } + .active-mode { + background-color: #FFA500; /* Orange for active mode */ + box-shadow: 0 0 5px rgba(0,0,0,0.3); + } button::after { content: ''; position: absolute; @@ -105,6 +131,27 @@ +
+ +
+ +
+
+ + + 3px +
+ +
+ + +
+ +
+ +
+
+
@@ -131,6 +178,7 @@
+
@@ -139,8 +187,16 @@