Better hackernews styles

A user script to enchance Hacker News page styles

2023-02-03 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name         Better hackernews styles
// @namespace    https://greasyfork.org/en/users/1019658-aayush-dutt
// @version      1.2
// @description  A user script to enchance Hacker News page styles
// @author       aayushdutt
// @match        https://news.ycombinator.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';

  const styles = `<style>
    .comment,
    .toptext,
    .subtext,
    .spacer {
        font-size: 15px;
        line-height: 1.5;
    }

    .title {
        font-size: 16px;
    }

    .title a:hover {
      text-decoration: underline;
    }

    .comhead,
    .pagetop {
        font-size: 14px;
        line-height: 1.5;
    }

    .spacer {
      height: 12px !important;
    }

    td > table {
      width: 100%;
    }
  </style>`

  document.head.insertAdjacentHTML("beforeend", styles)

})();