34 lines
755 B
CSS
34 lines
755 B
CSS
/**
|
|
* Linux BenchTools - CSS Variables communes
|
|
* Variables de layout qui ne changent pas selon le thème
|
|
*/
|
|
|
|
:root {
|
|
/* Spacing */
|
|
--spacing-xs: 0.25rem;
|
|
--spacing-sm: 0.5rem;
|
|
--spacing-md: 1rem;
|
|
--spacing-lg: 1.5rem;
|
|
--spacing-xl: 2rem;
|
|
|
|
/* Border Radius */
|
|
--radius-sm: 4px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 12px;
|
|
|
|
/* Transitions */
|
|
--transition-fast: 0.15s ease;
|
|
--transition-normal: 0.2s ease;
|
|
--transition-slow: 0.3s ease;
|
|
|
|
/* Font */
|
|
--font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
--font-mono: 'Courier New', Courier, monospace;
|
|
|
|
/* Icon sizing (customisable par l'utilisateur) */
|
|
--section-icon-size: 32px;
|
|
--button-icon-size: 24px;
|
|
--icon-btn-size: 42px;
|
|
--icon-btn-icon-size: 26px;
|
|
}
|