Skip to content

Instantly share code, notes, and snippets.

@randyburden
Created September 26, 2022 22:01
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 randyburden/c37316c4a35eaa5bd342837d54980d88 to your computer and use it in GitHub Desktop.
Save randyburden/c37316c4a35eaa5bd342837d54980d88 to your computer and use it in GitHub Desktop.
Stylus - Dark mode theme for the The Morning Brew blog @ https://blog.cwa.me.uk
/* ==UserStyle==
@name The Morning Brew - Dark Mode
@version 1.0.0
@description Dark mode for the The Morning Brew blog @ https://blog.cwa.me.uk
@namespace github.com/RandyBurden
@author Randy Burden
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://blog.cwa.me.uk/") {
html {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
body,
#gnav,
#main,
#sidebar {
background: #222;
color: #ddd;
}
#gnav {
border-bottom: unset;
}
#header {
background: #222;
border-bottom: unset;
padding-top: 00px;
}
#sidebar form,
#sidebar .block,
#sidebar ul,
#rap {
background: #222;
}
#header.header2 h1 a {
color: #ddd;
}
#header.header2 h4 {
color: #ddd;
}
#sidebar h2 {
background: #222;
margin: 0px;
}
.post {
margin: unset;
padding: unset;
background: unset;
}
.post-title {
margin-left: 0px;
}
.day-date {
margin: 0px;
}
#main ul li {
padding: 3px 0;
margin: 0 1em;
list-style: disc;
}
#footer {
background: #222;
border: #535353 1px solid;
color: #ddd;
}
.commentlist > li,
.commentlist > li.alt {
background: #222;
}
a,
#sidebar a {
color: #608dff;
}
a:link,
#sidebar a:link {
color: #608dff;
}
a:hover,
a:active,
#sidebar a:hover,
#sidebar a:active {
border-bottom: #608dff 1px solid;
background: unset;
color: #608dff;
}
a:visited,
#sidebar a:visited {
color: #637ab5;
border-bottom: 1px dashed;
background: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment