@microsoft/atlas-css 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -42
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +57 -57
- package/src/atomics/README.md +54 -54
- package/src/atomics/border.scss +56 -56
- package/src/atomics/colors.scss +166 -166
- package/src/atomics/display.scss +33 -33
- package/src/atomics/flex.scss +69 -69
- package/src/atomics/index.scss +8 -8
- package/src/atomics/position.scss +19 -19
- package/src/atomics/shadow.scss +19 -19
- package/src/atomics/spacing.scss +73 -73
- package/src/atomics/typography.scss +105 -105
- package/src/components/README.md +41 -41
- package/src/components/button-reset.scss +8 -8
- package/src/components/button.scss +245 -243
- package/src/components/buttons.scss +86 -87
- package/src/components/component.md +6 -6
- package/src/components/icon.scss +20 -20
- package/src/components/index.scss +7 -7
- package/src/components/link-button.scss +30 -30
- package/src/components/markdown.scss +156 -156
- package/src/components/table.scss +67 -67
- package/src/core/animations.scss +8 -8
- package/src/core/focus.scss +35 -35
- package/src/core/font-stack.scss +28 -28
- package/src/core/index.scss +6 -6
- package/src/core/themes.scss +86 -86
- package/src/index.scss +6 -6
- package/src/mixins/center.scss +11 -11
- package/src/mixins/code-block.scss +43 -43
- package/src/mixins/control.scss +44 -44
- package/src/mixins/focus.scss +10 -10
- package/src/mixins/font-size.scss +35 -35
- package/src/mixins/index.scss +9 -9
- package/src/mixins/loader.scss +16 -16
- package/src/mixins/media-queries.scss +49 -49
- package/src/mixins/transparency.scss +14 -14
- package/src/mixins/unselectable.scss +13 -13
- package/src/patterns/index.scss +1 -1
- package/src/tokens/animation.scss +8 -8
- package/src/tokens/border.scss +8 -8
- package/src/tokens/breakpoints.scss +11 -11
- package/src/tokens/colors.scss +215 -215
- package/src/tokens/direction.scss +18 -18
- package/src/tokens/display.scss +5 -5
- package/src/tokens/focus.scss +9 -9
- package/src/tokens/font-stack.scss +10 -10
- package/src/tokens/index.scss +18 -18
- package/src/tokens/layout.scss +8 -8
- package/src/tokens/palette.scss +188 -188
- package/src/tokens/position.scss +5 -5
- package/src/tokens/radius.scss +9 -9
- package/src/tokens/schemes.scss +14 -14
- package/src/tokens/shadow.scss +11 -11
- package/src/tokens/spacing.scss +25 -25
- package/src/tokens/themes.scss +291 -291
- package/src/tokens/typography.scss +29 -29
- package/src/tokens/z-index.scss +20 -20
- package/tokens/README.md +34 -34
- package/tokens/index.js +246 -246
- package/tokens/types.d.ts +35 -35
package/src/atomics/display.scss
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
@each $item in $displays {
|
|
2
|
-
.display-#{$item} {
|
|
3
|
-
display: #{$item} !important;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@include tablet {
|
|
8
|
-
@each $item in $displays {
|
|
9
|
-
.display-#{$item}-tablet {
|
|
10
|
-
display: #{$item} !important;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@include desktop {
|
|
16
|
-
@each $item in $displays {
|
|
17
|
-
.display-#{$item}-desktop {
|
|
18
|
-
display: #{$item} !important;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@include widescreen {
|
|
24
|
-
@each $item in $displays {
|
|
25
|
-
.display-#{$item}-widescreen {
|
|
26
|
-
display: #{$item} !important;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
[hidden] {
|
|
32
|
-
display: none !important;
|
|
33
|
-
}
|
|
1
|
+
@each $item in $displays {
|
|
2
|
+
.display-#{$item} {
|
|
3
|
+
display: #{$item} !important;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@include tablet {
|
|
8
|
+
@each $item in $displays {
|
|
9
|
+
.display-#{$item}-tablet {
|
|
10
|
+
display: #{$item} !important;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@include desktop {
|
|
16
|
+
@each $item in $displays {
|
|
17
|
+
.display-#{$item}-desktop {
|
|
18
|
+
display: #{$item} !important;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@include widescreen {
|
|
24
|
+
@each $item in $displays {
|
|
25
|
+
.display-#{$item}-widescreen {
|
|
26
|
+
display: #{$item} !important;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
[hidden] {
|
|
32
|
+
display: none !important;
|
|
33
|
+
}
|
package/src/atomics/flex.scss
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
@use 'sass:map';
|
|
2
|
-
|
|
3
|
-
$flex-atomics: (
|
|
4
|
-
'justify-content': (
|
|
5
|
-
flex-start,
|
|
6
|
-
flex-end,
|
|
7
|
-
center,
|
|
8
|
-
space-around,
|
|
9
|
-
space-between,
|
|
10
|
-
space-evenly
|
|
11
|
-
),
|
|
12
|
-
'align-items': (
|
|
13
|
-
flex-start,
|
|
14
|
-
flex-end,
|
|
15
|
-
center,
|
|
16
|
-
baseline,
|
|
17
|
-
stretch
|
|
18
|
-
),
|
|
19
|
-
'align-content': (
|
|
20
|
-
flex-start,
|
|
21
|
-
flex-end,
|
|
22
|
-
center,
|
|
23
|
-
space-around,
|
|
24
|
-
space-between,
|
|
25
|
-
stretch
|
|
26
|
-
),
|
|
27
|
-
'align-self': (
|
|
28
|
-
flex-start,
|
|
29
|
-
flex-end,
|
|
30
|
-
center,
|
|
31
|
-
baseline,
|
|
32
|
-
stretch
|
|
33
|
-
),
|
|
34
|
-
'flex-direction': (
|
|
35
|
-
column,
|
|
36
|
-
column-reverse,
|
|
37
|
-
row-reverse
|
|
38
|
-
),
|
|
39
|
-
'flex-wrap': (
|
|
40
|
-
wrap,
|
|
41
|
-
wrap-reverse
|
|
42
|
-
),
|
|
43
|
-
'flex-shrink': (
|
|
44
|
-
0,
|
|
45
|
-
1
|
|
46
|
-
),
|
|
47
|
-
'flex-grow': (
|
|
48
|
-
0,
|
|
49
|
-
1
|
|
50
|
-
)
|
|
51
|
-
) !default;
|
|
52
|
-
|
|
53
|
-
@each $key in map.keys($flex-atomics) {
|
|
54
|
-
@each $value in map.get($flex-atomics, $key) {
|
|
55
|
-
.#{$key}-#{$value} {
|
|
56
|
-
#{$key}: $value !important;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@include tablet {
|
|
62
|
-
@each $key in map.keys($flex-atomics) {
|
|
63
|
-
@each $value in map.get($flex-atomics, $key) {
|
|
64
|
-
.#{$key}-#{$value}-tablet {
|
|
65
|
-
#{$key}: $value !important;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
$flex-atomics: (
|
|
4
|
+
'justify-content': (
|
|
5
|
+
flex-start,
|
|
6
|
+
flex-end,
|
|
7
|
+
center,
|
|
8
|
+
space-around,
|
|
9
|
+
space-between,
|
|
10
|
+
space-evenly
|
|
11
|
+
),
|
|
12
|
+
'align-items': (
|
|
13
|
+
flex-start,
|
|
14
|
+
flex-end,
|
|
15
|
+
center,
|
|
16
|
+
baseline,
|
|
17
|
+
stretch
|
|
18
|
+
),
|
|
19
|
+
'align-content': (
|
|
20
|
+
flex-start,
|
|
21
|
+
flex-end,
|
|
22
|
+
center,
|
|
23
|
+
space-around,
|
|
24
|
+
space-between,
|
|
25
|
+
stretch
|
|
26
|
+
),
|
|
27
|
+
'align-self': (
|
|
28
|
+
flex-start,
|
|
29
|
+
flex-end,
|
|
30
|
+
center,
|
|
31
|
+
baseline,
|
|
32
|
+
stretch
|
|
33
|
+
),
|
|
34
|
+
'flex-direction': (
|
|
35
|
+
column,
|
|
36
|
+
column-reverse,
|
|
37
|
+
row-reverse
|
|
38
|
+
),
|
|
39
|
+
'flex-wrap': (
|
|
40
|
+
wrap,
|
|
41
|
+
wrap-reverse
|
|
42
|
+
),
|
|
43
|
+
'flex-shrink': (
|
|
44
|
+
0,
|
|
45
|
+
1
|
|
46
|
+
),
|
|
47
|
+
'flex-grow': (
|
|
48
|
+
0,
|
|
49
|
+
1
|
|
50
|
+
)
|
|
51
|
+
) !default;
|
|
52
|
+
|
|
53
|
+
@each $key in map.keys($flex-atomics) {
|
|
54
|
+
@each $value in map.get($flex-atomics, $key) {
|
|
55
|
+
.#{$key}-#{$value} {
|
|
56
|
+
#{$key}: $value !important;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@include tablet {
|
|
62
|
+
@each $key in map.keys($flex-atomics) {
|
|
63
|
+
@each $value in map.get($flex-atomics, $key) {
|
|
64
|
+
.#{$key}-#{$value}-tablet {
|
|
65
|
+
#{$key}: $value !important;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
package/src/atomics/index.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@import 'typography.scss';
|
|
2
|
-
@import 'border.scss';
|
|
3
|
-
@import 'colors.scss';
|
|
4
|
-
@import 'display.scss';
|
|
5
|
-
@import 'shadow.scss';
|
|
6
|
-
@import 'spacing.scss';
|
|
7
|
-
@import 'flex.scss';
|
|
8
|
-
@import 'position.scss';
|
|
1
|
+
@import './typography.scss';
|
|
2
|
+
@import './border.scss';
|
|
3
|
+
@import './colors.scss';
|
|
4
|
+
@import './display.scss';
|
|
5
|
+
@import './shadow.scss';
|
|
6
|
+
@import './spacing.scss';
|
|
7
|
+
@import './flex.scss';
|
|
8
|
+
@import './position.scss';
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
@each $item in $positions {
|
|
2
|
-
.position-#{$item} {
|
|
3
|
-
position: #{$item} !important;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@include tablet {
|
|
8
|
-
@each $item in $positions {
|
|
9
|
-
.position-#{$item}-tablet {
|
|
10
|
-
position: #{$item} !important;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@each $side, $direction in $directions {
|
|
16
|
-
.#{$side}-0 {
|
|
17
|
-
#{$direction}: 0;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
@each $item in $positions {
|
|
2
|
+
.position-#{$item} {
|
|
3
|
+
position: #{$item} !important;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@include tablet {
|
|
8
|
+
@each $item in $positions {
|
|
9
|
+
.position-#{$item}-tablet {
|
|
10
|
+
position: #{$item} !important;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@each $side, $direction in $directions {
|
|
16
|
+
.#{$side}-0 {
|
|
17
|
+
#{$direction}: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
package/src/atomics/shadow.scss
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
.box-shadow-none {
|
|
2
|
-
box-shadow: none !important;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.box-shadow-light {
|
|
6
|
-
box-shadow: $box-shadow-light !important;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.box-shadow-medium {
|
|
10
|
-
box-shadow: $box-shadow-medium !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.box-shadow-heavy {
|
|
14
|
-
box-shadow: $box-shadow-heavy !important;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.box-shadow-extra-heavy {
|
|
18
|
-
box-shadow: $box-shadow-extra-heavy !important;
|
|
19
|
-
}
|
|
1
|
+
.box-shadow-none {
|
|
2
|
+
box-shadow: none !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.box-shadow-light {
|
|
6
|
+
box-shadow: $box-shadow-light !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.box-shadow-medium {
|
|
10
|
+
box-shadow: $box-shadow-medium !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.box-shadow-heavy {
|
|
14
|
+
box-shadow: $box-shadow-heavy !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.box-shadow-extra-heavy {
|
|
18
|
+
box-shadow: $box-shadow-extra-heavy !important;
|
|
19
|
+
}
|
package/src/atomics/spacing.scss
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
$separator: '-';
|
|
2
|
-
$spacing-properties: 'margin', 'margin-inline', 'margin-block', 'margin-top', 'margin-bottom',
|
|
3
|
-
'margin-left', 'margin-right', 'padding', 'padding-inline', 'padding-block', 'padding-top',
|
|
4
|
-
'padding-bottom', 'padding-left', 'padding-right' !default;
|
|
5
|
-
|
|
6
|
-
$layout-sizes: (
|
|
7
|
-
('xxs', $layout-1),
|
|
8
|
-
('xs', $layout-2),
|
|
9
|
-
('s', $layout-3),
|
|
10
|
-
('m', $layout-4),
|
|
11
|
-
('l', $layout-5),
|
|
12
|
-
('xl', $layout-6),
|
|
13
|
-
('xxl', $layout-7),
|
|
14
|
-
('xxxl', $layout-8),
|
|
15
|
-
('none', $layout-0)
|
|
16
|
-
);
|
|
17
|
-
|
|
18
|
-
@function sizeValue($key, $value) {
|
|
19
|
-
@return if($key == 'none', 0, $value);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// Pattern: <cssproperty>-<value>-<screen>
|
|
23
|
-
|
|
24
|
-
@each $property in $spacing-properties {
|
|
25
|
-
@each $size in $layout-sizes {
|
|
26
|
-
$sizeKey: nth($size, 1);
|
|
27
|
-
$sizeValue: nth($size, 2);
|
|
28
|
-
|
|
29
|
-
// .<property>-<value>
|
|
30
|
-
.#{$property}#{$separator}#{$sizeKey} {
|
|
31
|
-
#{$property}: sizeValue($sizeKey, $sizeValue) !important;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@include tablet {
|
|
37
|
-
@each $property in $spacing-properties {
|
|
38
|
-
@each $size in $layout-sizes {
|
|
39
|
-
$sizeKey: nth($size, 1);
|
|
40
|
-
$sizeValue: nth($size, 2);
|
|
41
|
-
|
|
42
|
-
.#{$property}#{$separator}#{$sizeKey}#{$separator}tablet {
|
|
43
|
-
#{$property}: $sizeValue !important;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@include desktop {
|
|
50
|
-
@each $property in $spacing-properties {
|
|
51
|
-
@each $size in $layout-sizes {
|
|
52
|
-
$sizeKey: nth($size, 1);
|
|
53
|
-
$sizeValue: nth($size, 2);
|
|
54
|
-
|
|
55
|
-
.#{$property}#{$separator}#{$sizeKey}#{$separator}desktop {
|
|
56
|
-
#{$property}: $sizeValue !important;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@include widescreen {
|
|
63
|
-
@each $property in $spacing-properties {
|
|
64
|
-
@each $size in $layout-sizes {
|
|
65
|
-
$sizeKey: nth($size, 1);
|
|
66
|
-
$sizeValue: nth($size, 2);
|
|
67
|
-
|
|
68
|
-
.#{$property}#{$separator}#{$sizeKey}#{$separator}widescreen {
|
|
69
|
-
#{$property}: $sizeValue !important;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
$separator: '-';
|
|
2
|
+
$spacing-properties: 'margin', 'margin-inline', 'margin-block', 'margin-top', 'margin-bottom',
|
|
3
|
+
'margin-left', 'margin-right', 'padding', 'padding-inline', 'padding-block', 'padding-top',
|
|
4
|
+
'padding-bottom', 'padding-left', 'padding-right' !default;
|
|
5
|
+
|
|
6
|
+
$layout-sizes: (
|
|
7
|
+
('xxs', $layout-1),
|
|
8
|
+
('xs', $layout-2),
|
|
9
|
+
('s', $layout-3),
|
|
10
|
+
('m', $layout-4),
|
|
11
|
+
('l', $layout-5),
|
|
12
|
+
('xl', $layout-6),
|
|
13
|
+
('xxl', $layout-7),
|
|
14
|
+
('xxxl', $layout-8),
|
|
15
|
+
('none', $layout-0)
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
@function sizeValue($key, $value) {
|
|
19
|
+
@return if($key == 'none', 0, $value);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Pattern: <cssproperty>-<value>-<screen>
|
|
23
|
+
|
|
24
|
+
@each $property in $spacing-properties {
|
|
25
|
+
@each $size in $layout-sizes {
|
|
26
|
+
$sizeKey: nth($size, 1);
|
|
27
|
+
$sizeValue: nth($size, 2);
|
|
28
|
+
|
|
29
|
+
// .<property>-<value>
|
|
30
|
+
.#{$property}#{$separator}#{$sizeKey} {
|
|
31
|
+
#{$property}: sizeValue($sizeKey, $sizeValue) !important;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@include tablet {
|
|
37
|
+
@each $property in $spacing-properties {
|
|
38
|
+
@each $size in $layout-sizes {
|
|
39
|
+
$sizeKey: nth($size, 1);
|
|
40
|
+
$sizeValue: nth($size, 2);
|
|
41
|
+
|
|
42
|
+
.#{$property}#{$separator}#{$sizeKey}#{$separator}tablet {
|
|
43
|
+
#{$property}: $sizeValue !important;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@include desktop {
|
|
50
|
+
@each $property in $spacing-properties {
|
|
51
|
+
@each $size in $layout-sizes {
|
|
52
|
+
$sizeKey: nth($size, 1);
|
|
53
|
+
$sizeValue: nth($size, 2);
|
|
54
|
+
|
|
55
|
+
.#{$property}#{$separator}#{$sizeKey}#{$separator}desktop {
|
|
56
|
+
#{$property}: $sizeValue !important;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@include widescreen {
|
|
63
|
+
@each $property in $spacing-properties {
|
|
64
|
+
@each $size in $layout-sizes {
|
|
65
|
+
$sizeKey: nth($size, 1);
|
|
66
|
+
$sizeValue: nth($size, 2);
|
|
67
|
+
|
|
68
|
+
.#{$property}#{$separator}#{$sizeKey}#{$separator}widescreen {
|
|
69
|
+
#{$property}: $sizeValue !important;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,105 +1,105 @@
|
|
|
1
|
-
// Font family
|
|
2
|
-
|
|
3
|
-
.font-family-monospace {
|
|
4
|
-
font-family: $monospace-font-stack !important;
|
|
5
|
-
-moz-osx-font-smoothing: auto;
|
|
6
|
-
-webkit-font-smoothing: auto;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.font-family-quote {
|
|
10
|
-
font-family: $quote-font-stack !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// Heading sizes
|
|
14
|
-
|
|
15
|
-
.font-size-h0 {
|
|
16
|
-
font-size: $font-size-0 !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.font-size-h1 {
|
|
20
|
-
font-size: $font-size-1 !important;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.font-size-h2 {
|
|
24
|
-
font-size: $font-size-2 !important;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.font-size-h3 {
|
|
28
|
-
font-size: $font-size-3 !important;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.font-size-h4 {
|
|
32
|
-
font-size: $font-size-4 !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.font-size-h5 {
|
|
36
|
-
font-size: $font-size-5 !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.font-size-h6 {
|
|
40
|
-
font-size: $font-size-6 !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
// Non-heading sizes
|
|
44
|
-
|
|
45
|
-
.font-size-xl {
|
|
46
|
-
font-size: $font-size-5 !important;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.font-size-l {
|
|
50
|
-
font-size: $font-size-6 !important;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.font-size-m {
|
|
54
|
-
font-size: $font-size-7 !important;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.font-size-s {
|
|
58
|
-
font-size: $font-size-8 !important;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.font-size-xs {
|
|
62
|
-
font-size: $font-size-9 !important;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// Weight
|
|
66
|
-
|
|
67
|
-
.font-weight-light {
|
|
68
|
-
font-weight: $weight-light !important;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.font-weight-semilight {
|
|
72
|
-
font-weight: $weight-semilight !important;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.font-weight-normal {
|
|
76
|
-
font-weight: $weight-normal !important;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.font-weight-semibold {
|
|
80
|
-
font-weight: $weight-semibold !important;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.font-weight-bold {
|
|
84
|
-
font-weight: $weight-bold !important;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
// Case
|
|
88
|
-
|
|
89
|
-
.font-style-italic {
|
|
90
|
-
font-style: italic !important;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.text-decoration-underline {
|
|
94
|
-
text-decoration: underline !important;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.text-decoration-none {
|
|
98
|
-
text-decoration: none !important;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
//Letter Spacing
|
|
102
|
-
|
|
103
|
-
.letter-spacing-wide {
|
|
104
|
-
letter-spacing: $letter-spacing-wide !important;
|
|
105
|
-
}
|
|
1
|
+
// Font family
|
|
2
|
+
|
|
3
|
+
.font-family-monospace {
|
|
4
|
+
font-family: $monospace-font-stack !important;
|
|
5
|
+
-moz-osx-font-smoothing: auto;
|
|
6
|
+
-webkit-font-smoothing: auto;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.font-family-quote {
|
|
10
|
+
font-family: $quote-font-stack !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Heading sizes
|
|
14
|
+
|
|
15
|
+
.font-size-h0 {
|
|
16
|
+
font-size: $font-size-0 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.font-size-h1 {
|
|
20
|
+
font-size: $font-size-1 !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.font-size-h2 {
|
|
24
|
+
font-size: $font-size-2 !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.font-size-h3 {
|
|
28
|
+
font-size: $font-size-3 !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.font-size-h4 {
|
|
32
|
+
font-size: $font-size-4 !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.font-size-h5 {
|
|
36
|
+
font-size: $font-size-5 !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.font-size-h6 {
|
|
40
|
+
font-size: $font-size-6 !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Non-heading sizes
|
|
44
|
+
|
|
45
|
+
.font-size-xl {
|
|
46
|
+
font-size: $font-size-5 !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.font-size-l {
|
|
50
|
+
font-size: $font-size-6 !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.font-size-m {
|
|
54
|
+
font-size: $font-size-7 !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.font-size-s {
|
|
58
|
+
font-size: $font-size-8 !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.font-size-xs {
|
|
62
|
+
font-size: $font-size-9 !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// Weight
|
|
66
|
+
|
|
67
|
+
.font-weight-light {
|
|
68
|
+
font-weight: $weight-light !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.font-weight-semilight {
|
|
72
|
+
font-weight: $weight-semilight !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.font-weight-normal {
|
|
76
|
+
font-weight: $weight-normal !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.font-weight-semibold {
|
|
80
|
+
font-weight: $weight-semibold !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.font-weight-bold {
|
|
84
|
+
font-weight: $weight-bold !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Case
|
|
88
|
+
|
|
89
|
+
.font-style-italic {
|
|
90
|
+
font-style: italic !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.text-decoration-underline {
|
|
94
|
+
text-decoration: underline !important;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.text-decoration-none {
|
|
98
|
+
text-decoration: none !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
//Letter Spacing
|
|
102
|
+
|
|
103
|
+
.letter-spacing-wide {
|
|
104
|
+
letter-spacing: $letter-spacing-wide !important;
|
|
105
|
+
}
|