Skip to content

Instantly share code, notes, and snippets.

@nabn
Created January 6, 2022 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nabn/ccc57c571c49d6f76c6b06e6f03f6e7b to your computer and use it in GitHub Desktop.
Save nabn/ccc57c571c49d6f76c6b06e6f03f6e7b to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Basic Layout for 68k News
// @namespace http://tampermonkey.net/
// @version 0.1
// @description
// @author nabn_
// @match http://68k.news/*
// @icon https://www.google.com/s2/favicons?domain=68k.news
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
body {
max-width: 78ch;
margin: auto;
line-height: 1.5;
color: #3c3836;
font-size: 1rem;
margin-top: 100px;
}
a {
text-decoration: none;
color: #3c3836;
}
h3 a {
color: #458558;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment