marmark0 / mnt.sk Black OLED

// ==UserScript==
// @name         mnt.sk Black OLED
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  OLED Black version of mnt.sk (Minuta po minute)
// @author       MaRmAR
// @match        https://dennikn.sk/minuta/*
// @grant        none
// @license      MIT
// @require      https://code.jquery.com/jquery-2.2.4.min.js
// ==/UserScript==

$(document).ready(function() {
    $("<style type='text/css'>"+
      "div.app { background:#000; }"+
      "article.minute.sticky { background:#333; }" +
      "article.minute .content a { color: #fff; }" +
      "article.minute .content a:hover { color: #fff; text-decoration:underline; }" +
      "section.timeline .minute.sticky { background: #333; }" +
      "section.timeline .minute.important { background: #211; border-top: 1px dashed #ae2a2a; }" +
      "a.download {display:none !important}" +
      "nav.share {display:none;}"+
      "body { color: #e8e8e8; }"+
      "</style>").appendTo("head");
});