pages/site/.vitepress/theme/custom.css
thepaperpilot 0ec297dd37
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 57s
Make inter block as well
2024-06-15 12:15:21 -05:00

47 lines
625 B
CSS

:root {
--vp-font-family-base: Inter;
--vp-font-family-mono: Roboto Mono;
}
@font-face {
font-family: Inter;
font-display: block;
}
.main .name .clip {
font-family: Pacifico;
}
.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;
}