summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-07-13 17:57:01 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-07-13 17:57:01 +0200 |
commit | 9a86bc7064fed626ecd1d3f03c7af30a5ef246c8 (patch) | |
tree | 01048538f5745065f603e14d089499e3ce0dc37f /src/map-editor/www | |
parent | bb65777eca64d868a578d6abdbf054fb05d5d99f (diff) |
Got the rectangle mode to work.
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;} +} |