From dcb9e37dc878f4e8fce38e9ada31e0200d03457b Mon Sep 17 00:00:00 2001 From: adanrsantos Date: Wed, 9 Oct 2024 19:02:59 -0500 Subject: [PATCH] added style to canvas --- static/canvas.css | 35 ++++++++++++++++++++++++++++++++++- static/canvas.html | 12 ++++++++++-- 2 files changed, 44 insertions(+), 3 deletions(-) diff --git a/static/canvas.css b/static/canvas.css index def5ac0..ad81b73 100644 --- a/static/canvas.css +++ b/static/canvas.css @@ -1,3 +1,36 @@ +* { + padding: 0; + margin: 0; +} + +html, body { + height: 100%; +} + +.wrapper { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.navbarCont { + background-color: grey; + width: 100%; + text-align: center; + margin-bottom: 10px; +} + +.canvasCont { + display: flex; + justify-content: center; + align-items: center; + padding: 20px; + background-color: yellow; + border: solid black; + border-radius: 20px; +} + canvas { - background-color: black; + background-color: lightblue; } \ No newline at end of file diff --git a/static/canvas.html b/static/canvas.html index f0cd5fa..6152038 100644 --- a/static/canvas.html +++ b/static/canvas.html @@ -11,7 +11,15 @@ - -

Hello

+
+ +
+ + +
+
\ No newline at end of file