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

Template page
(Created page with ".CharIcon-UMVC3 { }")
 
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
.CharIcon-UMVC3 {
.CharIcon-UMVC3 {
   
}
 
.CharIcon-UMVC3-Background {
  background: gray;
width:max-content;
border: solid 1px white;
}
 
.CharIcon-UMVC3-Background:hover {
border: hidden;
}
 
.CharIcon-UMVC3:hover {
border: solid 3px yellow;
outline: solid 3px yellow;
outline-offset: 5px;
animation: blinker 1s linear infinite;
}
 
@keyframes blinker {
50% {
  opacity: 0;
}
}
}

Latest revision as of 16:20, 16 May 2025

.CharIcon-UMVC3 {
}

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

.CharIcon-UMVC3-Background:hover {
 border: hidden;
}

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

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