@rolster/styles-foundations 1.0.0 → 1.0.2
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/dist/rolster-styles.css +2763 -0
- package/dist/{styles.min.css → rolster-styles.min.css} +1 -1
- package/dist/rolster-styles.rtl.css +2763 -0
- package/dist/{styles.rtl.min.css → rolster-styles.rtl.min.css} +1 -1
- package/package.json +33 -32
- package/readme.md +13 -13
- package/scss/_rolster-components.scss +61 -9
- package/scss/_rolster-foundations.scss +13 -13
- package/scss/{styles.scss → _rolster-styles.scss} +10 -10
- package/scss/_rolster-utilities.scss +13 -13
- package/scss/components/_app.scss +11 -10
- package/scss/components/_box-field.scss +32 -35
- package/scss/components/_data-table.scss +263 -0
- package/scss/components/_form.scss +30 -0
- package/scss/components/_list-field.scss +253 -0
- package/scss/foundations/_themes-foundations.scss +103 -103
- package/scss/utilities/_colors-utilities.scss +54 -54
- package/scss/utilities/_layout-utilities.scss +314 -314
- package/scss/utilities/_normalize-utilities.scss +2 -2
- package/scss/utilities/_themes-utilities.scss +42 -42
- package/scss/utilities/_typographics-utilities.scss +87 -359
- package/dist/styles.css +0 -1924
- package/dist/styles.rtl.css +0 -1924
- package/fonts/fabric/_fabric.-settings.scss +0 -66
- package/fonts/fabric/_fabric.scss +0 -69
- package/fonts/fabric/fabric-bold.otf +0 -0
- package/fonts/fabric/fabric-light.otf +0 -0
- package/fonts/fabric/fabric-regular.otf +0 -0
- package/fonts/fabric/fabric-semibold.otf +0 -0
- package/fonts/fabric/fabric.css +0 -122
- package/fonts/mona-sans/_mona-sans-settings.scss +0 -62
- package/fonts/mona-sans/_mona-sans.scss +0 -69
- package/fonts/mona-sans/mona-sans-bold.woff +0 -0
- package/fonts/mona-sans/mona-sans-light.woff +0 -0
- package/fonts/mona-sans/mona-sans-medium.woff +0 -0
- package/fonts/mona-sans/mona-sans-regular.woff +0 -0
- package/fonts/mona-sans/mona-sans-semibold.woff +0 -0
- package/fonts/mona-sans/mona-sans.css +0 -118
- package/fonts/poppins/_poppins-settings.scss +0 -62
- package/fonts/poppins/_poppins.scss +0 -69
- package/fonts/poppins/poppins-bold.woff2 +0 -0
- package/fonts/poppins/poppins-light.woff2 +0 -0
- package/fonts/poppins/poppins-medium.woff2 +0 -0
- package/fonts/poppins/poppins-regular.woff2 +0 -0
- package/fonts/poppins/poppins-semibold.woff2 +0 -0
- package/fonts/poppins/poppins.css +0 -118
- package/fonts/space-grotesk/_space-grotesk-settings.scss +0 -62
- package/fonts/space-grotesk/_space-grotesk.scss +0 -69
- package/fonts/space-grotesk/space-grotesk-bold.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-light.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-medium.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-regular.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-semibold.woff +0 -0
- package/fonts/space-grotesk/space-grotesk.css +0 -118
- package/icons/_rolster-settings.scss +0 -763
- package/icons/_rolster.scss +0 -18
- package/icons/rolster-icons.eot +0 -0
- package/icons/rolster-icons.svg +0 -258
- package/icons/rolster-icons.ttf +0 -0
- package/icons/rolster-icons.woff +0 -0
- package/icons/rolster.css +0 -768
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts Fabric
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 19/Abr/2018
|
|
6
|
-
// Updated: 19/Abr/2023
|
|
7
|
-
|
|
8
|
-
:root {
|
|
9
|
-
--rolster-font-size: 16px;
|
|
10
|
-
|
|
11
|
-
--heading-1-size: 2rem;
|
|
12
|
-
--heading-1-letter-spacing: 0em;
|
|
13
|
-
--heading-1-line-height: 2.275rem;
|
|
14
|
-
|
|
15
|
-
--heading-2-size: 1.75rem;
|
|
16
|
-
--heading-2-letter-spacing: 0em;
|
|
17
|
-
--heading-2-line-height: 1.925rem;
|
|
18
|
-
|
|
19
|
-
--heading-3-size: 1.5rem;
|
|
20
|
-
--heading-3-letter-spacing: 0em;
|
|
21
|
-
--heading-3-line-height: 1.825rem;
|
|
22
|
-
|
|
23
|
-
--heading-4-size: 1.375rem;
|
|
24
|
-
--heading-4-letter-spacing: 0em;
|
|
25
|
-
--heading-4-line-height: 1.675rem;
|
|
26
|
-
|
|
27
|
-
--heading-5-size: 1.25rem;
|
|
28
|
-
--heading-5-letter-spacing: 0em;
|
|
29
|
-
--heading-5-line-height: 1.575rem;
|
|
30
|
-
|
|
31
|
-
--heading-6-size: 1.15rem;
|
|
32
|
-
--heading-6-letter-spacing: 0em;
|
|
33
|
-
--heading-6-line-height: 1.325rem;
|
|
34
|
-
|
|
35
|
-
--title-size: 1.125rem;
|
|
36
|
-
--title-letter-spacing: 0.01em;
|
|
37
|
-
--title-line-height: 1.25rem;
|
|
38
|
-
|
|
39
|
-
--subtitle-size: 1.075rem;
|
|
40
|
-
--subtitle-letter-spacing: 0.01em;
|
|
41
|
-
--subtitle-line-height: 1.175rem;
|
|
42
|
-
|
|
43
|
-
--body-size: 1rem;
|
|
44
|
-
--body-letter-spacing: 0.01em;
|
|
45
|
-
--body-line-height: 1.125rem;
|
|
46
|
-
|
|
47
|
-
--input-size: 0.95rem;
|
|
48
|
-
--input-letter-spacing: 0.01em;
|
|
49
|
-
--input-line-height: 1.125rem;
|
|
50
|
-
|
|
51
|
-
--label-size: 0.875rem;
|
|
52
|
-
--label-letter-spacing: 0.01em;
|
|
53
|
-
--label-line-height: 1.025rem;
|
|
54
|
-
|
|
55
|
-
--smalltext-size: 0.75rem;
|
|
56
|
-
--smalltext-letter-spacing: 0.01em;
|
|
57
|
-
--smalltext-line-height: 1rem;
|
|
58
|
-
|
|
59
|
-
--caption-size: 0.7375rem;
|
|
60
|
-
--caption-letter-spacing: 0.01em;
|
|
61
|
-
--caption-line-height: 1rem;
|
|
62
|
-
|
|
63
|
-
--overline-size: 0.675rem;
|
|
64
|
-
--overline-letter-spacing: 0.1em;
|
|
65
|
-
--overline-line-height: 1rem;
|
|
66
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts Fabric
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 19/Abr/2018
|
|
6
|
-
// Updated: 19/Abr/2023
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: -rolster-system-font;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
font-weight: 100;
|
|
12
|
-
src: url('fabric-light.otf') format('opentype');
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: -rolster-system-font;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: 200;
|
|
19
|
-
src: url('fabric-light.otf') format('opentype');
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: -rolster-system-font;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 300;
|
|
26
|
-
src: url('fabric-light.otf') format('opentype');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: -rolster-system-font;
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-weight: 400;
|
|
33
|
-
src: url('fabric-regular.otf') format('opentype');
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: -rolster-system-font;
|
|
38
|
-
font-style: normal;
|
|
39
|
-
font-weight: 500;
|
|
40
|
-
src: url('fabric-semibold.otf') format('opentype');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: -rolster-system-font;
|
|
45
|
-
font-style: normal;
|
|
46
|
-
font-weight: 600;
|
|
47
|
-
src: url('fabric-semibold.otf') format('opentype');
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: -rolster-system-font;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 700;
|
|
54
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: -rolster-system-font;
|
|
59
|
-
font-style: normal;
|
|
60
|
-
font-weight: 800;
|
|
61
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@font-face {
|
|
65
|
-
font-family: -rolster-system-font;
|
|
66
|
-
font-style: normal;
|
|
67
|
-
font-weight: 900;
|
|
68
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
69
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/fonts/fabric/fabric.css
DELETED
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: -rolster-system-font;
|
|
3
|
-
font-style: normal;
|
|
4
|
-
font-weight: 100;
|
|
5
|
-
src: url('fabric-light.otf') format('opentype');
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: -rolster-system-font;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
font-weight: 200;
|
|
12
|
-
src: url('fabric-light.otf') format('opentype');
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: -rolster-system-font;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: 300;
|
|
19
|
-
src: url('fabric-light.otf') format('opentype');
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: -rolster-system-font;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 400;
|
|
26
|
-
src: url('fabric-regular.otf') format('opentype');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: -rolster-system-font;
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-weight: 500;
|
|
33
|
-
src: url('fabric-semibold.otf') format('opentype');
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: -rolster-system-font;
|
|
38
|
-
font-style: normal;
|
|
39
|
-
font-weight: 600;
|
|
40
|
-
src: url('fabric-semibold.otf') format('opentype');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: -rolster-system-font;
|
|
45
|
-
font-style: normal;
|
|
46
|
-
font-weight: 700;
|
|
47
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: -rolster-system-font;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 800;
|
|
54
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: -rolster-system-font;
|
|
59
|
-
font-style: normal;
|
|
60
|
-
font-weight: 900;
|
|
61
|
-
src: url('fabric-bold.otf') format('opentype');
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
:root {
|
|
65
|
-
--rolster-font-size: 16px;
|
|
66
|
-
|
|
67
|
-
--heading-1-size: 2rem;
|
|
68
|
-
--heading-1-letter-spacing: 0em;
|
|
69
|
-
--heading-1-line-height: 2.275rem;
|
|
70
|
-
|
|
71
|
-
--heading-2-size: 1.75rem;
|
|
72
|
-
--heading-2-letter-spacing: 0em;
|
|
73
|
-
--heading-2-line-height: 1.925rem;
|
|
74
|
-
|
|
75
|
-
--heading-3-size: 1.5rem;
|
|
76
|
-
--heading-3-letter-spacing: 0em;
|
|
77
|
-
--heading-3-line-height: 1.825rem;
|
|
78
|
-
|
|
79
|
-
--heading-4-size: 1.375rem;
|
|
80
|
-
--heading-4-letter-spacing: 0em;
|
|
81
|
-
--heading-4-line-height: 1.675rem;
|
|
82
|
-
|
|
83
|
-
--heading-5-size: 1.25rem;
|
|
84
|
-
--heading-5-letter-spacing: 0em;
|
|
85
|
-
--heading-5-line-height: 1.575rem;
|
|
86
|
-
|
|
87
|
-
--heading-6-size: 1.15rem;
|
|
88
|
-
--heading-6-letter-spacing: 0em;
|
|
89
|
-
--heading-6-line-height: 1.325rem;
|
|
90
|
-
|
|
91
|
-
--title-size: 1.125rem;
|
|
92
|
-
--title-letter-spacing: 0.01em;
|
|
93
|
-
--title-line-height: 1.25rem;
|
|
94
|
-
|
|
95
|
-
--subtitle-size: 1.075rem;
|
|
96
|
-
--subtitle-letter-spacing: 0.01em;
|
|
97
|
-
--subtitle-line-height: 1.175rem;
|
|
98
|
-
|
|
99
|
-
--body-size: 1rem;
|
|
100
|
-
--body-letter-spacing: 0.01em;
|
|
101
|
-
--body-line-height: 1.125rem;
|
|
102
|
-
|
|
103
|
-
--input-size: 0.95rem;
|
|
104
|
-
--input-letter-spacing: 0.01em;
|
|
105
|
-
--input-line-height: 1.125rem;
|
|
106
|
-
|
|
107
|
-
--label-size: 0.875rem;
|
|
108
|
-
--label-letter-spacing: 0.01em;
|
|
109
|
-
--label-line-height: 1.025rem;
|
|
110
|
-
|
|
111
|
-
--smalltext-size: 0.75rem;
|
|
112
|
-
--smalltext-letter-spacing: 0.01em;
|
|
113
|
-
--smalltext-line-height: 1rem;
|
|
114
|
-
|
|
115
|
-
--caption-size: 0.7375rem;
|
|
116
|
-
--caption-letter-spacing: 0.01em;
|
|
117
|
-
--caption-line-height: 1rem;
|
|
118
|
-
|
|
119
|
-
--overline-size: 0.675rem;
|
|
120
|
-
--overline-letter-spacing: 0.1em;
|
|
121
|
-
--overline-line-height: 1rem;
|
|
122
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts MonaSans
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 03/Mar/2018
|
|
6
|
-
// Updated: 13/Abr/2023
|
|
7
|
-
|
|
8
|
-
:root {
|
|
9
|
-
--rolster-font-size: 16px;
|
|
10
|
-
|
|
11
|
-
--heading-1-size: 2rem;
|
|
12
|
-
--heading-1-letter-spacing: 0em;
|
|
13
|
-
--heading-1-line-height: 2.275rem;
|
|
14
|
-
|
|
15
|
-
--heading-2-size: 1.75rem;
|
|
16
|
-
--heading-2-letter-spacing: 0.02em;
|
|
17
|
-
--heading-2-line-height: 1.925rem;
|
|
18
|
-
|
|
19
|
-
--heading-3-size: 1.5rem;
|
|
20
|
-
--heading-3-letter-spacing: 0.05em;
|
|
21
|
-
--heading-3-line-height: 1.825rem;
|
|
22
|
-
|
|
23
|
-
--heading-4-size: 1.375rem;
|
|
24
|
-
--heading-4-letter-spacing: 0.05em;
|
|
25
|
-
--heading-4-line-height: 1.675rem;
|
|
26
|
-
|
|
27
|
-
--heading-5-size: 1.25rem;
|
|
28
|
-
--heading-5-letter-spacing: 0.05em;
|
|
29
|
-
--heading-5-line-height: 1.575rem;
|
|
30
|
-
|
|
31
|
-
--heading-6-size: 1.15rem;
|
|
32
|
-
--heading-6-letter-spacing: 0.05em;
|
|
33
|
-
--heading-6-line-height: 1.325rem;
|
|
34
|
-
|
|
35
|
-
--title-size: 1.125rem;
|
|
36
|
-
--title-letter-spacing: 0.03em;
|
|
37
|
-
--title-line-height: 1.25rem;
|
|
38
|
-
|
|
39
|
-
--subtitle-size: 1.075rem;
|
|
40
|
-
--subtitle-letter-spacing: 0.03em;
|
|
41
|
-
--subtitle-line-height: 1.175rem;
|
|
42
|
-
|
|
43
|
-
--body-size: 1rem;
|
|
44
|
-
--body-letter-spacing: 0.03em;
|
|
45
|
-
--body-line-height: 1.125rem;
|
|
46
|
-
|
|
47
|
-
--label-size: 0.875rem;
|
|
48
|
-
--label-letter-spacing: 0.05em;
|
|
49
|
-
--label-line-height: 1.025rem;
|
|
50
|
-
|
|
51
|
-
--smalltext-size: 0.75rem;
|
|
52
|
-
--smalltext-letter-spacing: 0.07em;
|
|
53
|
-
--smalltext-line-height: 1rem;
|
|
54
|
-
|
|
55
|
-
--caption-size: 0.7375rem;
|
|
56
|
-
--caption-letter-spacing: 0.07em;
|
|
57
|
-
--caption-line-height: 1rem;
|
|
58
|
-
|
|
59
|
-
--overline-size: 0.675rem;
|
|
60
|
-
--overline-letter-spacing: 0.1em;
|
|
61
|
-
--overline-line-height: 1rem;
|
|
62
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts MonaSans
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 03/Mar/2018
|
|
6
|
-
// Updated: 13/Abr/2023
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: -rolster-system-font;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
font-weight: 100;
|
|
12
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: -rolster-system-font;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: 200;
|
|
19
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: -rolster-system-font;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 300;
|
|
26
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: -rolster-system-font;
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-weight: 400;
|
|
33
|
-
src: url('mona-sans-regular.woff') format('woff');
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: -rolster-system-font;
|
|
38
|
-
font-style: normal;
|
|
39
|
-
font-weight: 500;
|
|
40
|
-
src: url('mona-sans-medium.woff') format('woff');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: -rolster-system-font;
|
|
45
|
-
font-style: normal;
|
|
46
|
-
font-weight: 600;
|
|
47
|
-
src: url('mona-sans-semibold.woff') format('woff');
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: -rolster-system-font;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 700;
|
|
54
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: -rolster-system-font;
|
|
59
|
-
font-style: normal;
|
|
60
|
-
font-weight: 800;
|
|
61
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@font-face {
|
|
65
|
-
font-family: -rolster-system-font;
|
|
66
|
-
font-style: normal;
|
|
67
|
-
font-weight: 900;
|
|
68
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
69
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: -rolster-system-font;
|
|
3
|
-
font-style: normal;
|
|
4
|
-
font-weight: 100;
|
|
5
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: -rolster-system-font;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
font-weight: 200;
|
|
12
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: -rolster-system-font;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: 300;
|
|
19
|
-
src: url('mona-sans-light.woff') format('woff');
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: -rolster-system-font;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 400;
|
|
26
|
-
src: url('mona-sans-regular.woff') format('woff');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: -rolster-system-font;
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-weight: 500;
|
|
33
|
-
src: url('mona-sans-medium.woff') format('woff');
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: -rolster-system-font;
|
|
38
|
-
font-style: normal;
|
|
39
|
-
font-weight: 600;
|
|
40
|
-
src: url('mona-sans-semibold.woff') format('woff');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: -rolster-system-font;
|
|
45
|
-
font-style: normal;
|
|
46
|
-
font-weight: 700;
|
|
47
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: -rolster-system-font;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 800;
|
|
54
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: -rolster-system-font;
|
|
59
|
-
font-style: normal;
|
|
60
|
-
font-weight: 900;
|
|
61
|
-
src: url('mona-sans-bold.woff') format('woff');
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
:root {
|
|
65
|
-
--rolster-font-size: 16px;
|
|
66
|
-
|
|
67
|
-
--heading-1-size: 2rem;
|
|
68
|
-
--heading-1-letter-spacing: 0em;
|
|
69
|
-
--heading-1-line-height: 2.275rem;
|
|
70
|
-
|
|
71
|
-
--heading-2-size: 1.75rem;
|
|
72
|
-
--heading-2-letter-spacing: 0.02em;
|
|
73
|
-
--heading-2-line-height: 1.925rem;
|
|
74
|
-
|
|
75
|
-
--heading-3-size: 1.5rem;
|
|
76
|
-
--heading-3-letter-spacing: 0.05em;
|
|
77
|
-
--heading-3-line-height: 1.825rem;
|
|
78
|
-
|
|
79
|
-
--heading-4-size: 1.375rem;
|
|
80
|
-
--heading-4-letter-spacing: 0.05em;
|
|
81
|
-
--heading-4-line-height: 1.675rem;
|
|
82
|
-
|
|
83
|
-
--heading-5-size: 1.25rem;
|
|
84
|
-
--heading-5-letter-spacing: 0.05em;
|
|
85
|
-
--heading-5-line-height: 1.575rem;
|
|
86
|
-
|
|
87
|
-
--heading-6-size: 1.15rem;
|
|
88
|
-
--heading-6-letter-spacing: 0.05em;
|
|
89
|
-
--heading-6-line-height: 1.325rem;
|
|
90
|
-
|
|
91
|
-
--title-size: 1.125rem;
|
|
92
|
-
--title-letter-spacing: 0.03em;
|
|
93
|
-
--title-line-height: 1.25rem;
|
|
94
|
-
|
|
95
|
-
--subtitle-size: 1.075rem;
|
|
96
|
-
--subtitle-letter-spacing: 0.03em;
|
|
97
|
-
--subtitle-line-height: 1.175rem;
|
|
98
|
-
|
|
99
|
-
--body-size: 1rem;
|
|
100
|
-
--body-letter-spacing: 0.03em;
|
|
101
|
-
--body-line-height: 1.125rem;
|
|
102
|
-
|
|
103
|
-
--label-size: 0.875rem;
|
|
104
|
-
--label-letter-spacing: 0.05em;
|
|
105
|
-
--label-line-height: 1.025rem;
|
|
106
|
-
|
|
107
|
-
--smalltext-size: 0.75rem;
|
|
108
|
-
--smalltext-letter-spacing: 0.07em;
|
|
109
|
-
--smalltext-line-height: 1rem;
|
|
110
|
-
|
|
111
|
-
--caption-size: 0.7375rem;
|
|
112
|
-
--caption-letter-spacing: 0.07em;
|
|
113
|
-
--caption-line-height: 1rem;
|
|
114
|
-
|
|
115
|
-
--overline-size: 0.675rem;
|
|
116
|
-
--overline-letter-spacing: 0.1em;
|
|
117
|
-
--overline-line-height: 1rem;
|
|
118
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts Poppins
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 03/Mar/2018
|
|
6
|
-
// Updated: 13/Abr/2023
|
|
7
|
-
|
|
8
|
-
:root {
|
|
9
|
-
--rolster-font-size: 16px;
|
|
10
|
-
|
|
11
|
-
--heading-1-size: 2rem;
|
|
12
|
-
--heading-1-letter-spacing: 0em;
|
|
13
|
-
--heading-1-line-height: 2.275rem;
|
|
14
|
-
|
|
15
|
-
--heading-2-size: 1.75rem;
|
|
16
|
-
--heading-2-letter-spacing: 0.02em;
|
|
17
|
-
--heading-2-line-height: 1.925rem;
|
|
18
|
-
|
|
19
|
-
--heading-3-size: 1.5rem;
|
|
20
|
-
--heading-3-letter-spacing: 0.05em;
|
|
21
|
-
--heading-3-line-height: 1.825rem;
|
|
22
|
-
|
|
23
|
-
--heading-4-size: 1.375rem;
|
|
24
|
-
--heading-4-letter-spacing: 0.05em;
|
|
25
|
-
--heading-4-line-height: 1.675rem;
|
|
26
|
-
|
|
27
|
-
--heading-5-size: 1.25rem;
|
|
28
|
-
--heading-5-letter-spacing: 0.05em;
|
|
29
|
-
--heading-5-line-height: 1.575rem;
|
|
30
|
-
|
|
31
|
-
--heading-6-size: 1.15rem;
|
|
32
|
-
--heading-6-letter-spacing: 0.05em;
|
|
33
|
-
--heading-6-line-height: 1.325rem;
|
|
34
|
-
|
|
35
|
-
--title-size: 1.125rem;
|
|
36
|
-
--title-letter-spacing: 0.03em;
|
|
37
|
-
--title-line-height: 1.25rem;
|
|
38
|
-
|
|
39
|
-
--subtitle-size: 1.075rem;
|
|
40
|
-
--subtitle-letter-spacing: 0.03em;
|
|
41
|
-
--subtitle-line-height: 1.175rem;
|
|
42
|
-
|
|
43
|
-
--body-size: 1rem;
|
|
44
|
-
--body-letter-spacing: 0.03em;
|
|
45
|
-
--body-line-height: 1.125rem;
|
|
46
|
-
|
|
47
|
-
--label-size: 0.875rem;
|
|
48
|
-
--label-letter-spacing: 0.05em;
|
|
49
|
-
--label-line-height: 1.025rem;
|
|
50
|
-
|
|
51
|
-
--smalltext-size: 0.75rem;
|
|
52
|
-
--smalltext-letter-spacing: 0.07em;
|
|
53
|
-
--smalltext-line-height: 1rem;
|
|
54
|
-
|
|
55
|
-
--caption-size: 0.7375rem;
|
|
56
|
-
--caption-letter-spacing: 0.07em;
|
|
57
|
-
--caption-line-height: 1rem;
|
|
58
|
-
|
|
59
|
-
--overline-size: 0.675rem;
|
|
60
|
-
--overline-letter-spacing: 0.1em;
|
|
61
|
-
--overline-line-height: 1rem;
|
|
62
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
// Rolster Technology Fonts Poppins
|
|
2
|
-
// v1.0.0
|
|
3
|
-
// @license MIT
|
|
4
|
-
// Author: Rolster Developers
|
|
5
|
-
// Created: 03/Mar/2018
|
|
6
|
-
// Updated: 13/Abr/2023
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: -rolster-system-font;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
font-weight: 100;
|
|
12
|
-
src: url('poppins-light.woff2') format('woff2');
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: -rolster-system-font;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: 200;
|
|
19
|
-
src: url('poppins-light.woff2') format('woff2');
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: -rolster-system-font;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 300;
|
|
26
|
-
src: url('poppins-light.woff2') format('woff2');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: -rolster-system-font;
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-weight: 400;
|
|
33
|
-
src: url('poppins-regular.woff2') format('woff2');
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: -rolster-system-font;
|
|
38
|
-
font-style: normal;
|
|
39
|
-
font-weight: 500;
|
|
40
|
-
src: url('poppins-medium.woff2') format('woff2');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: -rolster-system-font;
|
|
45
|
-
font-style: normal;
|
|
46
|
-
font-weight: 600;
|
|
47
|
-
src: url('poppins-semibold.woff2') format('woff2');
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: -rolster-system-font;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 700;
|
|
54
|
-
src: url('poppins-bold.woff2') format('woff2');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: -rolster-system-font;
|
|
59
|
-
font-style: normal;
|
|
60
|
-
font-weight: 800;
|
|
61
|
-
src: url('poppins-bold.woff2') format('woff2');
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@font-face {
|
|
65
|
-
font-family: -rolster-system-font;
|
|
66
|
-
font-style: normal;
|
|
67
|
-
font-weight: 900;
|
|
68
|
-
src: url('poppins-bold.woff2') format('woff2');
|
|
69
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|