docs: add dedicated docs website

This commit is contained in:
Johann Schopplich
2025-11-18 07:23:10 +01:00
parent 3e08f3b72b
commit 4b4f7c05f9
38 changed files with 4399 additions and 541 deletions

View File

@@ -0,0 +1,9 @@
import DefaultTheme from 'vitepress/theme'
import './vars.css'
import './overrides.css'
import 'uno.css'
export default {
...DefaultTheme,
}

View File

@@ -0,0 +1,16 @@
.dark [img-light] {
display: none;
}
html:not(.dark) [img-dark] {
display: none;
}
details summary {
cursor: pointer;
}
.VPHomeHero .image-src {
max-width: 180px !important;
max-height: 180px !important;
}

View File

@@ -0,0 +1,41 @@
/**
* Colors Theme
* -------------------------------------------------------------------------- */
:root {
--vp-c-brand-1: #d97c06;
--vp-c-brand-2: #C57105;
--vp-c-brand-3: #B16505;
--vp-nav-logo-height: 20px;
}
/**
* Component: Home
* -------------------------------------------------------------------------- */
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
#fde98a 15%,
#d97c06
);
--vp-home-hero-image-background-image: linear-gradient(
-45deg,
#d97c0660 30%,
#fde98a60
);
--vp-home-hero-image-filter: blur(30px);
}
@media (min-width: 640px) {
:root {
--vp-home-hero-image-filter: blur(56px);
}
}
@media (min-width: 960px) {
:root {
--vp-home-hero-image-filter: blur(72px);
}
}