diff --git a/snippets/custom-styles.liquid b/snippets/custom-styles.liquid index 5b3bacc..fe5f292 100644 --- a/snippets/custom-styles.liquid +++ b/snippets/custom-styles.liquid @@ -96,28 +96,32 @@ ul { list-style: none; padding: 0; - .inner { - padding-left: 1em; - overflow: hidden; - display: none; - &.show { - /*display: block;*/ - } - } +} - li { - margin: .5em 0; - a.toggle { - width: 100%; - display: block; - background: rgba(0,0,0,0.78); - color: #fefefe; - padding: .75em; - border-radius: 0.15em; - transition: background .3s ease; - &:hover { - background: rgba(0, 0, 0, 0.9); - } - } - } +ul.inner { + padding-left: 1em; + overflow: hidden; + display: none; +} + +ul.show { + /*display: block;*/ +} + +li { + margin: .5em 0; +} + +a.toggle { + width: 100%; + display: block; + background: rgba(0,0,0,0.78); + color: #fefefe; + padding: .75em; + border-radius: 0.15em; + transition: background .3s ease; +} + +a:hover { + background: rgba(0, 0, 0, 0.9); } \ No newline at end of file