Skip to content

Instantly share code, notes, and snippets.

View nidnogg's full-sized avatar
🧗
Scrambling

henrique nidnogg

🧗
Scrambling
View GitHub Profile
@nidnogg
nidnogg / glass.css
Created April 17, 2023 06:33
CSS frosted glass
/* 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);
}