spoko-design-system 0.0.1 → 0.0.5

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.
Files changed (113) hide show
  1. package/.astro/icon.d.ts +8109 -10
  2. package/.github/workflows/deploy.yml +39 -39
  3. package/.stackblitzrc +5 -5
  4. package/.vscode/extensions.json +5 -4
  5. package/.vscode/launch.json +11 -11
  6. package/.vscode/settings.json +6 -0
  7. package/LICENSE +21 -21
  8. package/Layout/Header.astro +111 -89
  9. package/README.md +94 -69
  10. package/astro-i18next.config.mjs +17 -17
  11. package/astro-i18next.config.ts +10 -10
  12. package/astro.config.mjs +51 -42
  13. package/index.ts +6 -6
  14. package/package.json +25 -17
  15. package/public/astro-design-system-logo.svg +10 -10
  16. package/public/favicon.ico +0 -0
  17. package/public/favicon.svg +0 -0
  18. package/public/fonts/lg.svg +53 -53
  19. package/public/fonts/vwhead-bold-demo.html +549 -549
  20. package/public/fonts/vwhead-regular-demo.html +549 -549
  21. package/public/fonts/vwtext-bold-demo.html +549 -549
  22. package/public/fonts/vwtext-regular-demo.html +549 -549
  23. package/public/github.svg +3 -3
  24. package/public/grid_dot.svg +4 -4
  25. package/public/linkedin.svg +44 -44
  26. package/public/locales/en/translation.json +8 -5
  27. package/public/locales/pl/translation.json +8 -5
  28. package/public/make-scrollable-code-focusable.js +3 -3
  29. package/public/polo.blue.svg +29 -0
  30. package/public/spoko.space.svg +71 -0
  31. package/public/twitter.svg +46 -46
  32. package/sandbox.config.json +11 -11
  33. package/src/MyComponent.astro +8 -8
  34. package/src/components/Badge.vue +19 -19
  35. package/src/components/Badges.vue +24 -23
  36. package/src/components/Breadcrumbs.vue +108 -111
  37. package/src/components/Button.vue +37 -0
  38. package/src/components/ButtonCopy.vue +52 -0
  39. package/src/components/Card.astro +25 -0
  40. package/src/components/CategoryLink.astro +18 -0
  41. package/src/components/Copyright.astro +11 -11
  42. package/src/components/Date.astro +7 -0
  43. package/src/components/FuckRussia.vue +65 -65
  44. package/src/components/HandDrive.astro +29 -30
  45. package/src/components/HeadCommon.astro +40 -40
  46. package/src/components/HeadSEO.astro +41 -41
  47. package/src/components/Header/AstroLogo.astro +7 -27
  48. package/src/components/Header/Header.astro +44 -48
  49. package/src/components/Header/SkipToContent.astro +1 -1
  50. package/src/components/Headline.vue +60 -0
  51. package/src/components/Image.astro +30 -0
  52. package/src/components/Jumbatron.vue +46 -31
  53. package/src/components/LeftSidebar.astro +45 -44
  54. package/src/components/MainColors.vue +29 -29
  55. package/src/components/MainInput.vue +18 -18
  56. package/src/components/MainTable.vue +40 -45
  57. package/src/components/Modal.astro +30 -0
  58. package/src/components/PageContent.astro +14 -14
  59. package/src/components/PostHeader.astro +104 -0
  60. package/src/components/PrCode.vue +156 -0
  61. package/src/components/ProductNumber.astro +117 -0
  62. package/src/components/ProductTile.astro +54 -0
  63. package/src/components/RightSidebar.astro +15 -11
  64. package/src/components/SlimBanner.vue +59 -59
  65. package/src/components/TableOfContents.astro +11 -11
  66. package/src/components/Translations.vue +27 -0
  67. package/src/components/flags/FlagPL.vue +2 -2
  68. package/src/components/flags/FlagUA.vue +2 -2
  69. package/src/components/layout/Header.astro +50 -69
  70. package/src/config.ts +51 -42
  71. package/src/design.config.ts +73 -92
  72. package/src/env.d.ts +1 -1
  73. package/src/flag-poland.svg +1 -0
  74. package/src/flag-uk.svg +1 -0
  75. package/src/layouts/Layout.astro +43 -0
  76. package/src/layouts/MainLayout.astro +60 -50
  77. package/src/pages/components/badges.mdx +69 -35
  78. package/src/pages/components/breadcrumbs.mdx +136 -103
  79. package/src/pages/components/buttons.mdx +143 -60
  80. package/src/pages/components/card.mdx +40 -0
  81. package/src/pages/components/copyright.mdx +41 -24
  82. package/src/pages/components/flags.mdx +40 -26
  83. package/src/pages/components/fuck-russia.mdx +39 -16
  84. package/src/pages/components/hand-drive.mdx +38 -27
  85. package/src/pages/components/headline.mdx +148 -0
  86. package/src/pages/components/icons.astro +54 -45
  87. package/src/pages/components/image.mdx +502 -0
  88. package/src/pages/components/input.mdx +45 -14
  89. package/src/pages/components/jumbatron.mdx +71 -48
  90. package/src/pages/components/modal.mdx +64 -0
  91. package/src/pages/components/post-header.mdx +58 -0
  92. package/src/pages/components/pr-code.mdx +41 -0
  93. package/src/pages/components/product-number.mdx +65 -0
  94. package/src/pages/components/product-tile.mdx +39 -0
  95. package/src/pages/components/slimbanner.mdx +29 -27
  96. package/src/pages/components/table.mdx +39 -20
  97. package/src/pages/core/colors.mdx +8 -8
  98. package/src/pages/core/introduction.mdx +74 -68
  99. package/src/pages/core/shadows.astro +20 -20
  100. package/src/pages/core/typography.astro +46 -46
  101. package/src/pages/index.astro +70 -52
  102. package/src/pages/patterns/introduction.mdx +60 -61
  103. package/src/styles/_variables.scss +75 -75
  104. package/src/styles/base/_base.scss +166 -158
  105. package/src/styles/base/_typography.scss +147 -147
  106. package/src/styles/content.scss +66 -71
  107. package/src/styles/main.scss +22 -22
  108. package/tailwind.config.cjs +8 -8
  109. package/tsconfig.json +11 -11
  110. package/uno.config.ts +246 -227
  111. package/src/components/MainButton.vue +0 -26
  112. package/src/components/MainStatusPill.vue +0 -32
  113. package/src/pages/components/status-pill.mdx +0 -22
