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

Template page
No edit summary
No edit summary
Line 1: Line 1:
.ci {
.ci {
background: gray;
}
}


.ci-background {
position: absolute;
background: gray;
width:60px;
height:51px;
border: solid 1px white;
}


.ci-highlight {
.ci-highlight {

Revision as of 13:08, 20 May 2025

.ci {
 background: gray;
}


.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;
 }
}