Last active
January 11, 2021 22:19
-
-
Save KiaraGrouwstra/4c6b93d1593de22a28f834be8c5f3565 to your computer and use it in GitHub Desktop.
linkedin dark theme for use with stylus/stylish browser extensions
This file contains 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
/* | |
==UserScript== | |
@name LinkedIn - dark | |
@description This is a black and very dark gray LinkedIn style with a lot of attention to detail. Like the rest of my styles, it's just a basic change of paint without any major remodeling. | |
@author Kete, Kiara Grouwstra | |
@homepage https://gist.github.com/KiaraGrouwstra/4c6b93d1593de22a28f834be8c5f3565 | |
@include http://linkedin.com/* | |
@include https://linkedin.com/* | |
@include http://*.linkedin.com/* | |
@include https://*.linkedin.com/* | |
@run-at document-start | |
@version 0.20200111230800 | |
==/UserScript== | |
*/ | |
body, | |
li label, | |
#page-title h1, | |
#recaptcha_response_field, | |
#module-id3 .content, | |
.carousel, | |
h2.groups, | |
.user-contributed, | |
.resume h3 a:link, | |
#send-message-body, | |
#send-message-subject, | |
textarea, | |
.content, | |
.feed-item, | |
#global-nav, | |
.ember-view, | |
.artdeco-card, | |
.jobs-premium-course-recommendations-upsell, | |
.msg-overlay-list-bubble, | |
.msg-overlay-bubble-header, | |
.neptune-grid, | |
.jobs-unified-top-card, | |
.jobs-box__group>p, | |
.jobs-box__group>h3, | |
.jobs-description { | |
background-color: #000 !important; | |
color: #aaa !important; | |
font-family: Loma !important; | |
} | |
h1.group-name a:link { | |
color: #006699 !important; | |
} | |
#main-search-box { | |
color: #000 !important; | |
font-family: Loma !important; | |
} | |
#copyright { | |
color: #888 !important; | |
} | |
h1.t-24, | |
span.t-black, | |
h3.t-bold, | |
#job-details p, | |
.jobs-unified-top-card__posted-date { | |
color: grey !important; | |
} | |
.popular-article, | |
.commenter, | |
.item-detail-comment, | |
fieldset, | |
.header, | |
.popular-item-comment, | |
.bubble-btm { | |
background: #111 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment