This repository has been archived on 2025-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vitepress-theme-blog-charle…/docs/.vitepress/theme/styles/custom.css
2022-10-20 23:49:50 +08:00

43 lines
682 B
CSS

body {
font-size: 16px;
}
pre, code, kbd, samp {
font-family: var(--vp-font-family-mono);
}
.vp-doc h2 {
margin: 15px 0 16px;
padding-top: 10px;
border-top: none;
}
.VPDoc .content-container img {
border-radius: 5px;
}
/* slim scroll bar for windows based web browsers - works on chrome, edge, and safari */
::-webkit-scrollbar {
width: 3px;
height: 3px;
}
/* scrolling track/backgronund color */
::-webkit-scrollbar-track {
background: #3b3b3b;
}
/* scrolling handle */
::-webkit-scrollbar-thumb {
background: #42b883;
}
/* handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #36986c;
}