forked from ILIAS-eLearning/delos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delos.scss
33 lines (23 loc) · 877 Bytes
/
delos.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// # ITCSS structure
// All style code MUST be split into these layers
// The first two layers expose public variables with @forward so they can be overwritten in a skin
// ## Settings
@forward "./010-settings/";
// ## Dependencies
@forward "./020-dependencies/";
// ## Tools
// include patterns and tools with @use in component when needed
// ## Normalize
@use "./040-normalize/" as *;
// ## Layout
@use "./050-layout/" as *; // these are only Layout Utilities that require to write CSS code like the grid
// include all other specific layout files and folder with @use in component when needed
// ## Elements
@use "./060-elements" as *;
// ## Components
@use "./070-components" as *;
// ## Hacks
@use "./080-hacks" as *;
// # Relative paths differences
// SCSS paths are relativ to the SCSS file
// CSS paths (linked fonts) are relative to the compiled template CSS