pages/site/.vitepress/theme/custom.css
thepaperpilot 00217e8e69
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 23s
Fix nested bullets
2024-06-06 00:00:23 -05:00

41 lines
552 B
CSS

:root {
--vp-font-family-mono: Roboto Mono, monospace;
}
.main .name .clip {
font-family: Pacifico, cursive;
}
.title {
justify-content: center;
}
.title span {
font-family: Pacifico;
font-size: x-large;
}
.search {
flex-grow: 1;
padding-left: 0;
display: block;
}
.DocSearch-Button {
margin: auto;
width: unset;
}
ul > li > ul {
position: relative;
}
ul > li > ul::before {
position: absolute;
content: "";
width: 2px;
height: 100%;
background: var(--vp-c-text-1);
opacity: 0.3;
left: -16px;
}