Last active
June 2, 2025 06:25
-
-
Save luislobo14rap/14aca991e85f7b33c2ce2cc250943f03 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
/* faux-fonts.css v1.1 */ | |
.faux-italic{transform:matrix(1,0,-0.25,1,0,0)} | |
.faux-compressed{transform:matrix(0.95,0,0,1,0,0)} | |
.faux-bold { | |
text-shadow: | |
1px 0 currentColor, | |
-1px 0 currentColor, | |
0 1px currentColor, | |
0 -1px currentColor; | |
} | |
.faux-black { | |
text-shadow: | |
1px 0 currentColor, | |
-1px 0 currentColor, | |
0 1px currentColor, | |
0 -1px currentColor, | |
1px 1px currentColor, | |
-1px -1px currentColor, | |
1px -1px currentColor, | |
-1px 1px currentColor; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment