Skip to content

Instantly share code, notes, and snippets.

@crispgm
Last active January 17, 2021 08:48
Show Gist options
  • Save crispgm/8c38ab02397eaa3aa1bb1a680d775c4c to your computer and use it in GitHub Desktop.
Save crispgm/8c38ab02397eaa3aa1bb1a680d775c4c to your computer and use it in GitHub Desktop.
[TamperMonkey] Nord Theme for GeekHack
// ==UserScript==
// @name GeekHack Nord Theme
// @description A simple Nord theme for GeekHack
// @author David Zhang
// @match https://geekhack.org/*
// ==/UserScript==
:root{
--color-0: #ECEFF4;
--color-1: #5E81AC;
--color-2: #2E3440;
}
body{
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", sans-serif;
background-color: var(--color-0);
color: var(--color-1);
width: 80%;
margin: 0 auto;
}
a:link, a:visited {color: var(--color-2);}
#header {display: none;}
#content_section {background: none;}
#content_section div.frame {background: none;}
#footer_section {background: none;}
#footer_section div.frame {background: none;}
#topic_icons {display: none;}
.plainbox {background: none;}
.whos_viewing {display: none;}
#whoisviewing {display: none;}
.moderatorbar {display: none;}
.navigate_section {padding: .5em .2em;}
.navigate_section ul {border: 0;}
.table_grid thead {display: none;}
.locked_sticky2 {background-color: var(--color-2);}
blockquote.bbc_standard_quote {background-color: var(--color-1);}
.windowbg {color: var(--color-1); background-color: var(--color-0);}
.windowbg2 {color: var(--color-1); background-color: var(--color-0);}
.windowbg3 {color: var(--color-1); background-color: var(--color-0);}
.subject a:link {color: var(--color-2); font-weight: bold;}
.subject a:visited {color: var(--color-2); font-weight: bold;}
.subject p a:link {color: var(--color-2);}
.subject p a:visited {color: var(--color-2);}
table.table_grid td {border-left: 1px solid #333333;}
.stickybg a:link {color: #D8DEE9; font-weight: bold;}
.stickybg a:visited {color: #D8DEE9; font-weight: bold;}
td.icon1 {display: none;}
td.icon2 {display: none;}
td.subject {width: 75%;}
td.stats {width: 8%;}
td.lastpost {width: 17%;}
.lastpost img {display: none;}
.windowbg span.topslice {background: none;}
.windowbg span.topslice span {background: none;}
.windowbg span.botslice {background: none;}
.windowbg span.botslice span {background: none;}
.windowbg2 span.topslice {background: none;}
.windowbg2 span.topslice span {background: none;}
.windowbg2 span.botslice {background: none;}
.windowbg2 span.botslice span {background: none;}
h3.catbg {color: #D8DEE9;}
.catbg img {display: none;}
.subject.stickybg.locked_sticky2 > div > a > img,
.subject.windowbg2 > div > a > img {display: none;}
@crispgm
Copy link
Author

crispgm commented Oct 9, 2020

Thread list of IC:
gh-thread-list

Thread reader:
gh-thread-vega

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment