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

Template page
No edit summary
No edit summary
Line 3: Line 3:


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

Revision as of 13:07, 20 May 2025

.ci {
}

.ci-background {
 position: absolute;
 background: gray; 
 width:60px;
 height:51px;
 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;
 }
}