mirror of
https://github.com/WebStackPage/WebStackPage.github.io.git
synced 2026-02-08 12:54:35 +08:00
27 lines
902 B
Plaintext
Executable File
27 lines
902 B
Plaintext
Executable File
//
|
|
// Component: Variables
|
|
// Description: Defines all color and style related values as variables
|
|
// to allow easy customization for the most common cases.
|
|
//
|
|
// ========================================================================
|
|
|
|
|
|
// Global variables
|
|
// ========================================================================
|
|
|
|
//
|
|
// Breakpoints
|
|
//
|
|
|
|
@breakpoint-mini-max: (@breakpoint-small - 1);
|
|
|
|
@breakpoint-small: 480px;
|
|
@breakpoint-small-max: (@breakpoint-medium - 1);
|
|
|
|
@breakpoint-medium: 768px;
|
|
@breakpoint-medium-max: (@breakpoint-large - 1);
|
|
|
|
@breakpoint-large: 960px;
|
|
@breakpoint-large-max: (@breakpoint-xlarge - 1);
|
|
|
|
@breakpoint-xlarge: 1220px; |