Created
March 9, 2024 17:31
-
-
Save ToadKing/f7f1c94a35bc0479c1b08f9d972b06f4 to your computer and use it in GitHub Desktop.
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 HIDIVE - Better Subtitle Outline/Stroke | |
@namespace com.toadking.hidive | |
@version 1.0.0 | |
@description Better subtitle outline/stroke effect on HIDIVE | |
@author Toad King | |
@preprocessor default | |
@var color strokeColor "Outline/Stroke Color" black | |
@var number strokeWidth "Outline/Stroke width" [0.15, 0, 1, 0.01, 'em'] | |
==/UserStyle== */ | |
@-moz-document domain("hidive.com") { | |
body .ds-content-overlay .ds-text-track .ds-text-track__wrapper > * { | |
text-shadow: none !important; | |
-webkit-text-stroke: var(--strokeWidth) var(--strokeColor); | |
paint-order: stroke; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment