Monaco files/deadfrontier

From the group that combats the Wikia skin, the Anti-Wikia alliance.
Jump to: navigation, search
/*
This is the CSS skin for the custom "Monaco" skin and acts as prioritized overlay for the default Monaco theme.
 
 
''This CSS file and its CSS rules are seperated into 4 parts:''
 
* '''Global Monaco Rules:'''	Styles which apply on all or multiple pages of the Monaco skin but are not part of the basic skin. (Ordered by rule rank and alphabetically)
* '''Skin Style Rules:'''		Styles which make up the Monaco skin and can be found at all pages of this wiki. (Ordered from left top to right bottom)
* '''Page Specific Rules:'''	Styles which are used only on certain important pages of this wiki. (Ordered by Page Name)
* '''Experimental Rules:'''		Styles which are not yet finished or fully working but have been partially implemented. (Unordered)
 
 
All CSS Rules have a short description directly after the closing tag for better orientation and understanding of each rule and its use. Only the necessary minimum of CSS rules is to be used to save computation power and keep the code clean. "!important" Tags are to be used only if required for a style to work.
 
 
---- */
 
 
/* --- Global Monaco Rules --- */
 
a.wikia-button,
a.wikia-button:visited,
span.wikia-button a,
span.wikia-button a:visited,
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
 background-color: #640000;
 background-image: -moz-linear-gradient(top, #640000 25%, #320000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#640000), to(#320000));
 border-color: #643232;
 color: #E1E1E1;
 -moz-box-shadow: 0 0 0 1px #000000;
 -webkit-box-shadow: 0 1px 0 #000000, 0 -1px 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000;
}				/* Button - Default Style */
 
a.wikia-button:link {
 color: #E1E1E1;
}				/* Button - Link Color Overlay */
 
a.wikia-button:hover,
span.wikia-button a:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
 background-color: #7D0000;
 background-image: -moz-linear-gradient(top, #7D0000 25%, #4B0000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#7D0000), to(#4B0000));
 color: #FFFFFF;
 border-color: #7D4B4B;
}				/* Button - Hover Style */
 
a.wikia-button:active,
span.wikia-button a:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
button:active {
 background-color: #4B0000;
 background-image: -moz-linear-gradient(top, #4B0000 25%, #190000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#4B0000), to(#190000));
 color: #969696;
 border-color: #4B1919;
}				/* Button - Active Style */
 
a.wikia-button,
span.wikia-button a,
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
 filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#FF640000", EndColorStr="#FF320000");
 outline: 1px solid #643232\9;
}				/* Button - Internet Explorer Style */
 
 
body {
 min-width: 990px;
}				/* Page Minimum Width */
 
body.mainpage {
 min-width: 1100px;
}				/* Main Page Minimum Width */
 
 
body input {
 background-color: #0A0A0A;
 color: #646464;
 border: 1px solid #323232;
}				/* Input Field Style */
 
body input:focus {
 color: #969696;
}				/* Input Field Style (Focus) */
 
 
code {
 background-color: #202020;
 color: #C8C8C8;
}				/* Code Style */
 
 
fieldset {
 border: 1px solid #640000;
}				/* Input Field Border Style */
 
 
 
 
 
 
pre {
 background-color: #0A0A0A;
 color: #969696;
 border: 1px dashed #960000;
 display: block;
 overflow: auto;
}				/* Pre-formatted Text Box Style */
 
 
select {
 background-color: #0A0A0A;
 color: #969696;
 border: 1px #AFAFAF;
}				/* Dropdown Menu Style */
 
select:active {
 color: #4B4B4B;
}				/* Dropdown Menu Text Style */
 
 
textarea {
 background-color: #0A0A0A;
 color: #646464;
 border: 1px solid #323232;
}				/* Text Field Style */
 
textarea:focus {
 color: #969696;
}				/* Text Field Style (Focus) */
 
 
ul { 
 list-style-image: url("http://images.wikia.com/deadfrontier/images/1/13/Grey_Bullet.png");
}				/* List Icon - Default */
 
ul li:hover {
 list-style-image: url("http://images.wikia.com/deadfrontier/images/0/00/Red_Bullet.png");
}				/* List Icon - Hover */
 
