kbin Hide Downvotes and Reputation

Hides downvotes, and reputation on user pages

// ==UserScript==
// @name         kbin Hide Downvotes and Reputation
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  Hides downvotes, and reputation on user pages
// @author       artillect
// @match        https://kbin.social/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kbin.social
// @grant        GM.addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    GM.addStyle(`
    .vote__down {
        display: none;
    }

    #sidebar > section.section.user-info > ul > li:nth-child(2) {
        display: none;
    }
    `);
})();