@repobit/dex-system-design 0.2.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/CHANGELOG.md +11 -0
- package/README.md +15 -0
- package/package.json +57 -0
- package/src/assets/fonts/IBMPlexMono-Bold.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-BoldItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-Italic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-Light.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-LightItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-Medium.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-MediumItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-Regular.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-SemiBold.woff2 +0 -0
- package/src/assets/fonts/IBMPlexMono-SemiBoldItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-Bold.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-BoldItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-Italic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-Light.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-LightItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-Medium.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-MediumItalic.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-Regular.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-SemiBold.woff2 +0 -0
- package/src/assets/fonts/IBMPlexSans-SemiBoldItalic.woff2 +0 -0
- package/src/assets/fonts/bd-ibm-plex-mono.zip +0 -0
- package/src/assets/fonts/bd-ibm-plex-sans.zip +0 -0
- package/src/assets/icons/badge-icon-individual.png +0 -0
- package/src/assets/icons/bd-icon-family-white.png +0 -0
- package/src/assets/icons/bd-icon-family.png +0 -0
- package/src/assets/icons/bd-icon-user.png +0 -0
- package/src/assets/icons/left_clicked.png +0 -0
- package/src/assets/icons/left_disabled.png +0 -0
- package/src/assets/icons/left_hover.png +0 -0
- package/src/assets/icons/left_normal.png +0 -0
- package/src/assets/icons/light-carousel-img1.png +0 -0
- package/src/assets/icons/light-carousel-img2.png +0 -0
- package/src/assets/icons/light-carousel-img3.png +0 -0
- package/src/assets/icons/more_hover.png +0 -0
- package/src/assets/icons/more_normal.png +0 -0
- package/src/assets/icons/more_pressed.png +0 -0
- package/src/assets/icons/pic1.png +0 -0
- package/src/assets/icons/pic2.png +0 -0
- package/src/assets/icons/pic3.png +0 -0
- package/src/assets/icons/right_clicked.png +0 -0
- package/src/assets/icons/right_disabled.png +0 -0
- package/src/assets/icons/right_hover.png +0 -0
- package/src/assets/icons/right_normal.png +0 -0
- package/src/assets/icons/tabs-img1.png +0 -0
- package/src/assets/icons/tabs-img2.png +0 -0
- package/src/assets/icons/tabs-img3.png +0 -0
- package/src/assets/icons/verified_arrow.png +0 -0
- package/src/components/Button/Button.js +120 -0
- package/src/components/Button/button.css.js +137 -0
- package/src/components/Button/button.stories.js +56 -0
- package/src/components/Button/icons.css +5 -0
- package/src/components/Button/icons.js +24 -0
- package/src/components/Button/index.js +0 -0
- package/src/components/FAQ/faq.css.js +107 -0
- package/src/components/FAQ/faq.js +176 -0
- package/src/components/FAQ/faq.stories.js +45 -0
- package/src/components/Input/Input.js +27 -0
- package/src/components/Input/index.js +0 -0
- package/src/components/Input/input.css.js +68 -0
- package/src/components/carousel/carousel.css.js +304 -0
- package/src/components/carousel/carousel.js +226 -0
- package/src/components/carousel/carousel.stories.js +73 -0
- package/src/components/light-carousel/light-carousel.css.js +149 -0
- package/src/components/light-carousel/light-carousel.js +108 -0
- package/src/components/light-carousel/light-carousel.stories.js +43 -0
- package/src/components/paragraph/paragraph.css.js +16 -0
- package/src/components/paragraph/paragraph.js +59 -0
- package/src/components/pricing-cards/pricing-card.css.js +409 -0
- package/src/components/pricing-cards/pricing-card.js +764 -0
- package/src/components/pricing-cards/pricing-card.stories.js +12 -0
- package/src/components/tabs/tabs.css.js +239 -0
- package/src/components/tabs/tabs.js +183 -0
- package/src/components/tabs/tabs.stories.js +18 -0
- package/src/components/termsOfUse/terms.css.js +38 -0
- package/src/components/termsOfUse/terms.js +226 -0
- package/src/components/termsOfUse/terms.stories.js +14 -0
- package/src/index.js +0 -0
- package/src/stories/Button.js +20 -0
- package/src/stories/Button.stories.js +46 -0
- package/src/stories/Configure.mdx +364 -0
- package/src/stories/Header.js +45 -0
- package/src/stories/Header.stories.js +24 -0
- package/src/stories/Page.js +62 -0
- package/src/stories/Page.stories.js +20 -0
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +1 -0
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/avif-test-image.avif +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +1 -0
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +1 -0
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +1 -0
- package/src/stories/assets/youtube.svg +1 -0
- package/src/stories/button.css +30 -0
- package/src/stories/header.css +32 -0
- package/src/stories/page.css +68 -0
- package/src/tokens/colors.js +121 -0
- package/src/tokens/layout.css +46 -0
- package/src/tokens/tokens.css +297 -0
- package/src/tokens/typography.css.js +207 -0
- package/src/tokens/typography.js +0 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
|
|
3
|
+
/* =====================
|
|
4
|
+
COLORS
|
|
5
|
+
====================== */
|
|
6
|
+
--color-blue-50: #F0F7FF;
|
|
7
|
+
--color-blue-100: #D6E8FF;
|
|
8
|
+
--color-blue-200: #9EC8FF;
|
|
9
|
+
--color-blue-300: #6BABFF;
|
|
10
|
+
--color-blue-400: #338BFF;
|
|
11
|
+
--color-blue-500: #006dff;
|
|
12
|
+
--color-blue-600: #0059D6;
|
|
13
|
+
--color-blue-700: #0045AD;
|
|
14
|
+
--color-blue-800: #003385;
|
|
15
|
+
--color-blue-900: #00225C;
|
|
16
|
+
--color-blue-950: #001947;
|
|
17
|
+
|
|
18
|
+
--color-red-50: #FFF0F0;
|
|
19
|
+
--color-red-100: #FFD6D6;
|
|
20
|
+
--color-red-200: #FF9E9E;
|
|
21
|
+
--color-red-300: #FF6B6B;
|
|
22
|
+
--color-red-400: #FF3333;
|
|
23
|
+
--color-red-500: #FF0000;
|
|
24
|
+
--color-red-600: #D60000;
|
|
25
|
+
--color-red-700: #AD0000;
|
|
26
|
+
--color-red-800: #850000;
|
|
27
|
+
--color-red-900: #5C0000;
|
|
28
|
+
--color-red-950: #470000;
|
|
29
|
+
|
|
30
|
+
--color-green-50: #EDFDF1;
|
|
31
|
+
--color-green-100: #D1FADC;
|
|
32
|
+
--color-green-200: #9AF4B4;
|
|
33
|
+
--color-green-300: #63EE8D;
|
|
34
|
+
--color-green-400: #2CE767;
|
|
35
|
+
--color-green-500: #15C14F;
|
|
36
|
+
--color-green-600: #12A641;
|
|
37
|
+
--color-green-700: #0E8532;
|
|
38
|
+
--color-green-800: #0B6A26;
|
|
39
|
+
--color-green-900: #084A1A;
|
|
40
|
+
--color-green-950: #063C14;
|
|
41
|
+
|
|
42
|
+
--color-yellow-50: #FFFBF0;
|
|
43
|
+
--color-yellow-100: #FFF5D6;
|
|
44
|
+
--color-yellow-200: #FFE89E;
|
|
45
|
+
--color-yellow-300: #FFDC6B;
|
|
46
|
+
--color-yellow-400: #FFCF33;
|
|
47
|
+
--color-yellow-500: #FFC400;
|
|
48
|
+
--color-yellow-600: #D6A000;
|
|
49
|
+
--color-yellow-700: #AD7F00;
|
|
50
|
+
--color-yellow-800: #855F00;
|
|
51
|
+
--color-yellow-900: #5C4000;
|
|
52
|
+
--color-yellow-950: #473100;
|
|
53
|
+
|
|
54
|
+
--color-neutral-0: #FFFFFF;
|
|
55
|
+
--color-neutral-25: #FAFAFA;
|
|
56
|
+
--color-neutral-50: #f1f2f3;
|
|
57
|
+
--color-neutral-100: #e1e3e5;
|
|
58
|
+
--color-neutral-200: #c5c9ce;
|
|
59
|
+
--color-neutral-300: #a6adb4;
|
|
60
|
+
--color-neutral-400: #88909b;
|
|
61
|
+
--color-neutral-500: #6c7580;
|
|
62
|
+
--color-neutral-600: #565e66;
|
|
63
|
+
--color-neutral-700: #41474d;
|
|
64
|
+
--color-neutral-800: #2c3035;
|
|
65
|
+
--color-neutral-900: #151719;
|
|
66
|
+
--color-neutral-950: #0c0d0e;
|
|
67
|
+
--color-neutral-1000: #000000;
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
/* =====================
|
|
71
|
+
DISPLAY FONT SIZES
|
|
72
|
+
====================== */
|
|
73
|
+
|
|
74
|
+
/* Display default */
|
|
75
|
+
--display-xxsmall: 44px; /* 58.652px = 3.666rem */
|
|
76
|
+
--display-xsmall: 48px; /* 63.984px = 3.999rem */
|
|
77
|
+
--display-small: 52px; /* 69.316px = 4.332rem */
|
|
78
|
+
--display-medium: 56px; /* 74.648px = 4.666rem */
|
|
79
|
+
--display-large: 60px; /* 79.98px = 5rem */
|
|
80
|
+
--display-xlarge: 64px; /* 85.312px = 5.333rem */
|
|
81
|
+
|
|
82
|
+
/* Display mobile */
|
|
83
|
+
--display-xxsmall-mobile: 34px; /* 45.322px = 2.833rem */
|
|
84
|
+
--display-xsmall-mobile: 36px; /* 47.988px = 2.999rem */
|
|
85
|
+
--display-small-mobile: 38px; /* 50.654px = 3.167rem */
|
|
86
|
+
--display-medium-mobile: 40px; /* 53.32px = 3.333rem */
|
|
87
|
+
--display-large-mobile: 44px; /* 58.652px = 3.666rem */
|
|
88
|
+
--display-xlarge-mobile: 48px; /* 63.984px = 3.999rem */
|
|
89
|
+
|
|
90
|
+
/* Heading default */
|
|
91
|
+
--heading-xxsmall: 18px; /* 23.994px = 1.5rem */
|
|
92
|
+
--heading-xsmall: 20px; /* 26.66px = 1.667rem */
|
|
93
|
+
--heading-small: 24px; /* 31.992px = 2rem */
|
|
94
|
+
--heading-medium: 28px; /* 37.324px = 2.333rem */
|
|
95
|
+
--heading-large: 32px; /* 42.656px = 2.667rem */
|
|
96
|
+
--heading-xlarge: 36px; /* 47.988px = 2.999rem */
|
|
97
|
+
--heading-xxlarge: 40px; /* 53.32px = 3.333rem */
|
|
98
|
+
|
|
99
|
+
/* Body default */
|
|
100
|
+
--body-small: 13px; /* 17.329px = 1.083rem */
|
|
101
|
+
--body-medium: 14px; /* 18.662px = 1.167rem */
|
|
102
|
+
--body-large: 16px; /* 21.328px = 1.333rem */
|
|
103
|
+
--body-xlarge: 18px; /* 23.994px = 1.5rem */
|
|
104
|
+
|
|
105
|
+
/* Caption default */
|
|
106
|
+
--caption-small: 11px; /* 14.663px = 0.917rem */
|
|
107
|
+
--caption-large: 12px; /* 15.996px = 1rem */
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/* =====================
|
|
111
|
+
PADDING SIZES
|
|
112
|
+
====================== */
|
|
113
|
+
|
|
114
|
+
/* PADDING VALUES */
|
|
115
|
+
--size-0: 0;
|
|
116
|
+
--size-1: 1px;
|
|
117
|
+
--size-2: 2px;
|
|
118
|
+
--size-4: 4px;
|
|
119
|
+
--size-6: 6px;
|
|
120
|
+
--size-8: 8px;
|
|
121
|
+
--size-10: 10px;
|
|
122
|
+
--size-12: 12px;
|
|
123
|
+
--size-14: 14px;
|
|
124
|
+
--size-16: 16px;
|
|
125
|
+
--size-18: 18px;
|
|
126
|
+
--size-20: 20px;
|
|
127
|
+
--size-24: 24px;
|
|
128
|
+
--size-32: 32px;
|
|
129
|
+
--size-36: 36px;
|
|
130
|
+
--size-40: 40px;
|
|
131
|
+
--size-44: 44px;
|
|
132
|
+
--size-52: 52px;
|
|
133
|
+
--size-64: 64px;
|
|
134
|
+
--size-full: 99999999999999999999;
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
/* =====================
|
|
138
|
+
FONT-FACE DEFINITIONS
|
|
139
|
+
====================== */
|
|
140
|
+
|
|
141
|
+
@font-face {
|
|
142
|
+
font-family: 'IBM Plex Mono';
|
|
143
|
+
font-style: normal;
|
|
144
|
+
font-weight: 700;
|
|
145
|
+
src: url('/assets/fonts/IBMPlexMono-Bold.woff2') format('woff2');
|
|
146
|
+
}
|
|
147
|
+
@font-face {
|
|
148
|
+
font-family: 'IBM Plex Mono';
|
|
149
|
+
font-style: normal;
|
|
150
|
+
font-weight: 700;
|
|
151
|
+
src: url('/assets/fonts/IBMPlexMono-BoldItalic.woff2') format('woff2');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@font-face {
|
|
155
|
+
font-family: 'IBM Plex Mono';
|
|
156
|
+
font-style: italic;
|
|
157
|
+
font-weight: 300;
|
|
158
|
+
src: url('/assets/fonts/IBMPlexMono-Italic.woff2') format('woff2');
|
|
159
|
+
}
|
|
160
|
+
@font-face {
|
|
161
|
+
font-family: 'IBM Plex Mono';
|
|
162
|
+
font-style: normal;
|
|
163
|
+
font-weight: 300;
|
|
164
|
+
src: url('/assets/fonts/IBMPlexMono-Light.woff2') format('woff2');
|
|
165
|
+
}
|
|
166
|
+
@font-face {
|
|
167
|
+
font-family: 'IBM Plex Mono';
|
|
168
|
+
font-style: italic;
|
|
169
|
+
font-weight: 300;
|
|
170
|
+
src: url('/assets/fonts/IBMPlexMono-LightItalic.woff2') format('woff2');
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
@font-face {
|
|
174
|
+
font-family: 'IBM Plex Mono';
|
|
175
|
+
font-style: italic;
|
|
176
|
+
font-weight: 500;
|
|
177
|
+
src: url('/assets/fonts/IBMPlexMono-Medium.woff2') format('woff2');
|
|
178
|
+
}
|
|
179
|
+
@font-face {
|
|
180
|
+
font-family: 'IBM Plex Mono';
|
|
181
|
+
font-style: italic;
|
|
182
|
+
font-weight: 500;
|
|
183
|
+
src: url('/assets/fonts/IBMPlexMono-MediumItalic.woff2') format('woff2');
|
|
184
|
+
}
|
|
185
|
+
@font-face {
|
|
186
|
+
font-family: 'IBM Plex Mono';
|
|
187
|
+
font-style: italic;
|
|
188
|
+
font-weight: 400;
|
|
189
|
+
src: url('/assets/fonts/IBMPlexMono-Regular.woff2') format('woff2');
|
|
190
|
+
}
|
|
191
|
+
@font-face {
|
|
192
|
+
font-family: 'IBM Plex Mono';
|
|
193
|
+
font-style: italic;
|
|
194
|
+
font-weight: 600;
|
|
195
|
+
src: url('/assets/fonts/IBMPlexMono-SemiBold.woff2') format('woff2');
|
|
196
|
+
}
|
|
197
|
+
@font-face {
|
|
198
|
+
font-family: 'IBM Plex Mono';
|
|
199
|
+
font-style: italic;
|
|
200
|
+
font-weight: 600;
|
|
201
|
+
src: url('/assets/fonts/IBMPlexMono-SemiBoldItalic.woff2') format('woff2');
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/*
|
|
205
|
+
IBM PLEX SANS
|
|
206
|
+
*/
|
|
207
|
+
|
|
208
|
+
@font-face {
|
|
209
|
+
font-family: 'IBMPlexSans';
|
|
210
|
+
font-style: normal;
|
|
211
|
+
font-weight: 700;
|
|
212
|
+
src: url('/assets/fonts/IBMPlexSans-Bold.woff2') format('woff2');
|
|
213
|
+
}
|
|
214
|
+
@font-face {
|
|
215
|
+
font-family: 'IBMPlexSans';
|
|
216
|
+
font-style: normal;
|
|
217
|
+
font-weight: 700;
|
|
218
|
+
src: url('/assets/fonts/IBMPlexSans-BoldItalic.woff2') format('woff2');
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
@font-face {
|
|
222
|
+
font-family: 'IBMPlexSans';
|
|
223
|
+
font-style: italic;
|
|
224
|
+
font-weight: 300;
|
|
225
|
+
src: url('/assets/fonts/IBMPlexSans-Italic.woff2') format('woff2');
|
|
226
|
+
}
|
|
227
|
+
@font-face {
|
|
228
|
+
font-family: 'IBMPlexSans';
|
|
229
|
+
font-style: normal;
|
|
230
|
+
font-weight: 300;
|
|
231
|
+
src: url('/assets/fonts/IBMPlexSans-Light.woff2') format('woff2');
|
|
232
|
+
}
|
|
233
|
+
@font-face {
|
|
234
|
+
font-family: 'IBMPlexSans';
|
|
235
|
+
font-style: italic;
|
|
236
|
+
font-weight: 300;
|
|
237
|
+
src: url('/assets/fonts/IBMPlexSans-LightItalic.woff2') format('woff2');
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@font-face {
|
|
241
|
+
font-family: 'IBMPlexSans';
|
|
242
|
+
font-style: italic;
|
|
243
|
+
font-weight: 500;
|
|
244
|
+
src: url('/assets/fonts/IBMPlexSans-Medium.woff2') format('woff2');
|
|
245
|
+
}
|
|
246
|
+
@font-face {
|
|
247
|
+
font-family: 'IBMPlexSans';
|
|
248
|
+
font-style: italic;
|
|
249
|
+
font-weight: 500;
|
|
250
|
+
src: url('/assets/fonts/IBMPlexSans-MediumItalic.woff2') format('woff2');
|
|
251
|
+
}
|
|
252
|
+
@font-face {
|
|
253
|
+
font-family: 'IBMPlexSans';
|
|
254
|
+
font-style: italic;
|
|
255
|
+
font-weight: 400;
|
|
256
|
+
src: url('/assets/fonts/IBMPlexSans-Regular.woff2') format('woff2');
|
|
257
|
+
}
|
|
258
|
+
@font-face {
|
|
259
|
+
font-family: 'IBMPlexSans';
|
|
260
|
+
font-style: italic;
|
|
261
|
+
font-weight: 600;
|
|
262
|
+
src: url('/assets/fonts/IBMPlexSans-SemiBold.woff2') format('woff2');
|
|
263
|
+
}
|
|
264
|
+
@font-face {
|
|
265
|
+
font-family: 'IBMPlexSans';
|
|
266
|
+
font-style: italic;
|
|
267
|
+
font-weight: 600;
|
|
268
|
+
src: url('/assets/fonts/IBMPlexSans-SemiBoldItalic.woff2') format('woff2');
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/* =====================
|
|
272
|
+
FONT TOKENS
|
|
273
|
+
====================== */
|
|
274
|
+
/* IBM Plex Mono */
|
|
275
|
+
--font-family-mono: 'IBM Plex Mono', monospace;
|
|
276
|
+
--font-weight-mono-light: 300;
|
|
277
|
+
--font-weight-mono-regular: 400;
|
|
278
|
+
--font-weight-mono-medium: 500;
|
|
279
|
+
--font-weight-mono-semibold: 600;
|
|
280
|
+
--font-weight-mono-bold: 700;
|
|
281
|
+
|
|
282
|
+
--font-style-mono-normal: normal;
|
|
283
|
+
--font-style-mono-italic: italic;
|
|
284
|
+
|
|
285
|
+
/* IBMPlexSans */
|
|
286
|
+
--font-family-sans: 'IBM Plex Sans', sans-serif;
|
|
287
|
+
--font-weight-sans-light: 300;
|
|
288
|
+
--font-weight-sans-regular: 400;
|
|
289
|
+
--font-weight-sans-medium: 500;
|
|
290
|
+
--font-weight-sans-semibold: 600;
|
|
291
|
+
--font-weight-sans-bold: 700;
|
|
292
|
+
|
|
293
|
+
--font-style-sans-normal: normal;
|
|
294
|
+
--font-style-sans-italic: italic;
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
}
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import { css } from "../../node_modules/lit-element/lit-element";
|
|
2
|
+
|
|
3
|
+
export default css`
|
|
4
|
+
|
|
5
|
+
/*<!-- typography -->*/
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
/* <!-- display -->/
|
|
10
|
+
/* <!-- desktop -->*/
|
|
11
|
+
.text-display-xlarge {
|
|
12
|
+
font-family: 'Arial',sans-serif;
|
|
13
|
+
font-size: 4em;
|
|
14
|
+
line-height: 1.2;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.text-display-large {
|
|
18
|
+
font-family: 'Arial',sans-serif;
|
|
19
|
+
font-size: 3.75em;
|
|
20
|
+
line-height: 1.2;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.text-display-medium {
|
|
24
|
+
font-family: 'Arial',sans-serif;
|
|
25
|
+
font-size: 3.5em;
|
|
26
|
+
line-height: 1.2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.text-display-small {
|
|
30
|
+
font-family: 'Arial',sans-serif;
|
|
31
|
+
font-size: 3.25em;
|
|
32
|
+
line-height: 1.2;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.text-display-xsmall {
|
|
36
|
+
font-family: 'Arial',sans-serif;
|
|
37
|
+
font-size: 3em;
|
|
38
|
+
line-height: 1.16;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.text-display-xxsmall {
|
|
42
|
+
font-family: 'Arial',sans-serif;
|
|
43
|
+
font-size: 2.75em;
|
|
44
|
+
line-height: 1.18;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* <!-- mobile -->
|
|
48
|
+
*/
|
|
49
|
+
.text-display-xlarge {
|
|
50
|
+
font-family: 'Arial',sans-serif;
|
|
51
|
+
font-size: 4em;
|
|
52
|
+
line-height: 1.2;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.text-display-large {
|
|
56
|
+
font-family: 'Arial',sans-serif;
|
|
57
|
+
font-size: 3.75em;
|
|
58
|
+
line-height: 1.2;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.text-display-medium {
|
|
62
|
+
font-family: 'Arial',sans-serif;
|
|
63
|
+
font-size: 3.5em;
|
|
64
|
+
line-height: 1.2;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.text-display-small {
|
|
68
|
+
font-family: 'Arial',sans-serif;
|
|
69
|
+
font-size: 3.25em;
|
|
70
|
+
line-height: 1.2;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text-display-xsmall {
|
|
74
|
+
font-family: 'Arial',sans-serif;
|
|
75
|
+
font-size: 3em;
|
|
76
|
+
line-height: 1.16;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.text-display-xxsmall {
|
|
80
|
+
font-family: 'Arial',sans-serif;
|
|
81
|
+
font-size: 2.75em;
|
|
82
|
+
line-height: 1.18;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/*<!-- heading -->
|
|
87
|
+
*/
|
|
88
|
+
/* <!-- desktop -->
|
|
89
|
+
*/
|
|
90
|
+
.text-heading-xxlarge {
|
|
91
|
+
font-family: 'Arial',sans-serif;
|
|
92
|
+
font-size: 2.5em;
|
|
93
|
+
line-height: 1.2;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.text-heading-xlarge {
|
|
97
|
+
font-family: 'Arial',sans-serif;
|
|
98
|
+
font-size: 2.25em;
|
|
99
|
+
line-height: 1.2;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.text-heading-large {
|
|
103
|
+
font-family: 'Arial',sans-serif;
|
|
104
|
+
font-size: 2em;
|
|
105
|
+
line-height: 1.25;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.text-heading-medium {
|
|
109
|
+
font-family: 'Arial',sans-serif;
|
|
110
|
+
font-size: 1.75em;
|
|
111
|
+
line-height: 1.28;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.text-heading-small {
|
|
115
|
+
font-family: 'Arial',sans-serif;
|
|
116
|
+
font-size: 1.5em;
|
|
117
|
+
line-height: 1.3;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.text-heading-xsmall {
|
|
121
|
+
font-family: 'Arial',sans-serif;
|
|
122
|
+
font-size: 1.25em;
|
|
123
|
+
line-height: 1.3;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.text-heading-xxsmall {
|
|
127
|
+
font-family: 'Arial',sans-serif;
|
|
128
|
+
font-size: 1.125em;
|
|
129
|
+
line-height: 1.33;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
/* <!-- mobile -->*/
|
|
134
|
+
.text-heading-xxlarge {
|
|
135
|
+
font-family: 'Arial',sans-serif;
|
|
136
|
+
font-size: 2em;
|
|
137
|
+
line-height: 1.25;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.text-heading-xlarge {
|
|
141
|
+
font-family: 'Arial',sans-serif;
|
|
142
|
+
font-size: 1.875em;
|
|
143
|
+
line-height: 1.25;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.text-heading-large {
|
|
147
|
+
font-family: 'Arial',sans-serif;
|
|
148
|
+
font-size: 1.75em;
|
|
149
|
+
line-height: 1.3;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.text-heading-medium {
|
|
153
|
+
font-family: 'Arial',sans-serif;
|
|
154
|
+
font-size: 1.625em;
|
|
155
|
+
line-height: 1.3;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
/*<!-- body -->*/
|
|
162
|
+
/* <!-- desktop & mobile -->
|
|
163
|
+
*/
|
|
164
|
+
|
|
165
|
+
.text-body-xlarge {
|
|
166
|
+
font-family: 'Arial',sans-serif;
|
|
167
|
+
font-size: 1.125em;
|
|
168
|
+
line-height: 1.2;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.text-body-large {
|
|
172
|
+
font-family: 'Arial',sans-serif;
|
|
173
|
+
font-size: 1em;
|
|
174
|
+
line-height: 1.25;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.text-body-medium {
|
|
178
|
+
font-family: 'Arial',sans-serif;
|
|
179
|
+
font-size: 0.875em;
|
|
180
|
+
line-height: 1.25;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.text-body-small {
|
|
184
|
+
font-family: 'Arial',sans-serif;
|
|
185
|
+
font-size: 0.813em;
|
|
186
|
+
line-height: 1.25;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/*<!-- caption -->*/
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
/*<!-- desktop & mobile -->*/
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
.text-body-large {
|
|
196
|
+
font-family: 'Arial',sans-serif;
|
|
197
|
+
font-size: 0.75em;
|
|
198
|
+
line-height: 1.45;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.text-body-small {
|
|
202
|
+
font-family: 'Arial',sans-serif;
|
|
203
|
+
font-size: 0.688em;
|
|
204
|
+
line-height: 1.33;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
`
|
|
File without changes
|