MediaWiki:Common.css

From Fallen London Wiki

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/***** CSS placed here will be applied to all skins on the entire site. *****/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect {
   font-style: italic;
}
.allpagesredirect:after {
   color: #808080; content: " (redirect)"
}
.watchlistredir {
   font-style: italic;
}

/* Giving headers and TOC a little extra space */
h2 {
   margin-top: 20px;
}
.toc {
   margin-top: 20px;
}

/* Recent changes byte indicators */
.mw-plusminus-pos {
   color: #006500;
}
.mw-plusminus-neg {
   color: #8B0000;
}

/* Image frame fix */
div.tright, div.tleft {
   border: 1px solid silver;
}

div.thumbinner {
   background: inherit;
   border: none;
   color: inherit;
}
#article div.thumb {
   color:inherit;
}

/* Show coloured borders around images on card/storylet pages */
/* Created by [[User:Mzs]] */
.bronze-framed {
    padding: 9px;
    background: url(/w/images/7/7c/Card-Ongoing.png) 0 no-repeat;
}
.silver-framed {
    padding: 9px;
    background: url(/w/images/1/12/Cardsilver.png) 0 no-repeat;
}
.gold-framed {
    padding: 9px;
    background: url(/w/images/0/0f/Card-Premium.png) 0 no-repeat;
}
.red-framed {
    padding: 9px;
    background: url(/w/images/4/43/Card-Autofire.png) 0 no-repeat;
}
.black-framed {
    padding: 9px;
    background: url(/w/images/5/51/Card-Sinister.png) 0 no-repeat;
}
.white-framed {
    padding: 9px;
    background: url(/w/images/8/8d/Card-Unspecialised.png) 0 no-repeat;
}
.purple-framed {
    padding: 9px;
    background: url(/w/images/0/0b/Card-Fancy.png) 0 no-repeat;
}
.green-framed {
    padding: 9px;
    background: url(/w/images/2/2d/Card-Green.png) 0 no-repeat;
}
.greenliving-framed {
    padding: 9px;
    background: url(/w/images/b/b1/Card-LivingWorld.png) 0 no-repeat;
}
.blue-framed {
    padding: 9px;
    background: url(/w/images/3/33/Card-Blue.png) 0 no-repeat;
}
.blackzee-framed {
    padding: 9px;
    background: url(/w/images/5/59/Card-SinisterZee.png) 0 no-repeat;
}
.lightblue-framed {
    padding: 9px;
    background: url(/w/images/a/af/Card-Onboarding.png) 0 no-repeat;
}
.darkblood-framed {
	padding: 9px;
    background: url(/w/images/5/50/Card-SinisterAlternate.png) 0 no-repeat;
}
.snow-framed {
	padding: 9px;
	background: url(/w/images/7/7a/Card-Snow.png) 0 no-repeat;
}

/* Hide stuff meant for accounts with special permissions. Made visible again in
   [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-templateeditor.css]],
   [[MediaWiki:Group-autoconfirmed.css]], and [[Mediawiki:Group-user.css]].
   Shamelessly stolen from the English Wikipedia; see https://en.wikipedia.org/wiki/MediaWiki:Common.css for attribution*/
.sysop-show,
.templateeditor-show,
.autoconfirmed-show,
.user-show {
	display: none;
}

/* Round 2 corners of small World Quality images, similar to the game */
.il-small-worldquality img {
	border-radius: 0 25% 0 25%;
}
.i-worldquality img {
	border-radius: 0 25% 0 25%;
}