From 72c60ec676596434d5ff7711506f7bc24643cfe0 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 27 Mar 2017 18:30:48 +0200 Subject: [PATCH] Add background to the whiteboard app --- www/whiteboard/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/www/whiteboard/index.html b/www/whiteboard/index.html index 96205efc1..4f849e69e 100644 --- a/www/whiteboard/index.html +++ b/www/whiteboard/index.html @@ -20,6 +20,10 @@ body { display: flex; flex-flow: column; + height: 100%; + background: url('/customize/bg3.jpg') no-repeat center center; + background-size: cover; + background-position: center; } textarea{ width: 100%; @@ -36,9 +40,14 @@ /* disallow textarea resizes */ resize: none; } + #canvas-area { + flex: 1; + display: flex; + } .canvas-container { border: 5px solid black; margin: auto; + background: white; } #clear { display: inline; @@ -62,6 +71,7 @@ display: block; position: relative; border: 3px solid black; + background: white; } #width, #colors { position: relative;