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