summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/map-editor/www')
-rw-r--r-- | src/map-editor/www/style.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/map-editor/www/style.css b/src/map-editor/www/style.css index fee293f..836a84c 100644 --- a/src/map-editor/www/style.css +++ b/src/map-editor/www/style.css @@ -354,3 +354,21 @@ .map-tile-variant-8 {background-position: 200% 200%;} .map-tile-icon {z-index: 0; position: absolute; background-size: 300%;} + +.map-tile-selected +{ + border: 1px dashed white; +} + +.map-tile-square-corner +{ + animation-name: blinking; + animation-duration: 1s; + animation-iteration-count: infinite; +} + +@keyframes blinking { + 0% {opacity: 1;} + 50% {opacity: 0;} + 100% {opacity: 1;} +} |