40 lines
872 B
CSS
40 lines
872 B
CSS
:root {
|
|
/* Layout */
|
|
--sidebar-width: 280px;
|
|
--navbar-height: 60px;
|
|
--content-padding: 20px;
|
|
|
|
/* Colors */
|
|
--primary-color: #0d6efd;
|
|
--primary-dark: #0b5ed7;
|
|
--secondary-color: #6c757d;
|
|
--success-color: #198754;
|
|
--danger-color: #dc3545;
|
|
--warning-color: #ffc107;
|
|
--info-color: #0dcaf0;
|
|
--light-color: #f8f9fa;
|
|
--dark-color: #212529;
|
|
|
|
/* Text */
|
|
--body-color: #212529;
|
|
--text-muted: #6c757d;
|
|
|
|
/* Transitions */
|
|
--transition-speed: 0.3s;
|
|
|
|
/* Shadows */
|
|
--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);
|
|
|
|
/* Border radius */
|
|
--border-radius-sm: 4px;
|
|
--border-radius: 8px;
|
|
--border-radius-lg: 12px;
|
|
|
|
/* Z-index */
|
|
--z-sidebar: 1000;
|
|
--z-navbar: 999;
|
|
--z-overlay: 998;
|
|
}
|