File tree Expand file tree Collapse file tree 8 files changed +25
-21
lines changed Expand file tree Collapse file tree 8 files changed +25
-21
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ @value small (max-width : 599px );
2
+ @value medium (min-width : 600px ) and (max-width : 959px );
3
+ @value large (min-width : 960px );
Original file line number Diff line number Diff line change 1
- @define primary: # f01;
2
- @define secondary: # 2f2;
1
+ @value primary: # f01;
2
+ @value secondary: # 2f2;
3
3
4
4
.text-primary {
5
5
color : primary;
Original file line number Diff line number Diff line change 1
- ._constants_borders__dashed {
1
+ ._values_borders__dashed {
2
2
border : 4px dashed;
3
3
}
4
- ._constants_colors__text -primary {
4
+ ._values_colors__text -primary {
5
5
color : # f01 ;
6
6
}
7
- ._constants_colors__bg -primary {
7
+ ._values_colors__bg -primary {
8
8
background-color : # f01 ;
9
9
}
10
10
11
- ._constants_colors__text -secondary {
11
+ ._values_colors__text -secondary {
12
12
color : # 2f2 ;
13
13
}
14
- ._constants_colors__bg -secondary {
14
+ ._values_colors__bg -secondary {
15
15
background-color : # 2f2 ;
16
16
}
17
17
18
18
/* Imports without a "from" are just passed through */
19
19
@import url ('./old-skool.css' );
20
20
21
- ._constants_source__foo {
21
+ ._values_source__foo {
22
22
box-shadow : 0 0 10px # f01 ;
23
23
border-color : # 2f2 ;
24
24
}
25
25
26
26
@media (max-width : 599px ) {
27
- ._constants_source__foo {
27
+ ._values_source__foo {
28
28
background : white;
29
29
}
30
30
}
31
31
@media (min-width : 600px ) and (max-width : 959px ) {
32
- ._constants_source__foo {
32
+ ._values_source__foo {
33
33
background : peru;
34
34
}
35
35
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "borders" : " \" ./borders.css\" " ,
3
+ "breakpoints" : " \" ./breakpoints.css\" " ,
4
+ "small" : " (max-width: 599px)" ,
5
+ "medium" : " (min-width: 600px) and (max-width: 959px)" ,
6
+ "secondary" : " #2f2" ,
7
+ "blue" : " #f01" ,
8
+ "foo" : " _values_source__foo _values_borders__dashed _values_colors__text-secondary"
9
+ }
Original file line number Diff line number Diff line change 1
- @define borders: "./borders.css" , breakpoints : "./breakpoints.css" ;
2
- @import-define small, medium from breakpoints;
3
- @import secondary, primary as blue from "./colors.css" ;
1
+ @value borders: "./borders.css" , breakpoints : "./breakpoints.css" ;
2
+ @value small, medium from breakpoints;
3
+ @value secondary, primary as blue from "./colors.css" ;
4
4
5
5
/* Imports without a "from" are just passed through */
6
6
@import url ('./old-skool.css' );
You can’t perform that action at this time.
0 commit comments