From 2634b29089cb0943f5131974947770dbe6ea2f3e Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 7 Aug 2024 16:00:31 -0600 Subject: [PATCH] Update index.html Add map legend --- index.html | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9dca06c..ed620e2 100644 --- a/index.html +++ b/index.html @@ -35,8 +35,8 @@ padding: 20px; } iframe { - width: 960px; /* 800px + 20% */ - height: 660px; /* 550px + 20% */ + width: 960px; + height: 660px; border: none; margin-bottom: 20px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); @@ -71,6 +71,25 @@ text-decoration: none; margin-left: 5px; } + .legend { + text-align: left; + margin-bottom: 20px; + } + .legend div { + display: flex; + align-items: center; + margin-bottom: 5px; + } + .legend div span { + display: inline-block; + width: 20px; + height: 20px; + margin-right: 10px; + border: 1px solid #ccc; + } + .legend .green { + background-color: green; + }