#toc ul,			/* Excludes inactive bullets from Table of Contents */
#toc ul li:hover,		/* Excludes active bullets from Table of Contents */
#page_controls li,		/* Excludes active bullets from Page Controls */
#user_masthead li,		/* Excludes active bullets from the User Page Navigation */
#page_tabs li,			/* Excludes active bullets from Page Tabs */
#wpGoRegister,			/* Excludes active bullets from Login Tabs */
#widget_1_content li,
#widget_2_content li,
#widget_3_content li,
#widget_4_content li,
#widget_5_content li,
#widget_6_content li,
#widget_7_content li,
#widget_8_content li,
#widget_9_content li,
#widget_10_content li,		/* Excludes active bullets from Widget Links */
#myhome-hot-spots li:hover,	/* Excludes active bullets from My Home Hot Spots */
.wikia-tabs ul li {		/* Excludes active bullets from My Home Tabs */
 list-style-image: none;
}
 
 
 
/*** Main Colors ***/
 
.color1 {
 background-color: #000000;
 color: #E1E1E1;
}				/* Page Bar / Search Box / Widget Top Background */
 
.color1 a {
 color: #C8C8C8;
}				/* Page Bar Font Color	*/
 
.color2 {
 background-color: #000000;
}				/* Main Page & Toolbox Background Color */
 
 
 
/*** Internal Link Style ***/
 
a:link {
 color: #960000;
}				/* Default Link Color */
 
a:visited {
 color: #640000;
}				/* Visited Link Color */
 
a:hover {
 color: #C80000;
}				/* Hover Link Color */
 
 
 
/*** Image Gallery Style ***/
 
a,table.gallery td a,div.thumbinner a {
 color: #960000;
}				/* Gallery - Default Link Color */
 
a:visited,table.gallery td a:visited {
 color: #640000;
}				/* Gallery - Visited Link Color */
 
a.new {
 color: #C80000 !important;
}				/* Gallery - New Link Color */
 
 
 
 
/* --- Skin Style Rules --- */
 
/*** Header ***/
 
#wikia_header {
 background: url(http://images.wikia.com/deadfrontier/images/8/87/Banner.png) no-repeat;
 border: none;
 height: 250px;
}				/* Main Banner */
 
 
#background_strip {
 background-color: #000000;
 border-bottom: 1px solid #000000;
 height: 0px;
}				/* Main Banner Background */
 
 
#wikia_logo {
 background-image: url(http://images.wikia.com/deadfrontier/images/4/41/Wikia_Logo.png);
 width: 87px !important;
 height: 28px !important;
}				/* Wikia Logo Image */
 
 
#wikia_header #headerButtonHub {
 background-image: -moz-linear-gradient(top, #323232 25%, #000000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#323232), to(#00000));
 border: 1px solid #191919;
}				/* Hub Button Style */
 
#headerMenuHub {
 background: url(http://images.wikia.com/deadfrontier/images/0/09/Menu_Background.png);
 border: 1px solid #323232;
 -moz-border-radius-bottomleft: 30px;
 -moz-border-radius-bottomright: 30px;
}				/* Hub Menu Style */
 
.headerMenu a {
 background-color: transparent !important;
}				/* Hub Menu Font Transparency */
 
 
#userData span a, #wikiaBranding a {
 color: #E1E1E1;
 font-weight: bold;
}				/* User Page Links Style */
 
#userData #header_username a {
 color: #C80000;
 text-shadow: #000000 1px 1px 1px;
}				/* Username Style */
 
 
.header-button {
 background-color: #640000;
 background-image: -moz-linear-gradient(top, #640000 25%, #320000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#640000), to(#320000));
 border-color: #643232;
 -moz-border-radius: 10px;
 color: #E1E1E1;
}				/* User Pages Button - Default Style */
 
.header-button:hover {
 background-color: #7D0000;
 background-image: -moz-linear-gradient(top, #7D0000 25%, #4B0000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#7D0000), to(#4B0000));
 color: #FFFFFF;
 border-color: #7D4B4B;
 -moz-border-radius: 10px;
}				/* User Pages Button - Hover Style */
 
.header-button:active {
 background-color: #4B0000;
 background-image: -moz-linear-gradient(top, #4B0000 25%, #190000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#4B0000), to(#190000));
 color: #969696;
 border-color: #4B1919;
 -moz-border-radius: 10px;
}				/* User Pages Button - Active Style */
 
 
#wiki_logo {
 display: none;
}				/* Hides Wiki Logo */
 
#widget_sidebar {
 top: 0;
}				/* Removes Widget top space */
 
#wikia_page {
 top: 0;
}				/* Removes Page top space */
 
 
 
 
 
.star-rating, .star-rating a:hover, .star-rating .current-rating {
 background-image: url(http://trac.wikia-code.com/export/19974/wikia/trunk/skins/monaco/images/monaco-sprite.png)
}				/* Turn Rating Hearts into Rating Stars */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/***********************/
/***** MAIN DESIGN *****/
/***********************/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************/
/***** SIDEBAR DESIGN *****/
/**************************/
 
 
/*** Search Box ***/
 
#search_box, .sidebar .widget .widget_title {
 height: 20px;
 font-weight: bold;
 font-family: Arial, sans-serif;
 font-size: 10pt;
}				/* Widget Title / Search Box Style & Background */
 
#searchform {
 background-image: url(http://images.wikia.com/deadfrontier/images/4/41/Searchbox_Overlay.png);
 background-color: transparent;
 border: none;
 margin-left: -5px;
}				/* Widget-Top background overlay for the Search Box */
 
#search_field {
 -moz-border-radius: 5px 5px 5px 5px;
 background-color: #0A0A0A;
 border: 1px solid #461E00;
 color: #646464;
 width: 155px;
 height: 18px;
 margin-top: 5px;
 margin-left: 25px;
}
 
#search_field.field_active  {
 color: #969696;
}
 
.autocomplete div {
 background-color: #0A0A0A;
 color: #969696;
}
 
 
#search-button {
 background-image: url(http://images.wikia.com/deadfrontier/images/2/29/Search_Button.png) !important;
 background-color: transparent !important;
 background-repeat: no-repeat;
 width: 25px !important;
 height: 25px !important;
 border: none;
 padding-right: 10px;
}				/* Custom Search Button Image */ /* Wikia Cache Lag */
 
.sprite.search {
 background-position: 0 !important;
}				/* Search Button Position Fix */
 
 
 
/*** Navigation ***/
 
#navigation {
 background: transparent;
 margin-top: 34px;
 margin-bottom: 36px;
 margin-left: 38px;
 margin-right: 40px;
}				/* Navigation Menu Style */
 
#navigation .menu-item {
 background-color: transparent;
 border-color: transparent;
}				/* Navigation Menu Item Style */
 
#navigation .sub-menu .menu-item {
 background-color: #DC9646;
 opacity: 0.95;
 border-color: #5A2300;
}				/* Navigation Sub-Menu Style */
 
#navigation .Monaco-sidebar_edit {
 text-align: center;
}				/* Navigation Sidebar Edit Link */
 
#navigation a {
 color: #5A2300;
}				/* Navigation Menu Text Style */
 
#navigation a:hover, .navigation-hover {
 background-image: url(http://images.wikia.com/deadfrontier/images/2/2a/Navigation_Overlay.png);
}				/* Navigation Hover Color */
 
#navigation_widget, .sidebar .widget {
 background: url(http://images.wikia.com/deadfrontier/images/9/90/Navigation_Background.png) no-repeat left top;
 color: #5A2300;
 border-style: none;
 padding: 0 !important;
 margin-left: -5px;
 margin-right: -5px;
}				/* Navigation Background Image */
 
 
 
/*** Toolbox ***/
 
#link_box {
 font-size: 80%;
}				/* Reduces the Toolbox font size */
 
#link_box, .widgetToolbox .widget_end {
 background: transparent !important;
}				/* Insert Spacer image to prevent Widget-Bottom from appearing at the Toolbox */
 
#link_box_dynamic {
 display: none;
}				/* Removes the "Create a new article" & "Upload a new image" buttons */
 
#link_box_table a {
 text-align: center;
}
 
 
 
/*** Widgets ***/
 
.widget {
 border-color: transparent;
 background-color: transparent;
}				/* Navigation Sub-Menu Border Transparency */
 
#widget, .sidebar .widget {
 background: url(http://images.wikia.com/deadfrontier/images/3/35/Widget_Tile.png) repeat-y center;
 color: #E1E1E1;
}				/* Widget Center Skinning */
 
#link_box, .sidebar .widget .widget_contents {
 background: url(http://images.wikia.com/deadfrontier/images/4/4a/Widget_Bottom.png) no-repeat bottom;
 padding: 0 10px 10px 6px;
}				/* Widget Bottom Skinning */
 
.sidebar .widget .widget_title {
 background: url(http://images.wikia.com/deadfrontier/images/4/41/Widget_Top.png) no-repeat;
 color: #AF9B6D;
 text-align: center;
}				/* Centers Widget Titles */ 
 
.widgetToolbox {
 position: absolute;
 margin-top: 1px;
 margin-left: -35px;
}				/* Widget Preferences / Removal Button Positioning */ 
 
#widget_1_content ul,
#widget_2_content ul,
#widget_3_content ul,
#widget_4_content ul,
#widget_5_content ul,
#widget_6_content ul,
#widget_7_content ul,
#widget_8_content ul,
#widget_9_content ul,
#widget_10_content ul {
 padding-left: 6px;
}				/* Widget Content Positioning */
 
.widgetMore {
 font-size: 7pt;
}				/* "More" Link Font Size */
 
 
 
/*** Latest Activity ***/ 
 
.WidgetCommunity .community_header {
 background: transparent;
 color: #E1E1E1;
 border-bottom: none;
}
 
.WidgetCommunity .article_count {
 color: #E1E1E1;
 font-size: 10pt;
}
 
.WidgetCommunity .toolbar {
 background: transparent;
 border-top: none;
}
 
.WidgetCommunity li strong {
 font-size: 10pt;
 font-weight: bold;
}
 
 
 
/*** HEADER AND FOOTER ***/
 
 
 
 
.headerMenuButton dt,.headerMenuButton dd {
 background-image: url(http://images.wikia.com/deadfrontier/images/3/31/Monaco_Header_Button.png);
 color: #C8C8C8;
}				/* Dropdown Menu Button Image */
 
.headerMenu, .headerMenu a {
	background-color: #000000;
	color: #E1E1E1;
	-moz-opacity: .95;
	opacity: .95;
}	/*	background-color = Header Menu Background Color
		color = ?
		-moz-opacity = Mozilla Transparency Opacity in %
		opacity = Transparency Opacity in %	*/
 
 
#headerMenuUser {
 background: url(http://images2.wikia.nocookie.net/deadfrontier/images/0/09/Menu_Background.png);
 border: 1px solid #323232;
 -moz-border-radius-bottomleft: 20px;
 -moz-border-radius-bottomright: 20px;
}				/* "More" Dropdown Menu Style */
 
#headerMenuUser a {
 background: transparent;
 color: #C8C8C8 !important;
}				/* "More" Dropdown Menu Font Style */
 
 
 
 
#toc,
.toc,
#catlinks,
#userloginForm form,
.forumheader,
ul#filetoc
{
 color: #960000 !important;
 background-color: #0A0000 !important;
 border: 1px solid #640000 !important;
}						/* Recolors Category Bar & Table of Content Boxes */
 
 
 
 
/*** PAGE ***/
 
 
 
 
 
 
 
#edit_enhancements_toolbar {
 background-color: #320000;
 border: 1px solid #960000;
}						/* Editing Toolbar Style */
 
#edit_enhancements_toolbar li {
 color: #E1E1E1;
}
 
 
 
.editsection-upper {
 display:none;
}						/* Removes "Add to this page" button */
 
 
 
 
 
body {
	color: #E1E1E1;
}	/*	color = Main Page Font Color	*/
 
 
#wikia_page {
	background-color: #000000;
	border: 1px solid #E10000;
}	/*	background-color = Main Page Font and Inner Border Color
		border = Main Page Outer Border in Pixel	*/
 
 
#article {
	background-color: #000000;
	margin: 0 0 0 0;
	min-height: 0px;
}	/*	background-color = Article Background
		margin = ? in Pixel
		min-height = Minimum Article Page Height	*/
 
#articleFooter {
	background-color: #000000;
	margin: -2px 2px 2px;
}	/*	background-color = Article Footer Background Color
		margin = ? in Pixel	*/
 
 
#articleFooter strong {
	color: #E1E1E1;
}	/*	color = Article Footer Font Color	*/
 
 
 
 
 
#page_bar {
 background-image: -moz-linear-gradient(top, #640000, #000000);
 background-image: -webkit-gradient(linear, from(#640000), to(#000000));
 font-family: "Calibri", Helvetica, Arial;
 margin: 0px;
}				/* Page Bar Style */
 
#page_controls a,
body.masthead-regular #page_controls a,
body.masthead-special #page_controls a {
 color: #C8C8C8;
}				/* Page Controls Style */
 
 
 
 
 
 
 
#page_tabs li {
 -moz-border-radius-topleft: 10px;
 -moz-border-radius-topright: 10px;
}				/* Page Tab Style */
 
