Glassmorphism Gallery

The aesthetic of translucent layers, frosted glass, and ethereal depth

CSS Properties

20px Blur Radius
15% Background Alpha
20px Border Radius
0.2 Border Opacity

Implementation

.glass-element {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

Interactive Demo

Adjust the blur intensity:

Glass Effect