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

Template page
No edit summary
No edit summary
Line 24: Line 24:
.ci-background:hover {
.ci-background:hover {
  border: hidden;
  border: hidden;
  animation: none;
  animation: initial;
}
}


.ci:hover {
.ci:hover {
  border: solid 3px yellow;
  border: solid 3px yellow;
  animation: none;
  animation: initial;
}
}



Revision as of 11:39, 20 May 2025

.ci {
 visibility: visible;
}

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

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

.ci-highlight:hover {
 visibility: visible;
 animation: blinker 1s linear infinite;
}

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

.ci:hover {
 border: solid 3px yellow;
 animation: initial;
}

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