From 5e88b034acb893d1829d18334f6425e6080a5e79 Mon Sep 17 00:00:00 2001 From: Mike Rockwell Date: Wed, 27 Aug 2025 11:47:11 -0400 Subject: [PATCH] Initial code to build the structure of the page --- wally/index.html | 6 ++++++ wally/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/wally/index.html b/wally/index.html index 4b20492..2603cf6 100644 --- a/wally/index.html +++ b/wally/index.html @@ -7,6 +7,12 @@ +

Score: 0

+

WallyKazam Word Quiz

+ +
+ +
diff --git a/wally/style.css b/wally/style.css index e69de29..921a3e7 100644 --- a/wally/style.css +++ b/wally/style.css @@ -0,0 +1,46 @@ +h1 { + text-align: center; + font-size: 64px; + position: fixed; + bottom: 458px; + left: 50%; + transform: translateX(-50%); +} + +img { + position: fixed; + bottom: 72px; + left: 50%; + transform: translateX(-50%); +} + +.score-counter { + font-size: 32px; + font-weight: bold; + position: fixed; + right: 16px; + top: 16px; +} + +.input-buttons { + position: fixed; + bottom: 16px; + left: 50%; + transform: translateX(-50%); +} + +button { + color: white; + font-size: 32px; + height: 40px; + width: 40px; +} + +button.correct { + background-color: green; + margin-right: 32px; +} + +button.wrong { + background-color: red; +} \ No newline at end of file