Skip to content
Snippets Groups Projects
Commit 6edfe207 authored by Artur Sabirov's avatar Artur Sabirov
Browse files

style.css: set custom bullets for nested lists

parent 7d612631
No related branches found
No related tags found
1 merge request!416style.css: set custom bullets for nested lists
Pipeline #38680 passed
......@@ -153,3 +153,18 @@ body {
.picodata-link {
max-width: 5.9rem !important;
}
/* Set custom bullets for level 2 <ul> lists — hollow circle */
article ul ul {
list-style-type: circle !important;
}
/* Set custom bullets for level 3 <ul> lists — minus sign */
article ul ul ul {
list-style-type: "\2212" !important;
}
/* Set padding for level 3 <ul> list items*/
article ul ul ul li {
padding-left: 0.5rem;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment