User:AndreaRengifo/myskin.js

Source: Wikipedia, the free encyclopedia.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// ==UserScript==
// @name          Wikipedia - Dark Shiny Grey, Transparency
// @namespace     http://userstyles.org
// @description	  This style is a modification of Wikipedia - Dark Shiny Blue, Transparency by macgyver
// @author        SeanBoi
// @homepage      http://userstyles.org/styles/35535
// @include       http://wikipedia.org/*
// @include       https://wikipedia.org/*
// @include       http://*.wikipedia.org/*
// @include       https://*.wikipedia.org/*
// @include       http://wikimedia.org/*
// @include       https://wikimedia.org/*
// @include       http://*.wikimedia.org/*
// @include       https://*.wikimedia.org/*
// @include       http://wikinews.org/*
// @include       https://wikinews.org/*
// @include       http://*.wikinews.org/*
// @include       https://*.wikinews.org/*
// @include       http://wikibooks.org/*
// @include       https://wikibooks.org/*
// @include       http://*.wikibooks.org/*
// @include       https://*.wikibooks.org/*
// @include       http://wikiquote.org/*
// @include       https://wikiquote.org/*
// @include       http://*.wikiquote.org/*
// @include       https://*.wikiquote.org/*
// @include       http://wikiversity.org/*
// @include       https://wikiversity.org/*
// @include       http://*.wikiversity.org/*
// @include       https://*.wikiversity.org/*
// @include       http://wikisource.org/*
// @include       https://wikisource.org/*
// @include       http://*.wikisource.org/*
// @include       https://*.wikisource.org/*
// @include       http://wiktionary.org/*
// @include       https://wiktionary.org/*
// @include       http://*.wiktionary.org/*
// @include       https://*.wiktionary.org/*
// ==/UserScript==
(function() {
var css = "p, div, table, form, li, tr, td, h2, body {color:#99CCFF !important; background: url(http://imgur.com/Zyjsy.jpg) #222222 fixed repeat left top !important }\n\nh5 {color:#FF8800 !important;}\n\na, a:link {color:white !important;}\n\n#p-cactions div ul li a:hover {color:white !important; background: url(http://i64.photobucket.com/albums/h180/ragingshinigami/tech3.jpg) #222222 fixed repeat left top !important }\n\n#p-cactions div ul li a {color:blue !important;}\n\n.wikitable th a {color:black !important; opacity: 0.5 !important}\n\n.prettytable th a, .prettytable th a:link, .prettytable th a:hover {color:black !important;}\n\n#collapsibleTable0 a.image img, .thumbinner a.image img {background: #FFFFFF fixed repeat left top !important;}\n\n#p-cactions div ul li.new a {color:red !important;}\n\n.wikitable th a.new {color:red !important; opacity: 0.5 !important}\n\na.new, a.new:hover, a.new span, a.new span:hover {color:#FF0000 !important;}\n\n.prettytable th, .wikitable th {color:black !important; opacity: 0.5 !important}\n\ndiv.tright {border-width: 0 0 0 0 !important; background: url(http://i64.photobucket.com/albums/h180/ragingshinigami/tech3.jpg) #222222 fixed repeat left top !important;}\n\n.diff-deletedline div {color:black !important; background: #FFFFAA none repeat scroll 0 0 !important}\n\n.diff-addedline div {color:black !important; background: #CCFFCC none repeat scroll 0 0 !important}\n\n#collapsibleTable0 th {background: #222222 fixed repeat left top !important;}\n\npre, code {background: url(http://i64.photobucket.com/albums/h180/ragingshinigami/tech3.jpg) #222222 fixed repeat left top !important; color: #000000 !important;}\n\n.sinossifumetti caption, .sinossifumetti th, .sinossifumetti span {background: url(http://i64.photobucket.com/albums/h180/ragingshinigami/tech3.jpg) #222222 fixed repeat left top !important; color: black !important;}\n\n#filetoc {border-width: 0 0 0 0 !important; background: url(http://i64.photobucket.com/albums/h180/ragingshinigami/tech3.jpg) #222222 fixed repeat left top !important}\n\nimg {opacity:0.7 !important;}\n\n#siteNotice p {color:black !important}";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();