433 lines
8.7 KiB
CSS
433 lines
8.7 KiB
CSS
/**
|
|
* Global styles for the bakery management application
|
|
*/
|
|
|
|
/* Tailwind CSS directives */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* CSS Reset and Base Styles */
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Root Variables */
|
|
:root {
|
|
/* Colors - Light Theme */
|
|
--color-primary: #d97706;
|
|
--color-primary-light: #f59e0b;
|
|
--color-primary-dark: #b45309;
|
|
--color-secondary: #0f766e;
|
|
--color-secondary-light: #14b8a6;
|
|
--color-secondary-dark: #0d5d56;
|
|
|
|
--color-accent: #dc2626;
|
|
--color-accent-light: #ef4444;
|
|
--color-accent-dark: #b91c1c;
|
|
|
|
--color-success: #059669;
|
|
--color-success-light: #10b981;
|
|
--color-success-dark: #047857;
|
|
|
|
--color-warning: #d97706;
|
|
--color-warning-light: #f59e0b;
|
|
--color-warning-dark: #b45309;
|
|
|
|
--color-error: #dc2626;
|
|
--color-error-light: #ef4444;
|
|
--color-error-dark: #b91c1c;
|
|
|
|
--color-info: #2563eb;
|
|
--color-info-light: #3b82f6;
|
|
--color-info-dark: #1d4ed8;
|
|
|
|
/* Background Colors - Default fallbacks, overridden by theme files */
|
|
--bg-primary: #ffffff;
|
|
--bg-secondary: #f8fafc;
|
|
--bg-tertiary: #f1f5f9;
|
|
--bg-quaternary: #e2e8f0;
|
|
|
|
/* Text Colors - Default fallbacks, overridden by theme files */
|
|
--text-primary: #0f172a;
|
|
--text-secondary: #475569;
|
|
--text-tertiary: #64748b;
|
|
--text-inverse: #ffffff;
|
|
|
|
/* Border Colors - Default fallbacks, overridden by theme files */
|
|
--border-primary: #e2e8f0;
|
|
--border-secondary: #cbd5e1;
|
|
--border-tertiary: #94a3b8;
|
|
|
|
/* Shadow Colors */
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
--shadow-3xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
|
|
|
|
/* Typography */
|
|
--font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
--font-family-mono: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
|
|
|
|
--font-size-xs: 0.75rem; /* 12px */
|
|
--font-size-sm: 0.875rem; /* 14px */
|
|
--font-size-base: 1rem; /* 16px */
|
|
--font-size-lg: 1.125rem; /* 18px */
|
|
--font-size-xl: 1.25rem; /* 20px */
|
|
--font-size-2xl: 1.5rem; /* 24px */
|
|
--font-size-3xl: 1.875rem; /* 30px */
|
|
--font-size-4xl: 2.25rem; /* 36px */
|
|
|
|
--font-weight-normal: 400;
|
|
--font-weight-medium: 500;
|
|
--font-weight-semibold: 600;
|
|
--font-weight-bold: 700;
|
|
|
|
--line-height-tight: 1.25;
|
|
--line-height-normal: 1.5;
|
|
--line-height-relaxed: 1.75;
|
|
|
|
/* Spacing */
|
|
--spacing-xs: 0.25rem; /* 4px */
|
|
--spacing-sm: 0.5rem; /* 8px */
|
|
--spacing-md: 1rem; /* 16px */
|
|
--spacing-lg: 1.5rem; /* 24px */
|
|
--spacing-xl: 2rem; /* 32px */
|
|
--spacing-2xl: 3rem; /* 48px */
|
|
--spacing-3xl: 4rem; /* 64px */
|
|
|
|
/* Border Radius */
|
|
--radius-sm: 0.25rem; /* 4px */
|
|
--radius-md: 0.375rem; /* 6px */
|
|
--radius-lg: 0.5rem; /* 8px */
|
|
--radius-xl: 0.75rem; /* 12px */
|
|
--radius-2xl: 1rem; /* 16px */
|
|
--radius-full: 9999px;
|
|
|
|
/* Z-Index */
|
|
--z-dropdown: 1000;
|
|
--z-sticky: 1020;
|
|
--z-fixed: 1030;
|
|
--z-modal-backdrop: 1040;
|
|
--z-modal: 1050;
|
|
--z-popover: 1060;
|
|
--z-tooltip: 1070;
|
|
--z-toast: 1080;
|
|
|
|
/* Transition */
|
|
--transition-fast: 150ms ease-in-out;
|
|
--transition-base: 200ms ease-in-out;
|
|
--transition-normal: 300ms ease-in-out;
|
|
--transition-slow: 500ms ease-in-out;
|
|
|
|
/* Animation Timing Functions */
|
|
--ease-in-out-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
--ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
|
|
/* Layout */
|
|
--container-max-width: 1280px;
|
|
--sidebar-width: 280px;
|
|
--sidebar-collapsed-width: 64px;
|
|
--header-height: 64px;
|
|
--footer-height: 56px;
|
|
}
|
|
|
|
/* Base HTML Elements */
|
|
html {
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
-webkit-text-size-adjust: 100%;
|
|
-moz-tab-size: 4;
|
|
tab-size: 4;
|
|
font-feature-settings: normal;
|
|
font-variation-settings: normal;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-family-sans);
|
|
background-color: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
line-height: var(--line-height-normal);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
/* Typography */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: var(--font-weight-semibold);
|
|
line-height: var(--line-height-tight);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
h1 { font-size: var(--font-size-4xl); }
|
|
h2 { font-size: var(--font-size-3xl); }
|
|
h3 { font-size: var(--font-size-2xl); }
|
|
h4 { font-size: var(--font-size-xl); }
|
|
h5 { font-size: var(--font-size-lg); }
|
|
h6 { font-size: var(--font-size-base); }
|
|
|
|
p {
|
|
margin-bottom: var(--spacing-md);
|
|
line-height: var(--line-height-relaxed);
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
transition: color var(--transition-fast);
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--color-primary-dark);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Lists */
|
|
ul, ol {
|
|
margin-bottom: var(--spacing-md);
|
|
padding-left: var(--spacing-lg);
|
|
}
|
|
|
|
li {
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
/* Code */
|
|
code {
|
|
font-family: var(--font-family-mono);
|
|
font-size: 0.875em;
|
|
background-color: var(--bg-tertiary);
|
|
padding: 0.125rem 0.25rem;
|
|
border-radius: var(--radius-sm);
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
pre {
|
|
font-family: var(--font-family-mono);
|
|
background-color: var(--bg-tertiary);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-lg);
|
|
overflow-x: auto;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
pre code {
|
|
background: none;
|
|
padding: 0;
|
|
color: inherit;
|
|
}
|
|
|
|
/* Tables */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
th, td {
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--border-primary);
|
|
}
|
|
|
|
th {
|
|
font-weight: var(--font-weight-semibold);
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* Form Elements */
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
select {
|
|
background-color: var(--bg-primary);
|
|
border: 1px solid var(--border-secondary);
|
|
border-radius: var(--radius-md);
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
|
|
}
|
|
|
|
input:focus,
|
|
textarea:focus,
|
|
select:focus {
|
|
outline: none;
|
|
border-color: var(--color-primary);
|
|
box-shadow: 0 0 0 3px rgb(217 119 6 / 0.1);
|
|
}
|
|
|
|
input:disabled,
|
|
textarea:disabled,
|
|
select:disabled {
|
|
background-color: var(--bg-quaternary);
|
|
color: var(--text-tertiary);
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
font: inherit;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all var(--transition-fast);
|
|
}
|
|
|
|
button:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* Images */
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
/* Utility Classes */
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: var(--container-max-width);
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-md);
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.inline-flex {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.fixed {
|
|
position: fixed;
|
|
}
|
|
|
|
.sticky {
|
|
position: sticky;
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.overflow-auto {
|
|
overflow: auto;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.pointer-events-none {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Focus Management */
|
|
.focus-visible {
|
|
outline: 2px solid var(--color-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Custom Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg-secondary);
|
|
border-radius: var(--radius-full);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--border-tertiary);
|
|
border-radius: var(--radius-full);
|
|
transition: background-color var(--transition-fast);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--text-tertiary);
|
|
}
|
|
|
|
/* Print Styles */
|
|
@media print {
|
|
* {
|
|
-webkit-print-color-adjust: exact !important;
|
|
print-color-adjust: exact !important;
|
|
}
|
|
|
|
body {
|
|
font-size: 12pt;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.no-print {
|
|
display: none !important;
|
|
}
|
|
} |