No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
.ci { | .ci { | ||
background: gray; | background: gray; | ||
} | } | ||
Line 16: | Line 17: | ||
visibility: visible; | visibility: visible; | ||
animation: blinker 1s linear infinite; | animation: blinker 1s linear infinite; | ||
} | |||
.ci-parent:hover .ci { | |||
border: solid 3px yellow; | |||
animation: blinker 1s linear infinite; | |||
animation-delay: 0.5s; | |||
} | } | ||
Revision as of 13:38, 20 May 2025
.ci { background: gray; } .ci-highlight { position: absolute; width: 60px; height: 51px; outline: solid 3px yellow; outline-offset: 3px; visibility: hidden; } .ci-parent:hover .ci-highlight { visibility: visible; animation: blinker 1s linear infinite; } .ci-parent:hover .ci { border: solid 3px yellow; animation: blinker 1s linear infinite; animation-delay: 0.5s; } @keyframes blinker { 50% { opacity: 0; } }