Be sure to read our policy on citing sources before editing!

Difference between revisions of "MediaWiki:Common.css"

From Jiggywikki, a Banjo-Kazooie wiki
Jump to navigationJump to search
wikia:banjokazooie>FANDOMbot
m (Applying changes that should make this CSS file HTTPS-ready. If you have any questions or noticed issues related to this edit, please reach out to us using the Special:Contact page.)
(first attempt at changing something)
Line 1: Line 1:
/***** CSS placed here will be applied to all skins on the entire site. *****/
/* CSS placed here will be applied to all skins */
/* See also: [[MediaWiki:Monobook.css]] */
body.mediawiki {
/* <pre> */
    background:#ffffef;
 
/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect { font-style: italic; }
.watchlistredir { font-style: italic; }
 
/* Giving headers and TOC a little extra space and aligning TOC to right */
h2 {margin-top: 20px;}
 
.toc {
  margin-top: 20px;
  align: right;
}
}
/* Infobox template style */
.infobox {
  border: 1px solid #aaaaaa;
  background-color: #f9f9f9;
  color: black;
  margin-bottom: 0.5em;
  margin-left: 1em;
  padding: 0.2em;
  float: right;
  clear: right;
}
.infobox td,
.infobox th {
  vertical-align: top;
}
.infobox caption {
  font-size: larger;
  margin-left: inherit;
}
.infobox.bordered {
  border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
  border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
  border: 0;
}
/* Forum formatting (by -Algorithm & -Splaka) */
.forumheader {
    border: 1px solid #aaa;
    background-color: #f9f9f9; margin-top: 1em; padding: 12px;
}
.forumlist td.forum_edited a {
    color: black; text-decoration: none
}
.forumlist td.forum_title a {
    padding-left: 20px;
}
.forumlist td.forum_title a.forum_new {
    font-weight: bold; background: url(/images/4/4e/Forum_new.gif)
    center left no-repeat; padding-left: 20px;
}
.forumlist td.forum_title a.forum_new:visited {
    font-weight: normal; background: none; padding-left: 20px;
}
.forumlist th.forum_title {
    padding-left: 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.thumb {
    margin: 2px;
}
div.thumbinner {
    background: inherit;
    border: none;
}
#article div.thumb {
    color:inherit;
}
/* Background to make transparency show up on image description pages. */
#file img {background: url("https://images.wikia.nocookie.net/banjokazooie/images//5/5d/Checker-16x16.png") repeat;}
/* </pre> */
/* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.Boxmerge,
div.NavFrame {
        margin: 0px;
        padding: 4px;
        border: 1px solid #FC0;
        text-align: center;
        border-collapse: collapse;
        font-size: 95%;
}
div.Boxmerge div.NavFrame {
        border-style: none;
        border-style: hidden;
}
div.NavFrame + div.NavFrame {
        border-top-style: none;
        border-top-style: hidden;
}
div.NavPic {
        background-color: #fff;
        margin: 0px;
        padding: 2px;
        float: left;
}
div.NavFrame div.NavHead {
        height: 1.6em;
        font-weight: bold;
        background-color: #C00;
        position:relative;
}
div.NavFrame p {
        font-size: 100%;
}
div.NavFrame div.NavContent {
        font-size: 100%;
}
div.NavFrame div.NavContent p {
        font-size: 100%;
}
div.NavEnd {
        margin: 0px;
        padding: 0px;
        line-height: 1px;
        clear: both;
}
a.NavToggle {
        position:absolute;
        top:0px;
        right:3px;
        font-weight:normal;
        font-size:smaller;
        font-color:#F00;
}
/* poll stuff */
div.ajax-poll { width:auto !important; }
.poll {
      background-color: #FFFAFA !important;
      border: none !important;
      padding:5px 0px 5px 0px !important;
}
.pollAjax {
      background-color: #2525112 !important;
}
.pollAnswerVotes div {
      background-color: #2525112 !important;
      margin-right:10px !important;
}
.poll .ourVote div {
      border:1px solid #CCC !important;
}
span.costitem div {display: inline}
span.costitem p.error {display: none}

Revision as of 00:45, October 15, 2018

/* CSS placed here will be applied to all skins */
body.mediawiki {
    background:#ffffef;
}