summaryrefslogtreecommitdiff
path: root/play.css
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-03-17 18:33:34 +0100
committerTor Andersson <tor@ccxvii.net>2024-03-17 18:33:34 +0100
commit8eda31b500eb6ec8778d299daf373a430ad4c98e (patch)
tree554f34bfe7aee1925734e1920a10582b6d5b3189 /play.css
parent7b98e9c6efd97470248fb244a20c3dacb2942cd1 (diff)
downloadmaria-8eda31b500eb6ec8778d299daf373a430ad4c98e.tar.gz
Add cities and roads to client.
Diffstat (limited to 'play.css')
-rw-r--r--play.css55
1 files changed, 44 insertions, 11 deletions
diff --git a/play.css b/play.css
index 72819b0..175fcd9 100644
--- a/play.css
+++ b/play.css
@@ -56,25 +56,58 @@ body {
.city {
position: absolute;
- width: 18px;
- height: 18px;
+ box-sizing: border-box;
+ border: 2px solid black;
+ width: 24px;
+ height: 24px;
border-radius: 100%;
- background-color: green;
+ background-color: #0002;
}
-.minor_fortress {
+.minor.fortress {
position: absolute;
- width: 26px;
- height: 26px;
+ box-sizing: border-box;
+ border: 2px solid black;
+ width: 28px;
+ height: 28px;
border-radius: 0%;
- background-color: green;
+ //background-color: lime;
}
-.major_fortress {
+.major.fortress {
position: absolute;
- width: 26px;
- height: 26px;
+ border: 2px solid black;
+ box-sizing: border-box;
+ width: 40px;
+ height: 40px;
border-radius: 50%;
- background-color: green;
+ //background-color: lime;
}
+.Austria { background-color: #fcffff; }
+.France { background-color: #ea192e; }
+.Prussia { background-color: #035783; }
+.Netherlands { background-color: #7d7c7a; }
+.Silesia { background-color: #91b4a0; }
+.Saxony { background-color: #127a3b; }
+.Bavaria { background-color: #fcb01f; }
+
+.fortress.HRE { background-color: #b41a70; }
+.city.HRE { background-color: #e0d796; }
+.Poland { background-color: #cac180; }
+
+.major_road {
+ position: absolute;
+ box-sizing: border-box;
+ background-color: black;
+ width: 20px;
+ height: 6px;
+}
+
+.road {
+ position: absolute;
+ box-sizing: border-box;
+ background-color: dimgray;
+ width: 20px;
+ height: 4px;
+}