#page_tabs li {
 background: #320000;
 background-image: -moz-linear-gradient(top, #640000, #000000);
 background-image: -webkit-gradient(linear, from(#640000), to(#000000));
 color: #C8C8C8;
 border: 1px solid #960000;
 border-width: 1px 1px 0;
 position: relative;
 top: 0px;
}				/* background = Inactive Tab Background
   border = Inactive Tab Border in Pixel
   border-bottom = Inactive Tab Bottom Border in Pixel
   position = ?
   top = Extra Top Margin in Pixel */
 
 
#page_tabs li:hover {
 background: #640000;
 background-image: -moz-linear-gradient(top, #960000, #000000);
 background-image: -webkit-gradient(linear, from(#960000), to(#000000));
}
/* background = Inactive Tab Hover Color */
 
 
#page_tabs li.selected {
 background: #000000;
 border: 1px solid #960000;
 border-bottom: 1px solid #000000 !important;
 color: #C8C8C8;
}
/* background = Active Tab Background
   border = Active Tab Border in Pixel
   border-bottom = Inactive Tab Bottom Border in Pixel
   color = Active Tab Font Color */
 
 
#page_tabs li.selected a {
 background: #000000;
 color: #C8C8C8;
}
/* background = Active Tab Background
   color = Active Tab Font Color */
 
#page_tabs a {
 color: #C8C8C8;
}				/* Inactive Page Tab Style */
 
 
 
 
 
 
 
#bodyContent a.external, #bodyContent a.extiw {
    color: #7D7D7D;
}	/*	 color = External Link Color	*/
 
 
#bodyContent a.external:visited, #bodyContent a.extiw:visited {
    color: #646464;
}	/*	color = External Visited Link Color	*/
 
 
#bodyContent a.external,
#bodyContent a[href ^="gopher://"] {
 background-image: url(http://images.wikia.com/deadfrontier/images/4/44/External.png);
 background-position: right center;
}			/* External Link Icon */
 
#bodyContent a.external[href$=".ogg"],
#bodyContent a.external[href$=".OGG"],
#bodyContent a.external[href$=".mid"],
#bodyContent a.external[href$=".MID"],
#bodyContent a.external[href$=".midi"],
#bodyContent a.external[href$=".MIDI"],
#bodyContent a.external[href$=".mp3"],
#bodyContent a.external[href$=".MP3"],
#bodyContent a.external[href$=".wav"],
#bodyContent a.external[href$=".WAV"],
#bodyContent a.external[href$=".wma"],
#bodyContent a.external[href$=".WMA"],
.link-audio {
 background-image: url(http://images.wikia.com/deadfrontier/images/7/72/Audio.png);
}
 
 
 
 
/*** History ***/
 
#pagehistory li {
 background-color: #0A0A0A;
 border: 1px solid #323232;
 margin-bottom: -1px;
 padding: 0 2px 2px;
}				/* History Table */
 
#pagehistory li.selected {
 background-color: #190000;
 border: 1px solid #960000;
 color: #AFAFAF;
}				/* Selected Lines */
 
 
 
 
 
/*** History Comparison ***/
 
table.diff {
 background: #000000;
}				/* Table Background */
 
table.diff td {
 background-color: #0A0A0A;
}				/* Empty Lines */
 
table.diff td div {
 background-color: #191919;
}				/* Changed Lines */
 
td.diff-deletedline {
 background-color: #190000 !important;
}				/* Deleted Lines */
 
td.diff-addedline {
 background-color: #001900 !important;
}				/* Added Lines */
 
 
 
 
/*** Thumbnails ***/
 
html .thumbimage {
 border: none;
}				/* Thumbnail Image Border */
 
 
/*** Messages ***/
 
.editsimilar a {
	color: #C80000;
}
 
 
 
 
/*** USER MASTHEAD ***/
 
#user_masthead {
 background-color: #000000;
 background-image: -moz-linear-gradient(top, #640000, #000000);
 background-image: -webkit-gradient(linear, from(#640000), to(#000000));
}				/* User Masthead Background */
 
 
#user_masthead h2 {
 color: #E10000;
}				/* User Name and Joining Date. */
 
 
#user_masthead_scorecard {
 color: #C80000;
}				/* User Edit Counter */
 
 
#user_masthead ul.nav_links li,
#user_masthead ul.nav_links li a {
 background-color: #640000;
 color: #AFAFAF;
 -moz-border-radius-topright: 15px;
 -moz-border-radius-topleft: 15px;
 padding: 5px 3px;
 margin: 0 2px;
}				/* Inactive Tab Style */
 
#user_masthead ul.nav_links li:hover,
#user_masthead ul.nav_links li a:hover {
 background-color: #7D0000;
 color: #C8C8C8;
}				/* Inactive Tab Style (Hover) */
 
