Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created March 14, 2022 14:20
Show Gist options
  • Save philsinatra/5c1a7d9e7f32a54116f01ef2aaec61f1 to your computer and use it in GitHub Desktop.
Save philsinatra/5c1a7d9e7f32a54116f01ef2aaec61f1 to your computer and use it in GitHub Desktop.
Layered CSS Box Shadow
.box {
box-shadow:
0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048),
0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment