solved pbm with list in cv

This commit is contained in:
asus
2023-11-20 01:05:25 +01:00
parent f334f87390
commit 5b767e8147
5 changed files with 34 additions and 33 deletions

View File

@@ -10,7 +10,7 @@
*/
body, pre {
font-family: "notomono", monospace;
font-size: 1.5rem;
font-size: 1.8rem;
font-weight: normal;
font-style: normal;
}
@@ -18,8 +18,9 @@ ul {
/*
*/
display: block;
list-style-type: "• ";
padding-left: var(--list-padding);
list-style-type: "• ";
padding-left: 0px;
list-style-position: outside;
}
li {
display: list-item;
@@ -27,6 +28,15 @@ li {
li::marker {
font-size: 1.2rem;
}
details summary {
list-style-position: outside;
}
details summary {
list-style-type: "▸ ";
}
details[open] summary {
list-style-type: "▾ ";
}
a:not([download])::after {
content: attr(href);
}