@@ -1,158 +1,166 @@
1
- * {
2
- -webkit-font-smoothing: antialiased;
3
- -moz-osx-font-smoothing: grayscale;
4
- }
5
-
6
- body {
7
- font-family: 'vw_textregular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
8
- overflow-y: scroll;
9
- scrollbar-width: thin;
10
- overflow-x: hidden;
11
- }
12
-
13
- ::-webkit-scrollbar {
14
- width: 5px;
15
- height: 3px;
16
- }
17
-
18
- ::-webkit-scrollbar-track {
19
- background: rgba(0, 0, 0, 0.1); //$secondary;
20
- border-radius: 0;
21
- }
22
-
23
- ::-webkit-scrollbar-thumb {
24
- border-radius: 0;
25
- background-color: $blue;
26
- }
27
-
28
- *:focus {
29
- outline: none !important;
30
- }
31
-
32
-
33
- .bg-spoko {
34
- background: radial-gradient(circle at 50% 85%, #00437A 0%, #001E50 100%);
35
- color: #fff;
36
- width: 100%;
37
- }
38
-
39
- .bg-vw {
40
- background: radial-gradient(
41
- circle at 50% 85%,
42
- #00437A 0%,
43
- #001E50 100%
44
- );
45
- color: #fff;
46
- }
47
-
48
- .display-3 {
49
- letter-spacing: -0.96px;
50
- }
51
-
52
-
53
- html {
54
- scroll-behavior: smooth;
55
-
56
- &::-webkit-scrollbar {
57
- width: 7px; /* width of the entire scrollbar */
58
- }
59
-
60
- &::-webkit-scrollbar-track {
61
- background: #00437A; /* color of the tracking area */
62
- }
63
-
64
- &::-webkit-scrollbar-thumb {
65
- background-color: $primary; /* color of the scroll thumb */
66
- border-radius: 0; /* roundness of the scroll thumb */
67
- border: 0 solid #00437A; /* creates padding around scroll thumb */
68
- }
69
-
70
- scrollbar-width: thin;
71
- scrollbar-color: $primary #00437A;
72
- }
73
-
74
-
75
- //Swiper styles
76
- :root {
77
- // --swiper-navigation-color: #0099da;
78
- --swiper-navigation-size: 22px;
79
- --swiper-scrollbar-drag-bg-color: #0099da;
80
- --swiper-scrollbar-size: 1px;
81
- --swiper-scrollbar-bottom: 0px;
82
- }
83
-
84
- .swiper-horizontal{
85
- &> .swiper-scrollbar {
86
- height: 1px;
87
- }
88
- }
89
-
90
- .fade-enter-active,
91
- .fade-leave-active {
92
- transition: opacity 0.5s ease;
93
- }
94
-
95
- .fade-enter-from,
96
- .fade-leave-to {
97
- opacity: 0;
98
- }
99
-
100
- .colon-after {
101
- &:after {
102
- content: ':'
103
- }
104
- }
105
-
106
- .items {
107
- & > .item {
108
- &:not(:last-child) {
109
- &:after {
110
- content: ', '
111
- }
112
- }
113
- }
114
- }
115
-
116
- /* override styles when printing */
117
- @media print {
118
- @page :footer {
119
- display: none;
120
- margin-top: 0;
121
- margin-bottom: 0;
122
- }
123
-
124
- @page :header {
125
- display: none;
126
- margin-top: 0;
127
- margin-bottom: 0;
128
- }
129
- }
130
-
131
- .comma:not(:last-child) {
132
- @apply mr-1;
133
-
134
- &:after {
135
- content: ','
136
- }
137
- }
138
-
139
- #l-page {
140
- table {
141
- border-collapse: collapse;
142
- border-color: inherit;
143
- color: #212529;
144
- margin-bottom: .875rem;
145
- table-layout: fixed;
146
- text-indent: 0;
147
- width: 100%;
148
-
149
- td, th {
150
- border: 1px solid;
151
- padding: 0.5em;
152
- }
153
- }
154
- }
155
-
156
- [data-icon] {
157
- font-size: 1em;
158
- }
1
+ :root {
2
+ --primary: #{$blue};
3
+ }
4
+
5
+ * {
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-osx-font-smoothing: grayscale;
8
+ }
9
+
10
+ body {
11
+ font-family: 'vw_textregular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
12
+ overflow-y: scroll;
13
+ scrollbar-width: thin;
14
+ overflow-x: hidden;
15
+ }
16
+
17
+ ::-webkit-scrollbar {
18
+ width: 5px;
19
+ height: 3px;
20
+ }
21
+
22
+ ::-webkit-scrollbar-track {
23
+ background: rgba(0, 0, 0, 0.1); //$secondary;
24
+ border-radius: 0;
25
+ }
26
+
27
+ ::-webkit-scrollbar-thumb {
28
+ border-radius: 0;
29
+ background-color: $blue;
30
+ }
31
+
32
+ *:focus {
33
+ outline: none !important;
34
+ }
35
+
36
+
37
+ .bg-spoko {
38
+ background: radial-gradient(circle at 50% 85%, #00437A 0%, #001E50 100%);
39
+ color: #fff;
40
+ width: 100%;
41
+ }
42
+
43
+ .bg-vw {
44
+ background: radial-gradient(
45
+ circle at 50% 85%,
46
+ #00437A 0%,
47
+ #001E50 100%
48
+ );
49
+ color: #fff;
50
+ }
51
+
52
+ .display-3 {
53
+ letter-spacing: -0.96px;
54
+ }
55
+
56
+ code {
57
+ @apply font-novamono;
58
+ }
59
+
60
+
61
+ html {
62
+ scroll-behavior: smooth;
63
+
64
+ &::-webkit-scrollbar {
65
+ width: 7px; /* width of the entire scrollbar */
66
+ }
67
+
68
+ &::-webkit-scrollbar-track {
69
+ background: #00437A; /* color of the tracking area */
70
+ }
71
+
72
+ &::-webkit-scrollbar-thumb {
73
+ background-color: $primary; /* color of the scroll thumb */
74
+ border-radius: 0; /* roundness of the scroll thumb */
75
+ border: 0 solid #00437A; /* creates padding around scroll thumb */
76
+ }
77
+
78
+ scrollbar-width: thin;
79
+ scrollbar-color: $primary #00437A;
80
+ }
81
+
82
+
83
+ //Swiper styles
84
+ :root {
85
+ // --swiper-navigation-color: #0099da;
86
+ --swiper-navigation-size: 22px;
87
+ --swiper-scrollbar-drag-bg-color: #0099da;
88
+ --swiper-scrollbar-size: 1px;
89
+ --swiper-scrollbar-bottom: 0px;
90
+ }
91
+
92
+ .swiper-horizontal{
93
+ &> .swiper-scrollbar {
94
+ height: 1px;
95
+ }
96
+ }
97
+
98
+ .fade-enter-active,
99
+ .fade-leave-active {
100
+ transition: opacity 0.5s ease;
101
+ }
102
+
103
+ .fade-enter-from,
104
+ .fade-leave-to {
105
+ opacity: 0;
106
+ }
107
+
108
+ .colon-after {
109
+ &:after {
110
+ content: ':'
111
+ }
112
+ }
113
+
114
+ .items {
115
+ & > .item {
116
+ &:not(:last-child) {
117
+ &:after {
118
+ content: ', '
119
+ }
120
+ }
121
+ }
122
+ }
123
+
124
+ /* override styles when printing */
125
+ @media print {
126
+ @page :footer {
127
+ display: none;
128
+ margin-top: 0;
129
+ margin-bottom: 0;
130
+ }
131
+
132
+ @page :header {
133
+ display: none;
134
+ margin-top: 0;
135
+ margin-bottom: 0;
136
+ }
137
+ }
138
+
139
+ .comma:not(:last-child) {
140
+ @apply mr-1;
141
+
142
+ &:after {
143
+ content: ','
144
+ }
145
+ }
146
+
147
+ #l-page {
148
+ table {
149
+ border-collapse: collapse;
150
+ border-color: inherit;
151
+ color: #212529;
152
+ margin-bottom: .875rem;
153
+ table-layout: fixed;
154
+ text-indent: 0;
155
+ width: 100%;
156
+
157
+ td, th {
158
+ border: 1px solid;
159
+ padding: 0.5em;
160
+ }
161
+ }
162
+ }
163
+
164
+ svg {
165
+ color: var(--primary);
166
+ }
@@ -1,148 +1,148 @@
1
- @font-face {
2
- font-family: 'vw_textregular';
3
- src: url('/fonts/vwtext-regular-webfont.woff2') format('woff2');
4
- font-weight: normal;
5
- font-style: normal;
6
- font-display: swap;
7
- }
8
-
9
- @font-face {
10
- font-family: 'vw_textbold';
11
- src: url('/fonts/vwtext-bold-webfont.woff2') format('woff2');
12
- font-weight: normal;
13
- font-style: normal;
14
- font-display: fallback;
15
- }
16
-
17
- .font-vw-textbold {
18
- font-family: 'vw_textbold';
19
- font-display: fallback;
20
- }
21
-
22
- @font-face {
23
- font-family: 'vw_headbold';
24
- src: url('/fonts/vwhead-bold-webfont.woff2') format('woff2');
25
- font-weight: normal;
26
- font-style: normal;
27
- font-display: fallback;
28
- }
29
-
30
- .font-vw-headbold {
31
- font-family: 'vw_headbold' !important;
32
- font-display: fallback;
33
- }
34
-
35
- @font-face {
36
- font-family: 'vw_headregular';
37
- src: url('/fonts/vwhead-regular-webfont.woff2') format('woff2');
38
- font-weight: normal;
39
- font-style: normal;
40
- font-display: fallback;
41
- }
42
-
43
- // .font-headregular {
44
- // font-family: 'vw_headregular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
45
- // font-display: fallback;
46
- // }
47
-
48
- @font-face {
49
- font-family: 'vw_headlight';
50
- src: url('/fonts/vwhead-light-webfont.woff2') format('woff2'),;
51
- font-weight: normal;
52
- font-style: normal;
53
- font-display: swap;
54
- }
55
-
56
- // .font-headlight {
57
- // font-family: 'vw_headlight';
58
- // }
59
-
60
- @font-face {
61
- font-family: 'Nova Mono';
62
- src: url('/fonts/nova-mono-v13-latin-regular.woff2') format('woff2');
63
- font-weight: normal;
64
- font-style: normal;
65
- font-display: swap; //fallback;
66
- }
67
-
68
- // .font-mono {
69
- // font-family: 'Nova Mono';
70
- // }
71
-
72
- @font-face {
73
- font-family: 'vw_textlight';
74
- src: url('/fonts/vwtext-light-webfont.woff2') format('woff2');
75
- font-weight: normal;
76
- font-style: normal;
77
- font-display: swap;
78
- }
79
-
80
- // @font-face {
81
- // font-family: 'swiper-icons';
82
- // src: url('/fonts/swiper-icons.woff2') format('woff2');
83
- // font-weight: normal;
84
- // font-style: normal;
85
- // font-display: swap;
86
- // }
87
-
88
- // .font-textlight {
89
- // font-family: 'vw_textlight';
90
- // }
91
-
92
- // @font-face {
93
- // font-family: 'vw-headline-ltab';
94
- // src: url('/fonts/VWHeadline-LtTab.woff2') format('woff2');
95
- // font-weight: normal;
96
- // font-style: normal;
97
- // font-display: swap;
98
- // }
99
-
100
- // .font-vw-headline-ltab {
101
- // font-family: 'vw-headline-ltab';
102
- // }
103
-
104
- // @font-face {
105
- // font-family: 'futura-book';
106
- // src: url('/fonts/Futura-Book.woff2') format('woff2');
107
- // font-weight: normal;
108
- // font-style: normal;
109
- // font-display: swap;
110
- // }
111
-
112
- // .font-futura-book {
113
- // font-family: 'futura-book';
114
- // }
115
-
116
- // @font-face {
117
- // font-family: 'futura-pt-light';
118
- // src: url('/fonts/futura-pt-light.woff2') format('woff2');
119
- // // src: url('/fonts/Futura-Book.woff2') format('woff2');
120
- // font-weight: normal;
121
- // font-style: normal;
122
- // font-display: swap;
123
- // }
124
-
125
- // .font-futura-pt-light {
126
- // font-family: 'futura-pt-light';
127
- // }
128
-
129
-
130
- // @font-face {
131
- // font-family: 'futura-pt-medium';
132
- // src: url('/fonts/futura-pt-medium.woff2') format('woff2');
133
- // font-weight: normal;
134
- // font-style: normal;
135
- // font-display: swap;
136
- // }
137
-
138
- // .font-futura-pt-medium {
139
- // font-family: 'futura-pt-medium';
140
- // }
141
-
142
-
143
- // src: url('/fonts/Futura-Book-BT.woff') format('woff');
144
- // src: url('/fonts/futura-bk-bt-book_18979-webfont.woff2') format('woff2');
145
-
146
- [data-text]:before {
147
- content: attr(data-text);
1
+ @font-face {
2
+ font-family: 'vw_textregular';
3
+ src: url('/fonts/vwtext-regular-webfont.woff2') format('woff2');
4
+ font-weight: normal;
5
+ font-style: normal;
6
+ font-display: swap;
7
+ }
8
+
9
+ @font-face {
10
+ font-family: 'vw_textbold';
11
+ src: url('/fonts/vwtext-bold-webfont.woff2') format('woff2');
12
+ font-weight: normal;
13
+ font-style: normal;
14
+ font-display: fallback;
15
+ }
16
+
17
+ .font-vw-textbold {
18
+ font-family: 'vw_textbold';
19
+ font-display: fallback;
20
+ }
21
+
22
+ @font-face {
23
+ font-family: 'vw_headbold';
24
+ src: url('/fonts/vwhead-bold-webfont.woff2') format('woff2');
25
+ font-weight: normal;
26
+ font-style: normal;
27
+ font-display: fallback;
28
+ }
29
+
30
+ .font-vw-headbold {
31
+ font-family: 'vw_headbold' !important;
32
+ font-display: fallback;
33
+ }
34
+
35
+ @font-face {
36
+ font-family: 'vw_headregular';
37
+ src: url('/fonts/vwhead-regular-webfont.woff2') format('woff2');
38
+ font-weight: normal;
39
+ font-style: normal;
40
+ font-display: fallback;
41
+ }
42
+
43
+ // .font-headregular {
44
+ // font-family: 'vw_headregular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
45
+ // font-display: fallback;
46
+ // }
47
+
48
+ @font-face {
49
+ font-family: 'vw_headlight';
50
+ src: url('/fonts/vwhead-light-webfont.woff2') format('woff2'),;
51
+ font-weight: normal;
52
+ font-style: normal;
53
+ font-display: swap;
54
+ }
55
+
56
+ // .font-headlight {
57
+ // font-family: 'vw_headlight';
58
+ // }
59
+
60
+ @font-face {
61
+ font-family: 'Nova Mono';
62
+ src: url('/fonts/nova-mono-v13-latin-regular.woff2') format('woff2');
63
+ font-weight: normal;
64
+ font-style: normal;
65
+ font-display: swap; //fallback;
66
+ }
67
+
68
+ // .font-mono {
69
+ // font-family: 'Nova Mono';
70
+ // }
71
+
72
+ @font-face {
73
+ font-family: 'vw_textlight';
74
+ src: url('/fonts/vwtext-light-webfont.woff2') format('woff2');
75
+ font-weight: normal;
76
+ font-style: normal;
77
+ font-display: swap;
78
+ }
79
+
80
+ // @font-face {
81
+ // font-family: 'swiper-icons';
82
+ // src: url('/fonts/swiper-icons.woff2') format('woff2');
83
+ // font-weight: normal;
84
+ // font-style: normal;
85
+ // font-display: swap;
86
+ // }
87
+
88
+ // .font-textlight {
89
+ // font-family: 'vw_textlight';
90
+ // }
91
+
92
+ // @font-face {
93
+ // font-family: 'vw-headline-ltab';
94
+ // src: url('/fonts/VWHeadline-LtTab.woff2') format('woff2');
95
+ // font-weight: normal;
96
+ // font-style: normal;
97
+ // font-display: swap;
98
+ // }
99
+
100
+ // .font-vw-headline-ltab {
101
+ // font-family: 'vw-headline-ltab';
102
+ // }
103
+
104
+ // @font-face {
105
+ // font-family: 'futura-book';
106
+ // src: url('/fonts/Futura-Book.woff2') format('woff2');
107
+ // font-weight: normal;
108
+ // font-style: normal;
109
+ // font-display: swap;
110
+ // }
111
+
112
+ // .font-futura-book {
113
+ // font-family: 'futura-book';
114
+ // }
115
+
116
+ // @font-face {
117
+ // font-family: 'futura-pt-light';
118
+ // src: url('/fonts/futura-pt-light.woff2') format('woff2');
119
+ // // src: url('/fonts/Futura-Book.woff2') format('woff2');
120
+ // font-weight: normal;
121
+ // font-style: normal;
122
+ // font-display: swap;
123
+ // }
124
+
125
+ // .font-futura-pt-light {
126
+ // font-family: 'futura-pt-light';
127
+ // }
128
+
129
+
130
+ // @font-face {
131
+ // font-family: 'futura-pt-medium';
132
+ // src: url('/fonts/futura-pt-medium.woff2') format('woff2');
133
+ // font-weight: normal;
134
+ // font-style: normal;
135
+ // font-display: swap;
136
+ // }
137
+
138
+ // .font-futura-pt-medium {
139
+ // font-family: 'futura-pt-medium';
140
+ // }
141
+
142
+
143
+ // src: url('/fonts/Futura-Book-BT.woff') format('woff');
144
+ // src: url('/fonts/futura-bk-bt-book_18979-webfont.woff2') format('woff2');
145
+
146
+ [data-text]:before {
147
+ content: attr(data-text);
148
148
  }