Skip to content

Instantly share code, notes, and snippets.

@zakirsajib
Last active April 21, 2022 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakirsajib/8cbe37e2bd73696db51c4b1fb9846d5d to your computer and use it in GitHub Desktop.
Save zakirsajib/8cbe37e2bd73696db51c4b1fb9846d5d to your computer and use it in GitHub Desktop.
Glass box shadow, transition
.box {
background-color: #f0f8ff;
box-shadow: 0px 25px 35px -25px #97a3b8;
transition: all 0.3s ease-in;
}
.box:hover {
background-color: #f0ffff;
box-shadow: 0px 0px 0px 0px rgb(136 0 64 / 49%);
transform: translateY(-1px);
}
### Example: https://www.shopbylocals.com/all-sellers/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment