Update static/style.css
Browse files- static/style.css +11 -3
static/style.css
CHANGED
|
@@ -6,18 +6,26 @@ body {
|
|
| 6 |
height: 100vh;
|
| 7 |
}
|
| 8 |
|
| 9 |
-
#
|
|
|
|
| 10 |
flex-grow: 1;
|
| 11 |
}
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
#toolbar {
|
| 14 |
display: flex;
|
| 15 |
justify-content: center;
|
| 16 |
align-items: center;
|
| 17 |
padding: 10px;
|
| 18 |
-
background-color: #
|
| 19 |
}
|
| 20 |
|
| 21 |
#toolbar > * {
|
| 22 |
margin: 0 10px;
|
| 23 |
-
}
|
|
|
|
| 6 |
height: 100vh;
|
| 7 |
}
|
| 8 |
|
| 9 |
+
#canvas-container {
|
| 10 |
+
position: relative;
|
| 11 |
flex-grow: 1;
|
| 12 |
}
|
| 13 |
|
| 14 |
+
#background-canvas,
|
| 15 |
+
#drawing-canvas {
|
| 16 |
+
position: absolute;
|
| 17 |
+
top: 0;
|
| 18 |
+
left: 0;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
#toolbar {
|
| 22 |
display: flex;
|
| 23 |
justify-content: center;
|
| 24 |
align-items: center;
|
| 25 |
padding: 10px;
|
| 26 |
+
background-color: #f0f0f0;
|
| 27 |
}
|
| 28 |
|
| 29 |
#toolbar > * {
|
| 30 |
margin: 0 10px;
|
| 31 |
+
}
|