Skip to content

Instantly share code, notes, and snippets.

@nicmare
Created March 19, 2026 15:24
Show Gist options
  • Select an option

  • Save nicmare/75b2bad43c1be50453f9a62a0fc9cbfe to your computer and use it in GitHub Desktop.

Select an option

Save nicmare/75b2bad43c1be50453f9a62a0fc9cbfe to your computer and use it in GitHub Desktop.
Adds a nice blur reveal effect to Blocksy Submenu
.animated-submenu-block .sub-menu {
filter: blur(20px);
transition: opacity .2s ease,visibility .2s ease,transform .2s ease,margin .2s ease,height .2s ease, filter 0.2s ease;
}
.animated-submenu-block.ct-active .sub-menu {
filter: blur(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment