Created
September 26, 2022 22:01
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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