Template:CharIcon-UMVC3/styles.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 18: Line 18:


.ci-highlight:hover {
.ci-highlight:hover {
visibility: visible;
animation: blinker 1s linear infinite;
}
.ci-background:hover {
border: hidden;
animation: initial;
}
.ci:hover > .ci-highlight {
  visibility: visible;
  visibility: visible;
  animation: blinker 1s linear infinite;
  animation: blinker 1s linear infinite;

Revision as of 13:05, 20 May 2025

.ci {
}

.ci-background {
 background: gray; 
 width:max-content; 
 border: solid 1px white;
}

.ci-highlight {
 position: absolute;
 width: 60px;
 height: 51px;
 outline: solid 3px yellow;
 outline-offset: 3px;
 visibility: hidden;
}

.ci-highlight:hover {
 visibility: visible;
 animation: blinker 1s linear infinite;
}

@keyframes blinker {
 50% {
  opacity: 0;
 }
}