// ==UserScript==
// @name 19B4's Kinja Script - Next
// @version 2017.04.28.3
// @namespace 19B4-KS
// @description Works on Fusion, Jezebel, Jalopnik, Kotaku, io9, Gizmodo, Lifehacker and Deadspin
// @author Austin "lash" Williamson
// @homepage http://19B4.kinja.com/
// @include http://gawker.com/*
// @include https://gawker.com/*
// @include http://*.gawker.com/*
// @include https://*.gawker.com/*
// @include http://jezebel.com/*
// @include https://jezebel.com/*
// @include http://*.jezebel.com/*
// @include https://*.jezebel.com/*
// @include http://jalopnik.com/*
// @include https://jalopnik.com/*
// @include http://*.jalopnik.com/*
// @include https://*.jalopnik.com/*
// @include http://kotaku.com/*
// @include https://kotaku.com/*
// @include http://*.kotaku.com/*
// @include https://*.kotaku.com/*
// @include http://io9.com/*
// @include https://io9.com/*
// @include http://*.io9.com/*
// @include https://*.io9.com/*
// @include http://gizmodo.kinja.com/*
// @include https://gizmodo.kinja.com/*
// @include http://*.gizmodo.kinja.com/*
// @include https://*.gizmodo.kinja.com/*
// @include http://gizmodo.com/*
// @include https://gizmodo.com/*
// @include http://*.gizmodo.com/*
// @include https://*.gizmodo.com/*
// @include http://lifehacker.com/*
// @include https://lifehacker.com/*
// @include http://*.lifehacker.com/*
// @include https://*.lifehacker.com/*
// @include http://deadspin.com/*
// @include https://deadspin.com/*
// @include http://*.deadspin.com/*
// @include https://*.deadspin.com/*
// @include http://kinja.com/*
// @include https://kinja.com/*
// @include http://*.kinja.com/*
// @include https://*.kinja.com/*
// @include https://*.fusion.net/*
// @include http://fusion.net/*
// @include https://fusion.net/*
// @run-at document-start
// @grant none
// ==/UserScript==
(function() {var css = [
"head, body {",
"font-size: 10pt !important;",
"}",
"",
".pe_newlayout .post .marquee-asset img {",
"height: auto !important;",
"width: 25% !important;",
"clear: both;",
"float: left;",
"}",
"",
"",
".large-12, .medium-9, .medium-6 {",
"width: 70% !important;",
"float:left;",
"}",
"",
"",
".playIcon, .video-thumb-play .play-icon {",
"width: 74px;",
"height: 74px;",
"float: left;",
"clear: both;",
"top: 30px;",
"left: 60px;",
"}",
"",
"",
".sidebar__content {",
"display: none;",
"/* min-width: 100px !important; */",
"}",
".main {",
"width: 90% !important;",
"}",
"",
".sidebar, div.js_recirculation-unit:nth-child(5) {",
"width:10% !important;",
"position: fixed !important;",
"display:none !important;",
"left: 0px;",
"// border: 0px !important;",
"}",
"",
".main {",
"/* border: 0px !important; */",
"}",
"",
".reply__sidebar {",
"height:50px !important;",
"width:50px !important;",
"}",
"",
".postlist__item .excerpt, .postlist__item .excerpt p {",
"font-family: Helvetica !important;",
"font-size: 16px;",
"line-height: 1.7;",
"}",
".lazy-image img, .img-wrapper{",
"max-width: 500px;",
"min-height: 300px;",
"padding-bottom: 5px !important;",
"}",
"",
"body, .notif-list li .msg-excerpt, .editor .editor-inner blockquote, .editor .editor-inner dl, .editor .editor-inner ol, .editor .editor-inner p, .editor .editor-inner ul, .post-content blockquote, .post-content dl, .post-content ol, .post-content p, .post-content ul {",
"font-family: KhmerUI, Arial !important;",
"}",
".postlist__item .item__content--thumb .asset {",
"width:100% !important;",
"}",
"p {",
"font-family: inherit;",
"font-size: .938rem;",
"font-weight: normal;",
"margin-bottom: 1.25rem;",
"text-rendering: optimizeLegibility;",
"line-height: 22px !important;",
"}",
].join("\n");
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 node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
}
)();