-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
983e1ea
commit cf7a6e8
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* ==UserStyle== | ||
@name dcrainmaker.com | ||
@namespace typpi.online | ||
@version 1.0.0 | ||
@description Description | ||
@author Nick2bad4u | ||
@license UnLicense | ||
@homepageURL https://github.com/Nick2bad4u/UserStyles | ||
==/UserStyle== */ | ||
@-moz-document domain("dcrainmaker.com") { | ||
/* Invert colors except images and videos */ | ||
:is( | ||
html:not([stylus-iframe]), | ||
img, | ||
svg, | ||
video | ||
) { | ||
filter: invert(1) hue-rotate(180deg) !important; | ||
} | ||
|
||
#post-sections h4 { | ||
background: #fff; | ||
color: black; | ||
font-style: oblique; | ||
text-decoration: underline dotted; | ||
} | ||
|
||
.commentlist | ||
.children | ||
li.comment-author-rainmaker, | ||
.commentlist li.comment-author-rainmaker > div, | ||
.commentlist li.comment.bypostauthor > div { | ||
border-radius: 10px !important; | ||
} | ||
|
||
.reply a, | ||
a.comment-edit-link { | ||
padding-right: 20px; | ||
} | ||
|
||
.comment-author cite { | ||
background: linear-gradient( | ||
90deg, | ||
#f15e1d 55%, | ||
#da1111ab 45% | ||
); | ||
-webkit-background-clip: text; | ||
background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
} | ||
|
||
.commentlist li.comment-author-rainmaker { | ||
border: #f15e1d dashed; | ||
} | ||
} |