Welcome to the SaGa Wiki! We have moved off Fandom very recently, so things are still being set up around here. Please note that some images did not successfully transfer, and will need to be manually reuploaded or replaced.


Note: Keep in mind that once you have an account, you must wait one day and make 5 edits to become autoconfirmed. This allows you to skip questions while editing, to create new articles, and to upload images.

Difference between revisions of "MediaWiki:Common.css"

From SaGa Wiki
Jump to navigationJump to search
gkProtector Wind (talk)
gkProtector Wind (talk)
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 on the entire site. *****/
 
/* Mark redirects in Special:Allpages and Special:Watchlist */
/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect {
.allpagesredirect {
Line 11: Line 11:
   font-style: italic;
   font-style: italic;
}
}
 
/* Giving headers and TOC a little extra space */
/* Giving headers and TOC a little extra space */
h2 {
h2 {
Line 19: Line 19:
   margin-top: 20px;
   margin-top: 20px;
}
}
 
/* Infobox template style */
/* Infobox template style */
.infobox {
.infobox {
Line 50: Line 50:
   border: 0;
   border: 0;
}
}
 
/* Forum formatting (by -Algorithm & -Splaka) */
/* Forum formatting (by -Algorithm & -Splaka) */
.forumheader {
.forumheader {
Line 77: Line 77:
   padding-left: 20px;
   padding-left: 20px;
}
}
 
/* Recent changes byte indicators */
/* Recent changes byte indicators */
.mw-plusminus-pos {
.mw-plusminus-pos {
Line 85: Line 85:
   color: #8B0000;
   color: #8B0000;
}
}
 
/* Image frame fix */
/* Image frame fix */
div.tright, div.tleft {
div.tright, div.tleft {
   border: 1px solid silver;
   border: 1px solid silver;
}
}
 
div.thumbinner {
div.thumbinner {
   background: inherit;
   background: inherit;
Line 99: Line 99:
   color:inherit;
   color:inherit;
}
}
 
/* === Babel === */
/* === Babel === */
 
div.babelbox {
div.babelbox {
   float: right;
   float: right;
Line 127: Line 127:
   line-height:1.25em;
   line-height:1.25em;
}
}
 
.lang-block0 {
.lang-block0 {
   border:1px solid #FFB3B3;
   border:1px solid #FFB3B3;
Line 139: Line 139:
   color: black;
   color: black;
}
}
 
.lang-block1,  .lang-block2, .lang-block3  {
.lang-block1,  .lang-block2, .lang-block3  {
   border:1px solid #99B3FF;
   border:1px solid #99B3FF;
Line 151: Line 151:
   color: black;
   color: black;
}
}
 
.lang-blockN {
.lang-blockN {
   border:1px solid #6EF7A7;
   border:1px solid #6EF7A7;
Line 163: Line 163:
   color: black;
   color: black;
}
}
table.collapsed tr.collapsible {
table.collapsed tr.collapsible {
         display: none;
         display: none;
}
}
   
   
.collapseButton {                /* 'show'/'hide' buttons created dynamically by the              */
.collapseButton {                 
         float: right;              /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
         float: right;               
         font-weight: normal;        /* are styled here so they can be customised.              */
         font-weight: normal;         
         text-align: right;
         text-align: right;
         width: auto;
         width: auto;
}
/* === default skin for navigation boxes === */
table.navbox {
    border: 1px solid #aaa;
    margin: 1em 0em 0em;
    padding: 2px;
}
table.navbox th {
    background-color: honeydew;
    color:black;
    padding-left: 1em;
    padding-right: 1em;
}
table.navbox tr:not(:first-child) th {
}
@media print {
    .navbox {
        display: none;
    }
}
/* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.Boxmerge,
div.NavFrame {
        margin: 0px;
        padding: 4px;
        border: 1px solid #aaa;
        border-collapse: collapse;
}
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;
        color:black;
        margin: 0px;
        padding: 2px;
        float: left;
}
div.NavFrame div.NavHead {
        height: 1.6em;
        position:relative;
}
div.NavFrame p {
}
div.NavFrame div.NavContent {
}
div.NavFrame div.NavContent p {
}
div.NavEnd {
        margin: 0px;
        padding: 0px;
        line-height: 1px;
        clear: both;
}
a.NavToggle {
        position:absolute;
        top:0px;
        right:3px;
}
}

Revision as of 15:31, September 17, 2011

/***** CSS placed here will be applied to all skins on the entire site. *****/
 
/* 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;
}
 
/* 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;
   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.thumbinner {
   background: inherit;
   border: none;
   color: inherit;
}
#article div.thumb {
   color:inherit;
}
 
/* === Babel === */
 
div.babelbox {
   float: right;
   margin-left: 1em;
   margin-bottom: 0.5em;
   width: 246px;
   border: 1px solid #99B3FF;
   padding: 2px 0 2px 0;
}
.lang-blockN, .lang-block0, .lang-block1, .lang-block2, .lang-block3 {
   margin: 2px 4px 2px 4px; /* t, l, b, r */
   width:238px;
   border-collapse: collapse;
}
td.lang-codeN, td.lang-code0, td.lang-code1, td.lang-code2, td.lang-code3 {
   text-align:center;
   font-size:14pt;
   width:45px;
   height:45px;
}
td.lang-descriptionN, td.lang-description0, td.lang-description1,
td.lang-description2, td.lang-description3 {
  font-size:8pt;
  padding:4pt;
  line-height:1.25em;
}
 
.lang-block0 {
   border:1px solid #FFB3B3;
}
td.lang-code0 {
  background-color: #FFB3B3;
  color: black;
}
td.lang-description0 {
  background-color: #FFE0E8;
  color: black;
}
 
.lang-block1,  .lang-block2, .lang-block3  {
   border:1px solid #99B3FF;
}
td.lang-code1, td.lang-code2, td.lang-code3 {
  background-color: #99B3FF;
  color: black;
}
td.lang-description1,  td.lang-description2, td.lang-description3 {
  background-color: #E0E8FF;
  color: black;
}
 
.lang-blockN {
   border:1px solid #6EF7A7;
}
td.lang-codeN {
  background-color: #6EF7A7;
  color: black;
}
td.lang-descriptionN {
  background-color: #C5FCDC;
  color: black;
}
 
table.collapsed tr.collapsible {
        display: none;
}
 
.collapseButton {                
        float: right;               
        font-weight: normal;        
        text-align: right;
        width: auto;
}