Last active
November 1, 2020 09:47
-
-
Save lukeocodes/158e28f4a827e23d6db71fea9654c725 to your computer and use it in GitHub Desktop.
LGBT symbols in CSS
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
.Pride { | |
background: linear-gradient( | |
#000000, | |
#000000 12.5%, | |
#754d15 12.5%, | |
#754d15 25%, | |
#f00000 25%, | |
#f00000 37.5%, | |
#ff8000 37.5%, | |
#ff8000 50%, | |
#ffff00 50%, | |
#ffff00 62.5%, | |
#007940 62.5%, | |
#007940 75%, | |
#4040ff 75%, | |
#4040ff 87.5%, | |
#a000c0 87.5%, | |
#a000c0 | |
); | |
} |
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
.Trans { | |
background: linear-gradient | |
#55cdfc, | |
#55cdfc 20%, | |
#f7a8b8 20%, | |
#f7a8b8 40%, | |
#fff 40%, | |
#fff 60%, | |
#f7a8b8 60%, | |
#f7a8b8 80%, | |
#55cdfc 80%, | |
#55cdfc 100% | |
); | |
} | |
.Trans--Black { | |
background: linear-gradient | |
#55cdfc, | |
#55cdfc 20%, | |
#f7a8b8 20%, | |
#f7a8b8 40%, | |
#000 40%, | |
#000 60%, | |
#f7a8b8 60%, | |
#f7a8b8 80%, | |
#55cdfc 80%, | |
#55cdfc 100% | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment