diff --git a/static/canvas.css b/static/canvas.css index ad81b73..60a531a 100644 --- a/static/canvas.css +++ b/static/canvas.css @@ -23,14 +23,47 @@ html, body { .canvasCont { display: flex; + flex-direction: column; justify-content: center; align-items: center; - padding: 20px; background-color: yellow; border: solid black; border-radius: 20px; } +.toolbar { + display: flex; + justify-content: space-around; + align-items: center; + border-top: solid black 1px; + width: 100%; + height: 60px; + z-index: 10; +} + +.toolbarItems { + display: flex; + flex-direction: column; + justify-content: center; + font-weight: 900; + color: blue; + text-align: center; + height: 100%; + width: 100px; +} + +.strokePicker { + padding: 0; + margin: 0; + width: 100%; +} + +.strokePicker:hover { + cursor: pointer; +} + + canvas { background-color: lightblue; + margin: 20px; } \ No newline at end of file diff --git a/static/canvas.html b/static/canvas.html index 6152038..f4e0c3a 100644 --- a/static/canvas.html +++ b/static/canvas.html @@ -18,8 +18,21 @@