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

Template page
No edit summary
No edit summary
Line 2: Line 2:
}
}


.ci-ackground {
.ci-background {
  background: gray;  
  background: gray;  
  width:max-content;  
  width:max-content;  

Revision as of 11:19, 20 May 2025

.ci {
}

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

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

.ci:hover {
 border: solid 3px yellow;
 outline: solid 3px yellow;
 outline-offset: 5px;
 animation: blinker 1s linear infinite;
}

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