diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-03-17 18:33:34 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-03-17 18:33:34 +0100 |
commit | 8eda31b500eb6ec8778d299daf373a430ad4c98e (patch) | |
tree | 554f34bfe7aee1925734e1920a10582b6d5b3189 /play.css | |
parent | 7b98e9c6efd97470248fb244a20c3dacb2942cd1 (diff) | |
download | maria-8eda31b500eb6ec8778d299daf373a430ad4c98e.tar.gz |
Add cities and roads to client.
Diffstat (limited to 'play.css')
-rw-r--r-- | play.css | 55 |
1 files changed, 44 insertions, 11 deletions
@@ -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; +} |