summaryrefslogtreecommitdiff
path: root/play.css
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-03-17 14:30:04 +0100
committerTor Andersson <tor@ccxvii.net>2024-03-17 14:30:04 +0100
commit7b98e9c6efd97470248fb244a20c3dacb2942cd1 (patch)
treee9ecc42fc55c296208bf0f18ccb4ca55d938b6a6 /play.css
parenteb1b52100cc054f7ddbeb865e8b001828b07704d (diff)
downloadmaria-7b98e9c6efd97470248fb244a20c3dacb2942cd1.tar.gz
Add initial client.
Diffstat (limited to 'play.css')
-rw-r--r--play.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/play.css b/play.css
new file mode 100644
index 0000000..72819b0
--- /dev/null
+++ b/play.css
@@ -0,0 +1,80 @@
+
+#mapwrap {
+ width: 2485px;
+ height: 1654px;
+ margin-bottom: 30px;
+}
+
+#map {
+ position: absolute;
+ width: 2485px;
+ height: 1654px;
+ background-size: cover;
+ background-image: url(Maria.Gameboard.075.jpg);
+ background-color: #ece1a9;
+}
+
+#political_display {
+ position: relative;
+ margin: 0 auto;
+ width: 1169px;
+ height: 827px;
+ background-size: cover;
+ background-image: url(Maria.Political.Display.100.jpg);
+ background-color: #ece1a9;
+}
+
+body {
+ background-color: slategray;
+}
+
+.panel {
+ background-color: #444;
+ width: clamp(824px, calc(100% - 30px), 1636px);
+ margin: 12px auto 36px auto;
+ box-shadow: 1px 2px 6px #0004;
+ border: 1px solid #0008;
+}
+
+.panel_header {
+ color: white;
+ font-weight: bold;
+ text-align: center;
+ padding: 3px 1em;
+ border-bottom: 1px solid #0008;
+}
+
+.panel_body {
+ background-color: #555;
+ display: flex;
+ justify-content: start;
+ flex-wrap: wrap;
+ padding: 18px;
+ gap: 18px;
+ min-height: 350px;
+}
+
+.city {
+ position: absolute;
+ width: 18px;
+ height: 18px;
+ border-radius: 100%;
+ background-color: green;
+}
+
+.minor_fortress {
+ position: absolute;
+ width: 26px;
+ height: 26px;
+ border-radius: 0%;
+ background-color: green;
+}
+
+.major_fortress {
+ position: absolute;
+ width: 26px;
+ height: 26px;
+ border-radius: 50%;
+ background-color: green;
+}
+