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

Template page
No edit summary
No edit summary
Line 9: Line 9:


.ci-highlight {
.ci-highlight {
position: absolute;
  width: 60px;
  width: 60px;
  height: 51px;
  height: 51px;

Revision as of 12:02, 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;
}

.ci-background:hover {
 border: hidden;
 animation: initial;
}

.ci:hover {
}

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