diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-18 15:11:21 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:12:42 +0100 |
commit | b2a99e6f91c8254550a150ef7217ec4d11c8c0c5 (patch) | |
tree | f1539e8bcf1f1540debd4d83d819c3514301091f /play.html | |
parent | 7ea8c7e31eac80034b894633f923f97b3afd2e40 (diff) | |
download | shores-of-tripoli-b2a99e6f91c8254550a150ef7217ec4d11c8c0c5.tar.gz |
tripoli: Use divs for turn and season markers too.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -96,7 +96,7 @@ svg image { svg circle, .piece { transition-property: x, y, cx, cy, top, left; - transition-duration: 700ms; + transition-duration: 1s; transition-timing-function: ease; } @@ -104,7 +104,7 @@ svg circle, .piece { position: absolute; pointer-events: none; background-size: cover; - background-repeat: none; + background-repeat: no-repeat; filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.5)); } @@ -128,6 +128,7 @@ svg circle, .piece { .piece.ar_infantry { width: 21px; height: 21px; background-image: url("icons/ar_infantry.svg"); } .piece.tr_infantry { width: 21px; height: 21px; background-image: url("icons/tr_infantry.svg"); } .piece.gold { width: 40px; height: 40px; background-image: url("icons/gold.png"); } +.piece.marker { width: 50px; height: 50px; border-radius: 50%; background-color: #444; border: 2px solid black; } .harbor { fill-opacity: 0; @@ -332,10 +333,6 @@ svg circle, .piece { <circle class="harbor" id="benghazi" r="92" cy="583" cx="1877"/> <circle class="harbor" id="alexandria" r="92" cy="454.5" cx="2335.5"/> <circle class="harbor" id="tripoli" r="128" cy="604.5" cx="1416"/> -<g id="markers" fill="#444" stroke="black" stroke-width="2"> -<circle id="year" r="26" cx="175" cy="728"/> -<circle id="season" r="26" cx="893" cy="728"/> -</g> </svg> <div id="pieces"> <div id="us_frigate_1" class="piece us_frigate"></div> @@ -417,6 +414,8 @@ svg circle, .piece { <div id="gold_10" class="piece gold"></div> <div id="gold_11" class="piece gold"></div> <div id="gold_12" class="piece gold"></div> +<div id="year" class="piece marker"></div> +<div id="season" class="piece marker"></div> </div> </div> </div> |