From 6214d04f160a05ff8acb059344ba3f19df65dce1 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Thu, 25 Dec 2025 15:48:33 -0800 Subject: [PATCH] combine sections --- index.html | 17 ++++++++--------- style.css | 27 +++++++++++++++++---------- 2 files changed, 25 insertions(+), 19 deletions(-) diff --git a/index.html b/index.html index 98fb9e4..96c923c 100644 --- a/index.html +++ b/index.html @@ -12,12 +12,6 @@
-
-

Weather

- Weather -

sunny

-
-

Supplies

@@ -75,9 +69,14 @@
-

Game

-

Cups sold: 0

-

Earnings: $0.00

+
+ Weather +

sunny

+
+
+

Cups sold: 0

+

Earnings: $0.00

+
diff --git a/style.css b/style.css index 4c76d67..78f418b 100644 --- a/style.css +++ b/style.css @@ -54,28 +54,35 @@ body { margin-top: auto; } -/* Weather Section */ -.weather_section { - text-align: center; +/* Weather display in game section */ +.weather_display { + display: flex; + align-items: center; + justify-content: center; + gap: 10px; + margin-bottom: 8px; } .weather_icon { - width: 80px; - height: 80px; + width: 48px; + height: 48px; object-fit: contain; - margin: 8px auto; - display: block; } .weather_label { font-family: 'Fredoka', sans-serif; - font-size: 18px; - font-weight: 500; + font-size: 20px; + font-weight: 600; color: #5C4632; text-transform: capitalize; margin: 0; } +.game_stats { + text-align: center; + margin-bottom: 8px; +} + .game_list { list-style: none; margin: 8px 0; @@ -204,7 +211,7 @@ body { } .game_section .section_hint { - font-size: 13px; + font-size: 15px; margin: 2px 0 8px; }