58 lines
1.4 KiB
CSS
58 lines
1.4 KiB
CSS
|
|
/**
|
||
|
|
* @fileoverview CSS Variables for Rantii
|
||
|
|
* @author retoor <retoor@molodetz.nl>
|
||
|
|
* @description Design tokens and CSS custom properties
|
||
|
|
* @keywords css, variables, tokens, design, colors
|
||
|
|
*/
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
||
|
|
--font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
|
||
|
|
|
||
|
|
--font-size-xs: 0.75rem;
|
||
|
|
--font-size-sm: 0.875rem;
|
||
|
|
--font-size-md: 1rem;
|
||
|
|
--font-size-lg: 1.125rem;
|
||
|
|
--font-size-xl: 1.25rem;
|
||
|
|
--font-size-2xl: 1.5rem;
|
||
|
|
--font-size-3xl: 2rem;
|
||
|
|
|
||
|
|
--spacing-xs: 0.25rem;
|
||
|
|
--spacing-sm: 0.5rem;
|
||
|
|
--spacing-md: 1rem;
|
||
|
|
--spacing-lg: 1.5rem;
|
||
|
|
--spacing-xl: 2rem;
|
||
|
|
--spacing-2xl: 3rem;
|
||
|
|
|
||
|
|
--radius-sm: 4px;
|
||
|
|
--radius-md: 8px;
|
||
|
|
--radius-lg: 12px;
|
||
|
|
--radius-xl: 16px;
|
||
|
|
--radius-full: 9999px;
|
||
|
|
|
||
|
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||
|
|
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||
|
|
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
|
||
|
|
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
|
||
|
|
|
||
|
|
--transition-fast: 150ms ease;
|
||
|
|
--transition-normal: 250ms ease;
|
||
|
|
--transition-slow: 350ms ease;
|
||
|
|
|
||
|
|
--z-dropdown: 100;
|
||
|
|
--z-sticky: 200;
|
||
|
|
--z-modal: 300;
|
||
|
|
--z-toast: 400;
|
||
|
|
|
||
|
|
--header-height: 56px;
|
||
|
|
--nav-width: 240px;
|
||
|
|
--max-content-width: 680px;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
:root {
|
||
|
|
--header-height: 52px;
|
||
|
|
--nav-width: 280px;
|
||
|
|
}
|
||
|
|
}
|