@castlabs/ui 7.2.0 → 7.2.1
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/assets/DMMono/index.scss +41 -0
- package/dist/assets/FontAwesome5/LICENSE.txt +34 -0
- package/{src/fonts/FontAwesome5/FontAwesome5.scss → dist/assets/FontAwesome5/index.scss} +5 -7
- package/{src/fonts/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap.scss → dist/assets/NonNaturalGroteskInktrap/index.scss} +5 -4
- package/dist/castlabs-ui.common.js +1 -1
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.css +6 -6
- package/dist/castlabs-ui.umd.js +9 -9
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ClButton/style.scss +3 -3
- package/src/components/form/ClFieldCheck/style.scss +3 -2
- package/src/components/form/ClFieldSelect/style.scss +4 -5
- package/src/styles/abstracts/color.scss +9 -0
- package/src/styles/assets/logo.scss +4 -3
- package/src/styles/fonts/DMMono/DM_Mono_300.woff2 +0 -0
- package/src/styles/fonts/DMMono/DM_Mono_300italic.woff2 +0 -0
- package/src/styles/fonts/DMMono/DM_Mono_400.woff2 +0 -0
- package/src/styles/fonts/DMMono/DM_Mono_400italic.woff2 +0 -0
- package/src/styles/fonts/DMMono/DM_Mono_500.woff2 +0 -0
- package/src/styles/fonts/DMMono/DM_Mono_500italic.woff2 +0 -0
- package/src/styles/fonts/DMMono/index.scss +41 -0
- package/src/styles/fonts/FontAwesome5/fa-brands-400.woff2 +0 -0
- package/src/styles/fonts/FontAwesome5/fa-regular-400.woff2 +0 -0
- package/src/styles/fonts/FontAwesome5/fa-solid-900.woff2 +0 -0
- package/src/styles/fonts/FontAwesome5/index.scss +6124 -0
- package/src/styles/fonts/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Bold.woff2 +0 -0
- package/src/styles/fonts/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Medium.woff2 +0 -0
- package/src/styles/fonts/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Regular.woff2 +0 -0
- package/src/styles/fonts/NonNaturalGroteskInktrap/index.scss +37 -0
- package/src/styles/layout/typography.scss +8 -5
- package/src/styles/ui.scss +15 -7
- package/src/styles/vendors/bootstrap.scss +1 -0
- package/src/assets/bs/checked.svg +0 -1
- package/src/assets/bs/select-disabled.svg +0 -1
- package/src/assets/bs/select.svg +0 -1
- package/src/assets/castlabs-logo-eggshell.svg +0 -33
- package/src/assets/castlabs-logo.svg +0 -33
- package/src/fonts/DMMono/DMMono.scss +0 -46
- package/src/styles/assets/fontawesome.scss +0 -4
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_300.woff2 +0 -0
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_300italic.woff2 +0 -0
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_400.woff2 +0 -0
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_400italic.woff2 +0 -0
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_500.woff2 +0 -0
- /package/{src/fonts → dist/assets}/DMMono/DM_Mono_500italic.woff2 +0 -0
- /package/{src/fonts → dist/assets}/FontAwesome5/fa-brands-400.woff2 +0 -0
- /package/{src/fonts → dist/assets}/FontAwesome5/fa-regular-400.woff2 +0 -0
- /package/{src/fonts → dist/assets}/FontAwesome5/fa-solid-900.woff2 +0 -0
- /package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Bold.woff2 +0 -0
- /package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Medium.woff2 +0 -0
- /package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Regular.woff2 +0 -0
- /package/dist/assets/{bs/checked.svg → checked.svg} +0 -0
- /package/dist/assets/{bs/select-disabled.svg → select-disabled.svg} +0 -0
- /package/dist/assets/{bs/select.svg → select.svg} +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// stylelint-disable at-rule-descriptor-value-no-unknown
|
|
2
|
+
|
|
3
|
+
$cl-url-prefix: '' !default;
|
|
4
|
+
$cl-url-postfix: '' !default;
|
|
5
|
+
|
|
6
|
+
$non-natural-ascent-override: 100%;
|
|
7
|
+
$non-natural-descent-override: 40%;
|
|
8
|
+
|
|
9
|
+
@mixin NonNaturalGroteskInktrap {
|
|
10
|
+
@font-face {
|
|
11
|
+
ascent-override: $non-natural-ascent-override;
|
|
12
|
+
descent-override: $non-natural-descent-override;
|
|
13
|
+
font-family: NonNaturalGroteskInktrap;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Regular.woff2#{$cl-url-postfix}')
|
|
17
|
+
format('woff2');
|
|
18
|
+
}
|
|
19
|
+
@font-face {
|
|
20
|
+
ascent-override: $non-natural-ascent-override;
|
|
21
|
+
descent-override: $non-natural-descent-override;
|
|
22
|
+
font-family: NonNaturalGroteskInktrap;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
font-weight: 500;
|
|
25
|
+
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Medium.woff2#{$cl-url-postfix}')
|
|
26
|
+
format('woff2');
|
|
27
|
+
}
|
|
28
|
+
@font-face {
|
|
29
|
+
ascent-override: $non-natural-ascent-override;
|
|
30
|
+
descent-override: $non-natural-descent-override;
|
|
31
|
+
font-family: NonNaturalGroteskInktrap;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-weight: 700;
|
|
34
|
+
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Bold.woff2#{$cl-url-postfix}')
|
|
35
|
+
format('woff2');
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -5,16 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
// This file defines our basic typography rules.
|
|
7
7
|
|
|
8
|
-
$cl-
|
|
8
|
+
$cl-url-prefix: '' !default;
|
|
9
|
+
$cl-url-postfix: '' !default;
|
|
9
10
|
|
|
10
11
|
@use '../global' as *;
|
|
11
12
|
|
|
12
13
|
// conditionally import fonts so themes can omit them
|
|
13
|
-
@use '
|
|
14
|
-
$cl-
|
|
14
|
+
@use '../fonts/DMMono' with (
|
|
15
|
+
$cl-url-prefix: '#{$cl-url-prefix}DMMono/',
|
|
16
|
+
$cl-url-postfix: $cl-url-postfix
|
|
15
17
|
);
|
|
16
|
-
@use '
|
|
17
|
-
$cl-
|
|
18
|
+
@use '../fonts/NonNaturalGroteskInktrap' with (
|
|
19
|
+
$cl-url-prefix: '#{$cl-url-prefix}NonNaturalGroteskInktrap/',
|
|
20
|
+
$cl-url-postfix: $cl-url-postfix
|
|
18
21
|
);
|
|
19
22
|
$castlabs-ui-fonts: true !default;
|
|
20
23
|
@if $castlabs-ui-fonts {
|
package/src/styles/ui.scss
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
// It is not to be used in Vue.js projects, but any other web frameworks that
|
|
8
8
|
// want to pull in our styles via a .scss file.
|
|
9
9
|
|
|
10
|
-
$castlabs-ui-asset-prefix: '
|
|
10
|
+
$castlabs-ui-asset-prefix: './' !default;
|
|
11
|
+
$castlabs-ui-asset-postfix: '' !default;
|
|
11
12
|
|
|
12
13
|
@use 'vendors/bootstrap'; // must go first
|
|
13
14
|
|
|
@@ -20,14 +21,17 @@ $castlabs-ui-asset-prefix: '.' !default;
|
|
|
20
21
|
@use 'layout/section';
|
|
21
22
|
@use 'layout/spacing';
|
|
22
23
|
@use 'layout/typography' with (
|
|
23
|
-
$cl-
|
|
24
|
+
$cl-url-prefix: $castlabs-ui-asset-prefix,
|
|
25
|
+
$cl-url-postfix: $castlabs-ui-asset-postfix
|
|
24
26
|
);
|
|
25
27
|
|
|
26
28
|
@use 'assets/logo' with (
|
|
27
|
-
$cl-
|
|
29
|
+
$cl-url-prefix: $castlabs-ui-asset-prefix,
|
|
30
|
+
$cl-url-postfix: $castlabs-ui-asset-postfix
|
|
28
31
|
);
|
|
29
|
-
@use '
|
|
30
|
-
$cl-
|
|
32
|
+
@use 'fonts/FontAwesome5' with (
|
|
33
|
+
$cl-url-prefix: '#{$castlabs-ui-asset-prefix}FontAwesome5/',
|
|
34
|
+
$cl-url-postfix: $castlabs-ui-asset-postfix
|
|
31
35
|
);
|
|
32
36
|
|
|
33
37
|
@use '../components/ClAlert/style' as *;
|
|
@@ -53,12 +57,16 @@ $castlabs-ui-asset-prefix: '.' !default;
|
|
|
53
57
|
@use '../components/ClWizard/style' as *;
|
|
54
58
|
@use '../components/form/ClField/style' as *;
|
|
55
59
|
@use '../components/form/ClFieldCheck/style' as * with (
|
|
56
|
-
$cl-
|
|
60
|
+
$cl-url-prefix: $castlabs-ui-asset-prefix,
|
|
61
|
+
$cl-url-postfix: $castlabs-ui-asset-postfix
|
|
57
62
|
);
|
|
58
63
|
@use '../components/form/ClFieldFile/style' as *;
|
|
59
64
|
@use '../components/form/ClFieldGroup/style' as *;
|
|
60
65
|
@use '../components/form/ClFieldInput/style' as *;
|
|
61
|
-
@use '../components/form/ClFieldSelect/style' as
|
|
66
|
+
@use '../components/form/ClFieldSelect/style' as * with (
|
|
67
|
+
$cl-url-prefix: $castlabs-ui-asset-prefix,
|
|
68
|
+
$cl-url-postfix: $castlabs-ui-asset-postfix
|
|
69
|
+
);
|
|
62
70
|
@use '../components/form/ClFieldSet/style' as *;
|
|
63
71
|
@use '../components/form/ClForm/style' as *;
|
|
64
72
|
@use '../components/modal/ClModal/style' as *;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#fbf9f2' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#cfc8c8' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m2 5 6 6 6-6'/></svg>
|
package/src/assets/bs/select.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#262a35' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m2 5 6 6 6-6'/></svg>
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1115.6 378.6">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.st0 {
|
|
6
|
-
fill: #fbf9f2;
|
|
7
|
-
}
|
|
8
|
-
</style>
|
|
9
|
-
</defs>
|
|
10
|
-
<g>
|
|
11
|
-
<path class="st0" d="M819.9,125.5h27.5v39.7c7.8-6.1,17.4-9.8,28.6-9.8,25.7,0,40.5,15.5,40.5,46.9s-15.5,48.6-43.4,48.6-20.7-3.3-28.6-8.3l-1.7,6.5h-22.9v-123.6ZM866.1,227.7c14.4,0,21.8-6.7,21.8-24.9s-7-24-19.6-24-14.4,2.6-20.9,6.5v38.3c5.7,2.8,11.8,4.3,18.7,4.3Z"/>
|
|
12
|
-
<path class="st0" d="M410,249.2c-5-2.5-8.8-6.1-11.5-10.6s-4.1-9.8-4.1-15.6,1.3-11,4-15.4c2.7-4.4,6.8-7.9,12.4-10.4,5.6-2.5,12.5-3.7,21-3.7s10.2.2,15.8.5c5.6.3,10.4.7,14.4,1l-3.6,15.2c-5.6-.7-11.9-1.1-18.7-1.1s-11.2,1-14.2,3c-2.9,2-4.4,4.8-4.4,8.4s.6,4.1,1.8,5.7,3,2.8,5.3,3.5c2.3.8,5.1,1.2,8.3,1.2,4.8,0,8.7-.9,12-2.7,3.2-1.8,5.6-4.3,7.2-7.4,1.6-3.2,2.4-6.8,2.4-11l2.7,24.1c-1.3,3.4-3.4,6.5-6.4,9.4s-6.8,5.3-11.5,7.1-9.9,2.7-15.8,2.7-12.3-1.3-17.2-3.8ZM452.6,182c-3.7-2.7-9.1-4.1-16.4-4.1s-10.2.5-15.1,1.4-9.5,2.2-13.7,3.9l-2.8-23.1c5.5-1.7,11.2-2.9,17.1-3.9,5.9-.9,11.8-1.4,17.8-1.4,15.8,0,27.6,3.6,35.3,10.8,7.7,7.2,11.5,17.3,11.5,30.5v54.9h-28l-.2-56.9c0-5.3-1.8-9.3-5.5-12Z"/>
|
|
13
|
-
<path class="st0" d="M516.7,250.9c-6.6-1.4-12.9-3.5-18.9-6.4l4.1-23c6,3,12.3,5.3,18.9,6.8,6.6,1.5,13.1,2.3,19.5,2.3s5.3-.2,7.4-.6,3.8-1.2,5.1-2.3c1.3-1.1,2-2.7,2-4.6s-.6-3-1.7-4.1-3.1-2-5.8-2.8c-2.7-.8-6.5-1.6-11.3-2.4-9.1-1.4-16.4-3.4-21.7-5.8s-9.2-5.5-11.6-9.2c-2.4-3.7-3.5-8.3-3.5-13.7.1-6.6,2-12.2,5.7-16.8,3.7-4.5,8.6-7.9,14.8-10.1,6.2-2.2,13.1-3.3,20.7-3.3s12.4.6,18.4,1.9,11.8,2.9,17.5,5l-3.6,22.9c-5-2.3-10.5-4.2-16.5-5.5-5.9-1.3-11.8-2-17.6-2s-5.1.2-6.9.6c-1.8.4-3.1,1.1-4.1,2s-1.5,2.1-1.6,3.7c0,1.4.5,2.5,1.5,3.4s2.7,1.8,5.1,2.6c2.5.8,6.1,1.6,10.9,2.5,9.4,1.7,16.9,3.9,22.5,6.5,5.6,2.6,9.6,5.9,12,9.7,2.4,3.8,3.7,8.5,3.7,14,0,6.8-2,12.4-5.8,17-3.8,4.6-8.9,8-15.4,10.3s-13.7,3.4-21.8,3.4-15.5-.7-22-2.1Z"/>
|
|
14
|
-
<path class="st0" d="M616.6,249.3c-5-2.5-8.8-6.2-11.5-11.2-2.6-4.9-3.9-10.9-3.9-18v-40.2h-12.4v-12.5l10.9-11.3,18.5-19.8h10.9v20.6h28.8v23h-28.8v36.3c0,2.6.4,4.8,1.3,6.7.9,1.9,2.2,3.3,3.9,4.2,1.7,1,3.7,1.5,6,1.5s5-.3,7.7-.8c2.6-.6,5.2-1.4,7.8-2.6l5.1,21.3c-3.9,2.1-8.2,3.7-12.9,4.9s-9.1,1.7-13.4,1.7c-7.1,0-13.1-1.3-18.1-3.8Z"/>
|
|
15
|
-
<path class="st0" d="M672.4,125.5h28.1v125.4h-28.1v-125.4Z"/>
|
|
16
|
-
<path class="st0" d="M728.2,249.2c-5-2.5-8.8-6.1-11.5-10.6s-4.1-9.8-4.1-15.6,1.3-11,4-15.4c2.7-4.4,6.8-7.9,12.4-10.4,5.6-2.5,12.5-3.7,21-3.7s10.2.2,15.8.5c5.6.3,10.4.7,14.4,1l-3.6,15.2c-5.6-.7-11.9-1.1-18.7-1.1s-11.2,1-14.2,3c-2.9,2-4.4,4.8-4.4,8.4s.6,4.1,1.8,5.7,3,2.8,5.3,3.5c2.3.8,5.1,1.2,8.3,1.2,4.8,0,8.7-.9,12-2.7,3.2-1.8,5.6-4.3,7.2-7.4,1.6-3.2,2.4-6.8,2.4-11l2.7,24.1c-1.3,3.4-3.4,6.5-6.4,9.4s-6.8,5.3-11.5,7.1-9.9,2.7-15.8,2.7-12.3-1.3-17.2-3.8ZM770.9,182c-3.7-2.7-9.1-4.1-16.4-4.1s-10.2.5-15.1,1.4-9.5,2.2-13.7,3.9l-2.8-23.1c5.5-1.7,11.2-2.9,17.1-3.9,5.9-.9,11.8-1.4,17.8-1.4,15.8,0,27.6,3.6,35.3,10.8,7.7,7.2,11.5,17.3,11.5,30.5v54.9h-28l-.2-56.9c0-5.3-1.8-9.3-5.5-12Z"/>
|
|
17
|
-
<path class="st0" d="M943.7,250.9c-6.6-1.4-12.9-3.5-18.9-6.4l4.1-23c6,3,12.3,5.3,18.9,6.8,6.6,1.5,13.1,2.3,19.5,2.3s5.3-.2,7.4-.6c2.1-.4,3.8-1.2,5.1-2.3,1.3-1.1,1.9-2.7,1.9-4.6s-.6-3-1.7-4.1-3.1-2-5.8-2.8c-2.7-.8-6.5-1.6-11.3-2.4-9.1-1.4-16.4-3.4-21.7-5.8-5.4-2.4-9.2-5.5-11.6-9.2-2.4-3.7-3.5-8.3-3.5-13.7.1-6.6,2-12.2,5.7-16.8,3.7-4.5,8.6-7.9,14.8-10.1,6.2-2.2,13.1-3.3,20.7-3.3s12.4.6,18.4,1.9c6,1.2,11.8,2.9,17.5,5l-3.6,22.9c-5-2.3-10.5-4.2-16.5-5.5-6-1.3-11.8-2-17.6-2s-5.1.2-6.9.6-3.1,1.1-4.1,2c-.9.9-1.5,2.1-1.6,3.7,0,1.4.5,2.5,1.5,3.4,1,.9,2.7,1.8,5.1,2.6,2.5.8,6.1,1.6,10.9,2.5,9.4,1.7,16.9,3.9,22.5,6.5,5.6,2.6,9.6,5.9,12,9.7s3.7,8.5,3.7,14c0,6.8-2,12.4-5.8,17-3.8,4.6-8.9,8-15.4,10.3-6.4,2.3-13.7,3.4-21.8,3.4s-15.5-.7-22-2.1Z"/>
|
|
18
|
-
<path class="st0" d="M362.8,224.2c-5.4,1.9-10.9,2.9-16.4,2.9s-13-1.5-18.4-4.4c-5.5-2.9-9.8-7.2-13-12.7-3.2-5.5-4.7-12.1-4.7-19.7s1.5-14.1,4.6-19.7c3.1-5.5,7.4-9.7,12.8-12.7,5.4-2.9,11.5-4.4,18.4-4.4s7.3.4,10.9,1.3c3.6.9,7.2,2.2,10.8,3.9,3.6,1.7,7.3,3.9,11,6.6h0s7.6-25.5,7.6-25.5c-3.4-2.1-6.9-3.9-10.4-5.4-5.1-2.2-10.3-3.9-15.5-5-5.2-1.1-10.4-1.6-15.8-1.6-12.3,0-23.3,2.5-33.1,7.6-9.8,5.1-17.6,12.3-23.2,21.8-5.7,9.5-8.5,20.5-8.5,33.2s2.9,23.5,8.7,32.9c5.8,9.5,13.7,16.8,23.8,22,10.1,5.2,21.2,7.8,33.5,7.8s15.7-1.3,23.4-3.8c6-2,11.9-4.8,17.6-8.4l-7.7-25.6c-5.6,3.9-11.1,6.9-16.5,8.8Z"/>
|
|
19
|
-
</g>
|
|
20
|
-
<circle class="st0" cx="155.1" cy="117.1" r="14"/>
|
|
21
|
-
<circle class="st0" cx="121.6" cy="131.7" r="14.6"/>
|
|
22
|
-
<circle class="st0" cx="180.6" cy="138.7" r="12.2"/>
|
|
23
|
-
<circle class="st0" cx="149.2" cy="150.8" r="12.4"/>
|
|
24
|
-
<circle class="st0" cx="203.5" cy="159.8" r="10.4"/>
|
|
25
|
-
<circle class="st0" cx="175" cy="168.8" r="10.7"/>
|
|
26
|
-
<circle class="st0" cx="223.1" cy="182.8" r="8.9"/>
|
|
27
|
-
<circle class="st0" cx="195.8" cy="187.1" r="9.2"/>
|
|
28
|
-
<circle class="st0" cx="235.3" cy="205.8" r="7.6"/>
|
|
29
|
-
<circle class="st0" cx="212.5" cy="205.9" r="7.6"/>
|
|
30
|
-
<circle class="st0" cx="223.9" cy="225.7" r="7.3"/>
|
|
31
|
-
<circle class="st0" cx="209" cy="240.8" r="6.3"/>
|
|
32
|
-
<circle class="st0" cx="192.6" cy="251.2" r="6.1"/>
|
|
33
|
-
</svg>
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1115.6 378.6">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.st0 {
|
|
6
|
-
fill: #262a35;
|
|
7
|
-
}
|
|
8
|
-
</style>
|
|
9
|
-
</defs>
|
|
10
|
-
<g>
|
|
11
|
-
<path class="st0" d="M819.9,125.5h27.5v39.7c7.8-6.1,17.4-9.8,28.6-9.8,25.7,0,40.5,15.5,40.5,46.9s-15.5,48.6-43.4,48.6-20.7-3.3-28.6-8.3l-1.7,6.5h-22.9v-123.6ZM866.1,227.7c14.4,0,21.8-6.7,21.8-24.9s-7-24-19.6-24-14.4,2.6-20.9,6.5v38.3c5.7,2.8,11.8,4.3,18.7,4.3Z"/>
|
|
12
|
-
<path class="st0" d="M410,249.2c-5-2.5-8.8-6.1-11.5-10.6s-4.1-9.8-4.1-15.6,1.3-11,4-15.4c2.7-4.4,6.8-7.9,12.4-10.4,5.6-2.5,12.5-3.7,21-3.7s10.2.2,15.8.5c5.6.3,10.4.7,14.4,1l-3.6,15.2c-5.6-.7-11.9-1.1-18.7-1.1s-11.2,1-14.2,3c-2.9,2-4.4,4.8-4.4,8.4s.6,4.1,1.8,5.7,3,2.8,5.3,3.5c2.3.8,5.1,1.2,8.3,1.2,4.8,0,8.7-.9,12-2.7,3.2-1.8,5.6-4.3,7.2-7.4,1.6-3.2,2.4-6.8,2.4-11l2.7,24.1c-1.3,3.4-3.4,6.5-6.4,9.4s-6.8,5.3-11.5,7.1-9.9,2.7-15.8,2.7-12.3-1.3-17.2-3.8ZM452.6,182c-3.7-2.7-9.1-4.1-16.4-4.1s-10.2.5-15.1,1.4-9.5,2.2-13.7,3.9l-2.8-23.1c5.5-1.7,11.2-2.9,17.1-3.9,5.9-.9,11.8-1.4,17.8-1.4,15.8,0,27.6,3.6,35.3,10.8,7.7,7.2,11.5,17.3,11.5,30.5v54.9h-28l-.2-56.9c0-5.3-1.8-9.3-5.5-12Z"/>
|
|
13
|
-
<path class="st0" d="M516.7,250.9c-6.6-1.4-12.9-3.5-18.9-6.4l4.1-23c6,3,12.3,5.3,18.9,6.8,6.6,1.5,13.1,2.3,19.5,2.3s5.3-.2,7.4-.6,3.8-1.2,5.1-2.3c1.3-1.1,2-2.7,2-4.6s-.6-3-1.7-4.1-3.1-2-5.8-2.8c-2.7-.8-6.5-1.6-11.3-2.4-9.1-1.4-16.4-3.4-21.7-5.8s-9.2-5.5-11.6-9.2c-2.4-3.7-3.5-8.3-3.5-13.7.1-6.6,2-12.2,5.7-16.8,3.7-4.5,8.6-7.9,14.8-10.1,6.2-2.2,13.1-3.3,20.7-3.3s12.4.6,18.4,1.9,11.8,2.9,17.5,5l-3.6,22.9c-5-2.3-10.5-4.2-16.5-5.5-5.9-1.3-11.8-2-17.6-2s-5.1.2-6.9.6c-1.8.4-3.1,1.1-4.1,2s-1.5,2.1-1.6,3.7c0,1.4.5,2.5,1.5,3.4s2.7,1.8,5.1,2.6c2.5.8,6.1,1.6,10.9,2.5,9.4,1.7,16.9,3.9,22.5,6.5,5.6,2.6,9.6,5.9,12,9.7,2.4,3.8,3.7,8.5,3.7,14,0,6.8-2,12.4-5.8,17-3.8,4.6-8.9,8-15.4,10.3s-13.7,3.4-21.8,3.4-15.5-.7-22-2.1Z"/>
|
|
14
|
-
<path class="st0" d="M616.6,249.3c-5-2.5-8.8-6.2-11.5-11.2-2.6-4.9-3.9-10.9-3.9-18v-40.2h-12.4v-12.5l10.9-11.3,18.5-19.8h10.9v20.6h28.8v23h-28.8v36.3c0,2.6.4,4.8,1.3,6.7.9,1.9,2.2,3.3,3.9,4.2,1.7,1,3.7,1.5,6,1.5s5-.3,7.7-.8c2.6-.6,5.2-1.4,7.8-2.6l5.1,21.3c-3.9,2.1-8.2,3.7-12.9,4.9s-9.1,1.7-13.4,1.7c-7.1,0-13.1-1.3-18.1-3.8Z"/>
|
|
15
|
-
<path class="st0" d="M672.4,125.5h28.1v125.4h-28.1v-125.4Z"/>
|
|
16
|
-
<path class="st0" d="M728.2,249.2c-5-2.5-8.8-6.1-11.5-10.6s-4.1-9.8-4.1-15.6,1.3-11,4-15.4c2.7-4.4,6.8-7.9,12.4-10.4,5.6-2.5,12.5-3.7,21-3.7s10.2.2,15.8.5c5.6.3,10.4.7,14.4,1l-3.6,15.2c-5.6-.7-11.9-1.1-18.7-1.1s-11.2,1-14.2,3c-2.9,2-4.4,4.8-4.4,8.4s.6,4.1,1.8,5.7,3,2.8,5.3,3.5c2.3.8,5.1,1.2,8.3,1.2,4.8,0,8.7-.9,12-2.7,3.2-1.8,5.6-4.3,7.2-7.4,1.6-3.2,2.4-6.8,2.4-11l2.7,24.1c-1.3,3.4-3.4,6.5-6.4,9.4s-6.8,5.3-11.5,7.1-9.9,2.7-15.8,2.7-12.3-1.3-17.2-3.8ZM770.9,182c-3.7-2.7-9.1-4.1-16.4-4.1s-10.2.5-15.1,1.4-9.5,2.2-13.7,3.9l-2.8-23.1c5.5-1.7,11.2-2.9,17.1-3.9,5.9-.9,11.8-1.4,17.8-1.4,15.8,0,27.6,3.6,35.3,10.8,7.7,7.2,11.5,17.3,11.5,30.5v54.9h-28l-.2-56.9c0-5.3-1.8-9.3-5.5-12Z"/>
|
|
17
|
-
<path class="st0" d="M943.7,250.9c-6.6-1.4-12.9-3.5-18.9-6.4l4.1-23c6,3,12.3,5.3,18.9,6.8,6.6,1.5,13.1,2.3,19.5,2.3s5.3-.2,7.4-.6c2.1-.4,3.8-1.2,5.1-2.3,1.3-1.1,1.9-2.7,1.9-4.6s-.6-3-1.7-4.1-3.1-2-5.8-2.8c-2.7-.8-6.5-1.6-11.3-2.4-9.1-1.4-16.4-3.4-21.7-5.8-5.4-2.4-9.2-5.5-11.6-9.2-2.4-3.7-3.5-8.3-3.5-13.7.1-6.6,2-12.2,5.7-16.8,3.7-4.5,8.6-7.9,14.8-10.1,6.2-2.2,13.1-3.3,20.7-3.3s12.4.6,18.4,1.9c6,1.2,11.8,2.9,17.5,5l-3.6,22.9c-5-2.3-10.5-4.2-16.5-5.5-6-1.3-11.8-2-17.6-2s-5.1.2-6.9.6-3.1,1.1-4.1,2c-.9.9-1.5,2.1-1.6,3.7,0,1.4.5,2.5,1.5,3.4,1,.9,2.7,1.8,5.1,2.6,2.5.8,6.1,1.6,10.9,2.5,9.4,1.7,16.9,3.9,22.5,6.5,5.6,2.6,9.6,5.9,12,9.7s3.7,8.5,3.7,14c0,6.8-2,12.4-5.8,17-3.8,4.6-8.9,8-15.4,10.3-6.4,2.3-13.7,3.4-21.8,3.4s-15.5-.7-22-2.1Z"/>
|
|
18
|
-
<path class="st0" d="M362.8,224.2c-5.4,1.9-10.9,2.9-16.4,2.9s-13-1.5-18.4-4.4c-5.5-2.9-9.8-7.2-13-12.7-3.2-5.5-4.7-12.1-4.7-19.7s1.5-14.1,4.6-19.7c3.1-5.5,7.4-9.7,12.8-12.7,5.4-2.9,11.5-4.4,18.4-4.4s7.3.4,10.9,1.3c3.6.9,7.2,2.2,10.8,3.9,3.6,1.7,7.3,3.9,11,6.6h0s7.6-25.5,7.6-25.5c-3.4-2.1-6.9-3.9-10.4-5.4-5.1-2.2-10.3-3.9-15.5-5-5.2-1.1-10.4-1.6-15.8-1.6-12.3,0-23.3,2.5-33.1,7.6-9.8,5.1-17.6,12.3-23.2,21.8-5.7,9.5-8.5,20.5-8.5,33.2s2.9,23.5,8.7,32.9c5.8,9.5,13.7,16.8,23.8,22,10.1,5.2,21.2,7.8,33.5,7.8s15.7-1.3,23.4-3.8c6-2,11.9-4.8,17.6-8.4l-7.7-25.6c-5.6,3.9-11.1,6.9-16.5,8.8Z"/>
|
|
19
|
-
</g>
|
|
20
|
-
<circle class="st0" cx="155.1" cy="117.1" r="14"/>
|
|
21
|
-
<circle class="st0" cx="121.6" cy="131.7" r="14.6"/>
|
|
22
|
-
<circle class="st0" cx="180.6" cy="138.7" r="12.2"/>
|
|
23
|
-
<circle class="st0" cx="149.2" cy="150.8" r="12.4"/>
|
|
24
|
-
<circle class="st0" cx="203.5" cy="159.8" r="10.4"/>
|
|
25
|
-
<circle class="st0" cx="175" cy="168.8" r="10.7"/>
|
|
26
|
-
<circle class="st0" cx="223.1" cy="182.8" r="8.9"/>
|
|
27
|
-
<circle class="st0" cx="195.8" cy="187.1" r="9.2"/>
|
|
28
|
-
<circle class="st0" cx="235.3" cy="205.8" r="7.6"/>
|
|
29
|
-
<circle class="st0" cx="212.5" cy="205.9" r="7.6"/>
|
|
30
|
-
<circle class="st0" cx="223.9" cy="225.7" r="7.3"/>
|
|
31
|
-
<circle class="st0" cx="209" cy="240.8" r="6.3"/>
|
|
32
|
-
<circle class="st0" cx="192.6" cy="251.2" r="6.1"/>
|
|
33
|
-
</svg>
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
$cl-folder-prefix: '@' !default;
|
|
2
|
-
|
|
3
|
-
@mixin DMMono {
|
|
4
|
-
@font-face {
|
|
5
|
-
font-family: 'DM Mono';
|
|
6
|
-
font-style: normal;
|
|
7
|
-
font-weight: 300;
|
|
8
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_300.woff2?no-inline')
|
|
9
|
-
format('woff2');
|
|
10
|
-
}
|
|
11
|
-
@font-face {
|
|
12
|
-
font-family: 'DM Mono';
|
|
13
|
-
font-style: italic;
|
|
14
|
-
font-weight: 300;
|
|
15
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_300italic.woff2?no-inline')
|
|
16
|
-
format('woff2');
|
|
17
|
-
}
|
|
18
|
-
@font-face {
|
|
19
|
-
font-family: 'DM Mono';
|
|
20
|
-
font-style: normal;
|
|
21
|
-
font-weight: 400;
|
|
22
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_400.woff2?no-inline')
|
|
23
|
-
format('woff2');
|
|
24
|
-
}
|
|
25
|
-
@font-face {
|
|
26
|
-
font-family: 'DM Mono';
|
|
27
|
-
font-style: italic;
|
|
28
|
-
font-weight: 400;
|
|
29
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_400italic.woff2?no-inline')
|
|
30
|
-
format('woff2');
|
|
31
|
-
}
|
|
32
|
-
@font-face {
|
|
33
|
-
font-family: 'DM Mono';
|
|
34
|
-
font-style: normal;
|
|
35
|
-
font-weight: 500;
|
|
36
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_500.woff2?no-inline')
|
|
37
|
-
format('woff2');
|
|
38
|
-
}
|
|
39
|
-
@font-face {
|
|
40
|
-
font-family: 'DM Mono';
|
|
41
|
-
font-style: italic;
|
|
42
|
-
font-weight: 500;
|
|
43
|
-
src: url('#{$cl-folder-prefix}/fonts/DMMono/DM_Mono_500italic.woff2?no-inline')
|
|
44
|
-
format('woff2');
|
|
45
|
-
}
|
|
46
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Bold.woff2
RENAMED
|
File without changes
|
/package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Medium.woff2
RENAMED
|
File without changes
|
/package/{src/fonts → dist/assets}/NonNaturalGroteskInktrap/NonNaturalGroteskInktrap-Regular.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|