#user_masthead ul.nav_links li.selected,
#user_masthead ul.nav_links li.selected a {
 background-color: #960000;
 color: #E1E1E1;
 border: none;
 -moz-border-radius-topright: 15px;
 -moz-border-radius-topleft: 15px;
 padding: 5px 3px;
}				/* Active Tab Style */
 
 
body.masthead-regular #page_bar,
body.masthead-special #page_bar {
 background-color: #190000;
 color: #C8C8C8;
 border: 1px 0;
 border-color: #960000;
}				/* Masthead Page Bar Style */
 
 
body.masthead-regular #page_bar #control_edit,
body.masthead-regular #page_bar #control_addsection,
body.masthead-regular #page_bar #control_history,
body.masthead-regular #page_bar #control_delete,
body.masthead-regular #page_bar #control_move,
body.masthead-regular #page_bar #control_protect,
body.masthead-regular #page_bar #control_watch {
 vertical-align: middle;
}				/* Page Controls Positioning */
 
 
 
 
/*** PREFERENCES ***/
 
#preferences {
	background-color: #101010;
	border-color: #404040;
	color: #FFFFFF;
	position: relative;
	top: -3px
}	/*	background-color = Preferences Button Background Color
		border-color = Preferences Button Border Color
		color = Preferences Font Color
		position = ?
		top = ? in Pixel	*/
 
 
.prefsection table, .prefsection legend {
	background-color: #101010;
	color: #FFFFFF;
}	/*	background-color = Preferences Table Background Color
		color = Preferences Table Font Color	*/
 
 
div.prefsectiontip {
	color: #969696;
	font-size: 80%;
}	/*	color = ?
		font-size = ? in %	*/
 
 
#preftoc li {
	background-color: #151515;
	border-color: #404040;
	margin-left: 0px !important;
	margin-right: 3px !important;
}	/*	border-color = Preferences TOC Border Color
		background-color = Preferences TOC Background Color
		margin-left = Left Preferences TOC Border Space in Pixel
		margin-right = Right Preferences TOC Border Space in Pixel	*/
 
 
#preftoc li:hover {
	background-color: #300000;
	cursor: pointer;
}	/*	background-color = Preferences TOC Hover Color
		cursor = Forced TOC Hover Cursor Swap	*/
 
 
#preftoc li.selected {
	background-color: #202020;
	border-color: #404040;
	padding-top: 4px;
	top: -1px;
}	/*	background-color = Active Preferences TOC Tab Background Color
		border-color = Active Preferences TOC Tab Border Color
		padding-top = Active Preferences TOC Tab Top Padding in Pixel
		top = ? in Pixel	*/
 
 
#preftoc li a {
	color: #969696;
}	/*	color = Preferences TOC Tab Font Color	*/
 
 
#preftoc li a:active {
	color: #C8C8C8;
}	/*	color = Active Preferences TOC Tab Font Color	*/
 
 
 
/*** GALLERY ***/
 
/*
table.gallery {
	background-color:#333;
	border:none;
}
 
 
	table.gallery td {
	background-color:#333;
	border:none;
	color:#FFF;
}
 
 
div.gallerybox {
	border-color:#606060;
}
 
 
div.gallerybox div.thumb {
	background-color:#1f1f1f;
	border:1px solid #777;
}
 
 
div.gallerybox div.thumb:hover,div.gallerybox div.thumb div:hover {
	background-color:#2a2a2a;
}
*/
 
 
 
 
 
 
 
 
/*** THUMB ***/
 
div.thumb div {
	color: #E1E1E1;
}				/* Thumbnail Box Style */
 
div.thumb div a img {
}				/* Thumbnail Box Style */
 
.thumbimage {
 background-color: none;
}				/* Thumbnail Image Style */
 
 
 
 
 
 
#catlinks,
#toc {
 -moz-border-radius: 25px 25px 25px 25px;
}				/* Category Box / Table of Contents Style */ /* Wikia Cache Lag */
 
#catlinks {
 padding-top: -5px !important;
 padding-bottom: -5px !important;
 padding-left: 15px;
 margin-top: 5px !important;
} /* Wikia Cache Lag */
 
 
#wikia_footer {
 color: #E10000;
}				/* color = Footer Background Color */
 
#wikia_corporate_footer {
 border-top: none;
 position: static;
}				/* Remove Top Border of the bottom Wikia links */
 
#wikia_footer,
#monaco_footer {
 color: #960000; 
 top: 1px;
}				/* Positioning Fix for the Wikia Footer */
 
 
 
 
 
/* === Page Specific Rules === */
 
/*** ([[Main Page]]) **/
 
.mainpage .firstHeading {
 display: none;
}				/* Removes Main Page Header */
 
 
 
/*** ([[Special:ListFiles|File List]]) ***/
 
