Created
March 3, 2023 13:01
-
-
Save nextab/ca85f6a6b410b83782ccdfa16b930b88 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* #region Custom Shortcodes */ | |
| details { | |
| margin-top: 5px; | |
| summary { | |
| color: #fff; | |
| cursor: pointer; | |
| display: inline-block; | |
| list-style: none; | |
| transition: all 350ms ease; | |
| text-decoration: underline; | |
| &::-webkit-details-marker { | |
| display: none; /* don't show Triangle */ | |
| } | |
| } | |
| &:hover, &[open] { | |
| summary { | |
| text-decoration: none; | |
| } | |
| } | |
| &[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