Skip to content

Instantly share code, notes, and snippets.

@nextab
Created March 3, 2023 13:03
Show Gist options
  • Select an option

  • Save nextab/a32e094f003dab209c2e3ecd58a59f0f to your computer and use it in GitHub Desktop.

Select an option

Save nextab/a32e094f003dab209c2e3ecd58a59f0f to your computer and use it in GitHub Desktop.
/* #region Custom Shortcodes */
details {
margin-top: 5px;
}
details summary {
color: #fff;
cursor: pointer;
display: inline-block;
list-style: none;
transition: all 350ms ease;
text-decoration: underline;
}
details summary::-webkit-details-marker {
display: none;
/* don't show Triangle */
}
details:hover summary, details[open] summary {
text-decoration: none;
}
details[open] summary {
margin-bottom: 7px;
}
/* #endregion Custom Shortcodes */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment