Created
April 17, 2023 06:33
-
-
Save nidnogg/e64aee0dd9215e7f89d289c98abb907b to your computer and use it in GitHub Desktop.
CSS frosted glass
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
/* A simple CSS frosted glass effect, just in case */ | |
.glass { | |
-webkit-backdrop-filter: blur(10px); | |
backdrop-filter: blur(10px); | |
background-color: rgba(0, 0, 0, 0.2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment