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

Template page
No edit summary
No edit summary
Line 1: Line 1:
.ci {
.ci {
visibility: visible;
}
}


Line 6: Line 7:
  width:max-content;  
  width:max-content;  
  border: solid 1px white;
  border: solid 1px white;
visibility: visible;
}
}



Revision as of 11:21, 20 May 2025

.ci {
 visibility: visible;
}

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

.ci-highlight {
 border: solid 3px yellow;
 padding: 5px;
 visibility: hidden;
}

.ci-highlight:hover {
 visibility: visible;
}

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

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

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