From 461a43a05dc9c3e2395950a47dadce38785fb12c Mon Sep 17 00:00:00 2001 From: Richard Halsall <–richard-glyn.halsall@informatik.hs-fulda.e> Date: Thu, 26 Jan 2023 13:07:02 +0100 Subject: [PATCH] =?UTF-8?q?W=C3=BCrfelbereich=20gestaltet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schlangen_und_leitern/board.html | 4 +++- schlangen_und_leitern/css/style.css | 33 ++++++++++++++++++++++------- 2 files changed, 28 insertions(+), 9 deletions(-) diff --git a/schlangen_und_leitern/board.html b/schlangen_und_leitern/board.html index f655bc4..73af493 100644 --- a/schlangen_und_leitern/board.html +++ b/schlangen_und_leitern/board.html @@ -13,9 +13,11 @@ -
+
+ +
diff --git a/schlangen_und_leitern/css/style.css b/schlangen_und_leitern/css/style.css index 9498420..21fee5c 100644 --- a/schlangen_und_leitern/css/style.css +++ b/schlangen_und_leitern/css/style.css @@ -1,12 +1,29 @@ +#würfelBereich{ + + height: 170px; + width: 170px; + + display: grid; + grid-template-columns: 30px 100px 30px; + grid-template-rows: 30px 100px 30px; + gap: 5px; +} + +#face { + +grid-column: 2/2; +grid-row: 2/2; +height: 100%; +width: auto; +} + #rollButton{ - border: 1px solid #000000; - position: absolute; - - top:50%; - left: 10%; - background-color:#ffffff; - font-size: 13px; - color: #000000 ; + grid-column: 2/2; + grid-row: 3/3; + height: 100%; + width: 100%; + + font-size: 10px; } \ No newline at end of file