Skip to content

Commit

Permalink
changes to the css file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaythan Elam committed Jul 25, 2021
1 parent 76085af commit 983c29a
Showing 1 changed file with 27 additions and 23 deletions.
50 changes: 27 additions & 23 deletions snippets/custom-styles.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 983c29a

Please sign in to comment.