User:Lakituthequick/common.css: Difference between revisions
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
m (Easily see unread edits.) |
m (Fixing) |
||
Line 13: | Line 13: | ||
/* Easily see unread edits. */ | /* Easily see unread edits. */ | ||
.mw-changeslist-line-watched .mw-title::after { | .mw-special-Watchlist .mw-changeslist-line-watched .mw-title::after { | ||
content: " Nieuw "; | content: " Nieuw "; | ||
color: #FB0; | color: #FB0; | ||
Line 21: | Line 21: | ||
} | } | ||
@-webkit-keyframes knip { | @-webkit-keyframes knip { | ||
0% | 0%,100%{color: #FF0;} | ||
50% | 50% {color: #FB0;} | ||
} | } | ||
@keyframes knip { | @keyframes knip { | ||
0% | 0%,100%{color: #FF0;} | ||
50% | 50% {color: #FB0;} | ||
} | } |
Revision as of 12:32, March 7, 2015
/* Redirects in another color */
.mw-redirect {color:orange;}
.mw-redirect:visited {color:darkorange;}
/* Different checker background on image pages */
#file img:hover, .ns-6 .wikitable.filehistory img:hover {background: url(http://www.ltquick.nl/images/block.gif);}
/* Darker gallery backgrounds */
li.gallerybox div.thumb:hover {background-color:#777}
/* Redlinks distinguishable even when other colors are applied */
a.new, .new a { text-shadow:0 0 4px red; }
/* Easily see unread edits. */
.mw-special-Watchlist .mw-changeslist-line-watched .mw-title::after {
content: " Nieuw ";
color: #FB0;
text-shadow: 0 0 5px #000;
-webkit-animation: knip 1s infinite;
animation: knip 1s infinite;
}
@-webkit-keyframes knip {
0%,100%{color: #FF0;}
50% {color: #FB0;}
}
@keyframes knip {
0%,100%{color: #FF0;}
50% {color: #FB0;}
}