From 7fa416ee1a173be523eecdeaf2cfa2eb4c0d1531 Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Sun, 31 Mar 2024 12:33:29 -0700
Subject: WIP: sight line, distance
---
style.css | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
(limited to 'style.css')
diff --git a/style.css b/style.css
index 7aa10e2..08a997a 100644
--- a/style.css
+++ b/style.css
@@ -5,9 +5,14 @@ body {
overflow: hidden;
}
+#map-container {
+ flex-basis: 100%;
+ position: relative;
+}
+
svg {
background-color: darkgray;
- flex-basis: 100%;
+ /* flex-basis: 100%; */
/* max-height: 50vh; */
/* max-height: 100vw; */
}
@@ -25,6 +30,24 @@ svg text {
/* display: none; */
}
+div#status {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ margin: 3px;
+ display: none;
+}
+
+#hex-counter {
+ padding: 2px;
+ background-color: rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+}
+
+#hex-count {
+ font-family: monospace;
+}
+
div#content {
display: flex;
/* display: none; */
--
cgit v1.2.3