.TablePager th {
 background-color: #191919;
 background-image: -moz-linear-gradient(top, #000000, #323232);
 background-image: -webkit-gradient(linear, 0% 100%, 0% 100%, from(#000000), to(#323232));
 color: #E1E1E1;
 border-color: #191919;
}				/* File List Top Style */
 
.TablePager td {
 background-color: #0A0A0A;
 color: #E1E1E1;
 border-color: #191919;
}				/* File List Style */
 
.TablePager tr:hover td {
 background-color: #190000;
 color: #AFAFAF;
}				/* File List Style (Hover) */
 
 
.TablePager_sort {
 background-position: 0;
}				/* Removing obsolete Padding */
 
 
 
/*** ([[Special:MyHome|My Home]]) ***/
 
.dark_text_1,
.dark_text_2 {
 color: #C80000;
}				/* Header and Edit Change Details Style */
 
 
.wikia-tabs li {
 background-color: #7D0000;
 background-image: -moz-linear-gradient(top, #190000, #7D0000);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 0%, from(#7D0000), to(#190000));
 border-color: #190000;
 border-width: 1px 1px 0;
 -moz-border-radius-topleft: 15px;
 -moz-border-radius-topright: 15px;
 padding: 5px 3px 0;
 margin: 0 2px;
}				/* Inactive Tab Style */
 
.wikia-tabs li:hover {
 background-color: #AF0000;
 background-image: -moz-linear-gradient(top, #190000, #AF0000);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 0%, from(#AF0000), to(#190000));
 border-color: #190000;
}				/* Inactive Tab Style (Hover) */
 
.wikia-tabs li a {
 color: #969696;
}				/* Inactive Tab Font Style */
 
.wikia-tabs li a:hover {
 color: #C8C8C8;
}				/* Inactive Tab Font Style (Hover) */
 
 
.wikia-tabs .selected {
 background-color: #C80000;
 background-image: -moz-linear-gradient(top, #190000, #C80000);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 0%, from(#C80000), to(#190000));
 color: #E1E1E1;
 border-color: #190000;
 border-width: 1px 1px 0;
 -moz-border-radius-topleft: 15px;
 -moz-border-radius-topright: 15px;
 padding: 5px 3px 0;
}				/* Active Tab Style */
 
 
.wikia-tabs ul {
 border-bottom: 1px solid #C80000;
}				/* Tab Bottom Border */
 
 
.activityfeed-inserted-media li {
 border: 1px solid #191919;
 list-style-image: none !important;
}				/* MyHome - Uploaded Image Style */
 
 
 
/*** ([[Special:NewPages|New Pages]]) ***/
 
.not-patrolled  {
 background-color: #0A0A0A;
 border: 1px solid #323232;
 margin-bottom: -1px;
 padding: 0 2px 2px;
}
 
 
 
/*** ([[Special:RecentChanges|Recent Changes]]) ***/
 
.mw-arr-r {
 background-image: url(http://images.wikia.com//deadfrontier/images/5/5f/Arrow_Right.png);
}				/* No Details Arrow Image */
 
.mw-arr-d, .mw-sort-desc {
 background-image: url(http://images.wikia.com/deadfrontier/images/7/73/Arrow_Down.png);
}				/* Details Arrow Image */
 
 
.mw-plusminus-pos {
 color: #009600;
}				/* Positive Page Size Change Color */
 
.mw-plusminus-neg {
 color: #960000;
}				/* Negative Page Size Change Color */
 
.mw-plusminus-null {
 color: #969696;
}				/* No Page Size Change Color */
 
 
.newpage {
 color: #00C800;
}				/* New Page Style */
 
.minor {
 color: #969696;
}				/* Minor Edit Style */
 
 
 
/*** ([[Special:Search|Search]]) ***/
 
ul.mw-search-results {
 list-style-image: url("http://images.wikia.com/deadfrontier/images/1/13/Grey_Bullet.png");
}				/* Display inactive Bullets at Search Results */
 
.mw-search-results li {
 list-style: inherit;
}				/* Default Bullet behaviour */
 
 
 
/*** ([[Special:SpecialPages|Special Pages]]) ***/
 
h4.mw-specialpagesgroup {
 background-image: -moz-linear-gradient(top, #640000 25%, #320000 75%);
 background-image: -webkit-gradient(linear, 0% 25%, 0% 75%, from(#640000), to(#320000));
 border-top: 1px solid #960000;
 border-bottom: 1px solid #190000;
}				/* Header Background Color */
 
h4.mw-specialpagesgroup {
 color: #C8C8C8;
}				/* Header Font Color*/
 
 
 
 
/* === Experimental Rules === */
 
a.wikia-button.secondary,
a.wikia-button.secondary:visited,
span.wikia-button.secondary a,
span.wikia-button.secondary a:visited,
input[type="submit"].secondary,
input[type="reset"].secondary,
input[type="button"].secondary,
button.secondary {
 background-color: #E10000;
 background-image: -moz-linear-gradient(top, #640000 20%, #320000 70%) !important;
 background-image: -webkit-gradient(linear, 0% 20%, 0% 70%, from(#640000), to(#320000)) !important;
 border-color: #323232 !important;
 box-shadow: 0 1px 0 #430000, 0 -1px 0 #430000, 1px 0 0 #430000, -1px 0 0 #430000;
 color: #FFFFFF;
 -moz-box-shadow: 0 0 0 1px #430000;
 -webkit-box-shadow: 0 1px 0 #430000, 0 -1px 0 #430000, 1px 0 0 #430000, -1px 0 0 #430000;
}				/* Button Style */
 
a.wikia-button.secondary:hover,
span.wikia-button.secondary a:hover,
input[type="submit"].secondary:hover,
input[type="reset"].secondary:hover,
input[type="button"].secondary:hover,
button.secondary:hover {
 text-shadow: #000000 0 1px 1px;
}
 
a.wikia-button.secondary:active,
span.wikia-button.secondary a:active,
input[type="submit"].secondary:active,
input[type="reset"].secondary:active,
input[type="button"].secondary:active,
button.secondary:active {
 color: #FFFFFF;
 background-image: -moz-linear-gradient(top, #B40000 20%, #E10000 70%);
 background-image: -webkit-gradient(linear, 0% 20%, 0% 70%, from(#B40000), to(#E10000));
}				/* Active Button Style */
 
a.wikia-button.secondary,
span.wikia-button.secondary a,
input[type="submit"].secondary,
input[type="reset"].secondary,
input[type="button"].secondary,
button.secondary {
 filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#FFE10000", EndColorStr="#FFB40000");
 outline: 1px solid #430000\9;
}				/* IE Button Style */
 
 
 
 
 
 
/*
body h1, body h2 {
 color: #E1E1E1 !important;
} /* RTE Black Heading Font Fix */
 
 
 
.cke_skin_wikia textarea {
 background-color: #FFFFFF !important;
 color: #000000 !important;
}
*/
 
 
#AjaxLoginBox {
 background-color: #000000 !important
 color: #E1E1E1 !important;
 -moz-border-radius: 25px !important;
}
 
#lightbox-image,
#userloginSpecial,
#AjaxLoginBoxWrapper,
.modalWrapper {
 background-color: #000000 !important;
}
 
 
 
 
 
 
 
 
 
 
table.filehistory th, table.filehistory td {
 border: 1px solid #191919;
} /* Color the File History Table Borders */
 
table.filehistory th {
 background-color: #191919;
 background-image: -moz-linear-gradient(top, #000000, #323232);
 background-image: -webkit-gradient(linear, 0% 100%, 0% 100%, from(#000000), to(#323232));
} /* File History Table Top Row Style */
 
 
 
 
 
 
.wikia-slideshow-images li {
 background-color: #000000;
}
 
.accent {
 background-color: #000000;
 border-color: #000000;
 color: #E1E1E1;
}
 
 
 
 
 
 
 
 
 
 
div.gallerybox div.thumb {
 background-color: #000000;
 border: 1px solid #191919;
}				/* Gallery Style */
 
div.gallerytext {
 color: #C8C8C8;
}				/* Gallery Font Color */
 
 
 
 
 
 
 
 
 
 
div.tright, div.tleft {
 background-color: #0A0A0A;
 border: 1px solid #191919;
}				/* Thumbnail Box Style */
 
.thumbcaption {
 font-weight: bold;
}				/* Thumbnail Caption Style */
 
 
div.magnify a,
div.magnify img,
.wikia-slideshow-toolbar .wikia-slideshow-popout div img {
 background-image: url(http://images.wikia.com/deadfrontier/images/e/e1/Magnifying_Icon.png);
}				/* Magnifying Icon */
 
.sprite {
 top: 0;
}				/* Magnifying Icon Positioning */
 
.sprite.details  {
 background-position: 0;
}				/* Magnifying Icon Positioning */
 
 
 
 
 
 
 
.followedList {
 list-style-image: url(http://images.wikia.com/deadfrontier/images/1/13/Grey_Bullet.png);
 left: 10px;
}				/* User Page - Followed Links Style */
 
 
 
 
 
 
 
 
 
#wpBlockOther,
#wpAnonOnlyRow {
 display: table-row !important;
}