Skip to content

Instantly share code, notes, and snippets.

@evilz
Created July 4, 2023 17:17
Show Gist options
  • Save evilz/7803721dcd74e75f12c70b6d6375c3a2 to your computer and use it in GitHub Desktop.
Save evilz/7803721dcd74e75f12c70b6d6375c3a2 to your computer and use it in GitHub Desktop.
Glass ui
/* Background styles */
body {
background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1124&q=100');
background-position: center;
}
/* Glassmorphism card effect */
.card {
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(17, 25, 40, 0.75);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.125);
}
/* Generated by https://generator.ui.glass/ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment