User:Certified nqh/common.css

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
/* One can only dream. */
.blink { width: fit-content; animation: blink 1s step-end infinite; }
.marquee { 
 display: flex;
 overflow: hidden;
 width: fit-content;
 animation: marquee 5s linear infinite;
}

@keyframes blink {
 67% { opacity: 0 }
}

@keyframes marquee {
 from {
  transform: translateX(0);
 }
 to {
  transform: translateX(calc(100% + 1rem));
 }
}

* {
 background-color: black !important;
 color: white !important;
}

@keyframes bouncing {
 0%   {left:0%;}
 50%  {left:20%;}
 100% {left:0%;}
}

span.bounce {
 width: fit-content;
 position: absolute;
 animation-name: bouncing;
 animation-duration: 10s;
 animation-iteration-count: infinite;
 animation-timing-function: linear;
}

.mw-wiki-logo {
 background-color: white !important;
 filter: invert(100%);
}

a {
 background-color: black !important;
 color: #88F !important;
}

a:visited {
 color: #AAD !important;
}

a:hover {
 color: #F00 !important;
}

a:active {
 background-color: white !important;
 color: black !important;
}