Skip to content

Commit

Permalink
Merge pull request #151 from griffithlab/lists
Browse files Browse the repository at this point in the history
Add list styling for 2nd and 3rd level
  • Loading branch information
obigriffith committed Feb 7, 2024
2 parents 0c9b185 + 5176c87 commit 48f6541
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/_static/css/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,23 @@ table.docutils td p {
line-height: 1.2em !important;
}
ul.simple {
padding: 40px !important;
padding-left: 20px !important;
list-style: disc !important;
}
ul.simple li {
list-style: disc !important;
}
ul.simple li ul {
padding-left: 30px !important;
list-style: square !important;
}
ul.simple li ul li {
list-style: square !important;
}
ul.simple li ul li ul{
padding-left: 40px !important;
list-style: circle !important;
}
ul.simple li ul li ul li{
list-style: circle !important;
}

0 comments on commit 48f6541

Please sign in to comment.