Notice: We are aware that many of the Chewiki’s images are still broken. We promise: we will try our best to fix it, but we don't guarantee that the fix will be trivial.

Difference between revisions of "MediaWiki:Common.css"

From Chewiki Archive - YouChew: 1% Funny, 99% Hot Gas
m
(so our tables don't look like crap anymore)
Line 57: Line 57:
 
padding: 5px;
 
padding: 5px;
 
font-size: 95%;
 
font-size: 95%;
 +
}
 +
 +
/*
 +
**    Make tables look nicer.
 +
*/
 +
 +
#content>table { /* Make sure it only affects tables in page content. */
 +
font-size: 100%;
 +
color: #ffffff;
 +
border: 1px solid #333;
 +
border-radius: 5px;
 +
padding: 5px;
 +
}
 +
th {
 +
    background: #f0f0f0;
 +
    border: none;
 +
    border-radius: 5px;
 +
    padding: 5px;
 +
 +
}
 +
td {
 +
    border: none;
 +
    border-radius: 5px;
 +
    padding: 5px;
 
}
 
}

Revision as of 08:56, 11 November 2012

/* CSS placed here will be applied to all skins */

/*----------------------------*/
/* HIGHLIGHTED USERNAMES LIST */
/*----------------------------*/
/*
------------
INSTRUCTIONS
------------

The order that names appear on this list determine which title takes precedence.  
A user will be marked by the last entry in this list, no matter how many entries they have.  
 
A user will be marked with the last designation on this list that they are:

* Adminstrator/Sysop
* Chewiki Staff

Believe it or not, this stuff is from the Call of Duty Wiki. Therefore, credit goes out to them.
*/


/* Sysops */
 
a[title="User:AbsoluteBillion"],
a[title="User:AkaPella"],
a[title="User:Crazy Luigi"],
a[title="User:Dopply"], 
a[title="User:Intermission"], 
a[title="User:NinjaCoachZ"],
a[title="User:RabbitSnore"],
a[title="User:Stegblob"], 
a[title="User:The Electric Cheese"], 
a[title="User:TheFXexpert"], 
a[title="User:Thereisnospork303"] { color:#1B7DBF !important;}

/* Chewiki Staff */

a[title="User:DoomZappo"],
a[title="User:Kingplatypus3rd"],
a[title="User:Probo"],
a[title="User:Sonic"],
a[title="User:Triple sSs"],
a[title="User:TrueTubePoops"],
a[title="User:YTPnews1.MustangSally72"],
a[title="User:Yoshit"] { color:#770FBF !important;}

/* 
**    A universal box class for templates since the new toc class in the new skin will break most templates. 
**    Also, it is more intuitive for template creators.
*/

.box {
color: #000000;
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 5px;
font-size: 95%;
}

/*
**    Make tables look nicer.
*/

#content>table { /* Make sure it only affects tables in page content. */
	font-size: 100%;
	color: #ffffff;
	border: 1px solid #333;
	border-radius: 5px;
	padding: 5px;
}
th {
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    padding: 5px;

}
td {
    border: none;
    border-radius: 5px;
    padding: 5px;
}