From b23004c184f9655dd9b65110b601cc81f59a3b54 Mon Sep 17 00:00:00 2001 From: hide_d Date: Tue, 21 Dec 2021 21:52:34 +0900 Subject: [PATCH] =?UTF-8?q?misc:=20=EC=A7=80=EB=8F=84=20=EB=82=B4=20?= =?UTF-8?q?=EC=86=8C=EC=9E=AC=20=EB=8F=84=EC=8B=9C=20=ED=91=9C=EA=B8=B0=20?= =?UTF-8?q?=EB=B0=A9=EC=8B=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/css/map.css | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/hwe/css/map.css b/hwe/css/map.css index f7326b81..0b3dcca8 100644 --- a/hwe/css/map.css +++ b/hwe/css/map.css @@ -119,6 +119,10 @@ height: 12px; } +.world_map.map_detail .my_city{ + border-radius: 33%; +} + .world_map.map_detail .my_city:before { content: ""; top: -2px; @@ -126,6 +130,8 @@ right: -2px; bottom: -2px; position: absolute; + border-radius: 33%; + overflow: hidden; animation-duration: 3.9s; animation-name: blink-my-city-d1; @@ -140,6 +146,8 @@ right: -2px; bottom: -2px; position: absolute; + border-radius: 33%; + overflow: hidden; animation-duration: 3.9s; animation-name: blink-my-city-d2; @@ -149,31 +157,31 @@ @keyframes blink-my-city-d1 { 0% { - outline: dashed 3px transparent; + outline: solid 4px transparent; } 50% { - outline: dashed 3px rgba(255, 255, 255, 0.5); + outline: solid 4px rgba(255, 0, 0, 1); } 100% { - outline: dashed 3px transparent; + outline: solid 4px transparent; } } @keyframes blink-my-city-d2 { 0% { - outline: dashed 2px transparent; + outline: double 4px transparent; } 50% { - outline: dashed 2px red; + outline: double 4px rgba(192, 192, 192, 1); } 100% { - outline: dashed 2px transparent; + outline: double 4px transparent; } }