mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-27 07:31:46 +01:00
178 lines
4.1 KiB
CSS
178 lines
4.1 KiB
CSS
@import "tailwindcss";
|
|
@variant dark (&:where(.dark, .dark *));
|
|
|
|
@plugin "daisyui" {
|
|
include: stat, button;
|
|
themes: light --default;
|
|
}
|
|
@plugin "daisyui/theme" {
|
|
name: "light";
|
|
default: true;
|
|
--depth: 0;
|
|
--noise: 0;
|
|
--radius-field: 2rem;
|
|
--color-primary: var(--vp-button-brand-bg);
|
|
}
|
|
|
|
/**
|
|
* Customize default theme styling by overriding CSS variables:
|
|
* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
|
|
*/
|
|
|
|
/**
|
|
* Colors
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
:root {
|
|
--vp-c-brand: #646cff;
|
|
--vp-c-brand-light: #747bff;
|
|
--vp-c-brand-lighter: #9499ff;
|
|
--vp-c-brand-lightest: #bcc0ff;
|
|
--vp-c-brand-dark: #535bf2;
|
|
--vp-c-brand-darker: #454ce1;
|
|
--vp-c-brand-dimm: rgba(100, 108, 255, 0.08);
|
|
}
|
|
|
|
/**
|
|
* Component: Button
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
:root {
|
|
--vp-button-brand-border: var(--vp-c-brand-light);
|
|
--vp-button-brand-text: var(--vp-c-white);
|
|
--vp-button-brand-bg: var(--vp-c-brand);
|
|
--vp-button-brand-hover-border: var(--vp-c-brand-light);
|
|
--vp-button-brand-hover-text: var(--vp-c-white);
|
|
--vp-button-brand-hover-bg: var(--vp-c-brand-light);
|
|
--vp-button-brand-active-border: var(--vp-c-brand-light);
|
|
--vp-button-brand-active-text: var(--vp-c-white);
|
|
--vp-button-brand-active-bg: var(--vp-button-brand-bg);
|
|
}
|
|
|
|
/**
|
|
* Component: Home
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
:root {
|
|
--vp-home-hero-name-color: transparent;
|
|
--vp-home-hero-name-background: linear-gradient(124deg, #de4daa 30%, #f6d327);
|
|
|
|
--vp-home-hero-image-background-image: linear-gradient(-45deg, hsl(44, 100%, 77%) 50%, #47caff 50%);
|
|
--vp-home-hero-image-filter: blur(40px);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
:root {
|
|
--vp-home-hero-image-filter: blur(56px);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
:root {
|
|
--vp-home-hero-image-filter: blur(72px);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Component: Custom Block
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
:root {
|
|
--vp-custom-block-tip-border: var(--vp-c-brand);
|
|
--vp-custom-block-tip-text: var(--vp-c-brand-darker);
|
|
--vp-custom-block-tip-bg: var(--vp-c-brand-dimm);
|
|
--tag-line-color: #333;
|
|
--bar-title-color: #ef5734;
|
|
}
|
|
|
|
.dark {
|
|
--vp-custom-block-tip-border: var(--vp-c-brand);
|
|
--vp-custom-block-tip-text: var(--vp-c-brand-lightest);
|
|
--vp-custom-block-tip-bg: var(--vp-c-brand-dimm);
|
|
--tag-line-color: white;
|
|
--bar-title-color: hsl(44, 100%, 77%);
|
|
}
|
|
|
|
/**
|
|
* Component: Algolia
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
.DocSearch {
|
|
--docsearch-primary-color: var(--vp-c-brand) !important;
|
|
}
|
|
|
|
/**
|
|
* VitePress: Custom fix
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/*
|
|
Use lighter colors for links in dark mode for a11y.
|
|
Also specify some classes twice to have higher specificity
|
|
over scoped class data attribute.
|
|
*/
|
|
.dark .vp-doc a,
|
|
.dark .vp-doc a > code,
|
|
.dark .VPNavBarMenuLink.VPNavBarMenuLink:hover,
|
|
.dark .VPNavBarMenuLink.VPNavBarMenuLink.active,
|
|
.dark .link.link:hover,
|
|
.dark .link.link.active,
|
|
.dark .edit-link-button.edit-link-button,
|
|
.dark .pager-link .title {
|
|
color: var(--vp-c-brand-lighter);
|
|
}
|
|
|
|
.dark .vp-doc a:hover,
|
|
.dark .vp-doc a > code:hover {
|
|
color: var(--vp-c-brand-lightest);
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Transition by color instead of opacity */
|
|
.dark .vp-doc .custom-block a {
|
|
transition: color 0.25s;
|
|
}
|
|
|
|
/**
|
|
* Dozzle css
|
|
* --------------------------------------------------------------------------
|
|
**/
|
|
|
|
@media (max-width: 960px) {
|
|
.is-home .VPHero {
|
|
margin-top: -1em;
|
|
}
|
|
}
|
|
|
|
.VPHero .container {
|
|
max-width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.is-home .container .main {
|
|
padding-right: 4em;
|
|
}
|
|
}
|
|
|
|
.VPHomeHero .tagline {
|
|
@apply font-sans text-4xl font-light;
|
|
color: var(--tag-line-color);
|
|
}
|
|
|
|
.VPHomeHero .name {
|
|
@apply text-7xl font-light;
|
|
}
|
|
|
|
.VPNavBarTitle .title {
|
|
@apply text-3xl font-light;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.VPHero .container .image {
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.VPNavBar.home .container {
|
|
max-width: 100%;
|
|
}
|