vipassana-design-standards 0.0.24 → 0.0.26

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 (77) hide show
  1. package/dist/css/bootstrap5-theme.css +24 -24
  2. package/dist/css/bootstrap5-theme.min.css +1 -1
  3. package/dist/css/bootstrap5-theme.rtl.css +24 -24
  4. package/dist/css/bootstrap5-theme.rtl.min.css +1 -1
  5. package/dist/css/fonts-ar.css +2 -2
  6. package/dist/css/fonts-ar.min.css +1 -1
  7. package/dist/css/fonts-fa.css +2 -2
  8. package/dist/css/fonts-fa.min.css +1 -1
  9. package/dist/css/fonts-gu.css +6 -6
  10. package/dist/css/fonts-gu.min.css +1 -1
  11. package/dist/css/fonts-he.css +6 -6
  12. package/dist/css/fonts-he.min.css +1 -1
  13. package/dist/css/fonts-ja.css +240 -240
  14. package/dist/css/fonts-ja.min.css +1 -1
  15. package/dist/css/fonts-km.css +6 -6
  16. package/dist/css/fonts-km.min.css +1 -1
  17. package/dist/css/fonts-ko.css +240 -240
  18. package/dist/css/fonts-ko.min.css +1 -1
  19. package/dist/css/fonts-or.css +6 -6
  20. package/dist/css/fonts-or.min.css +1 -1
  21. package/dist/css/fonts-si.css +6 -6
  22. package/dist/css/fonts-si.min.css +1 -1
  23. package/dist/css/fonts-ta.css +6 -6
  24. package/dist/css/fonts-ta.min.css +1 -1
  25. package/dist/css/fonts-te.css +6 -6
  26. package/dist/css/fonts-te.min.css +1 -1
  27. package/dist/css/fonts-th.css +6 -6
  28. package/dist/css/fonts-th.min.css +1 -1
  29. package/dist/css/fonts-zh-HANS.css +194 -194
  30. package/dist/css/fonts-zh-HANS.min.css +1 -1
  31. package/dist/css/fonts-zh-HANT-HK.css +210 -210
  32. package/dist/css/fonts-zh-HANT-HK.min.css +1 -1
  33. package/dist/css/fonts-zh-HANT.css +202 -202
  34. package/dist/css/fonts-zh-HANT.min.css +1 -1
  35. package/dist/css/fonts.css +24 -24
  36. package/dist/css/fonts.min.css +1 -1
  37. package/dist/js/helpers.js +1 -1
  38. package/dist/js/i18n.js +1 -1
  39. package/dist/js/react-helpers.jsx +2 -2
  40. package/package.json +3 -3
  41. package/src/stylesheets/bootstrap5-theme.scss +24 -0
  42. package/src/stylesheets/custom-bootstrap-utilities.scss +143 -0
  43. package/src/stylesheets/custom-bootstrap-variables.scss +123 -0
  44. package/src/stylesheets/custom-bootstrap.scss +159 -0
  45. package/src/stylesheets/fonts.scss +306 -0
  46. package/src/stylesheets/index.css +198 -0
  47. package/src/stylesheets/layout/vds-header.scss +42 -0
  48. package/src/stylesheets/layout/vds-layout.scss +90 -0
  49. package/src/stylesheets/layout/vds-mixins.scss +5 -0
  50. package/src/stylesheets/layout/vds-sidenav.scss +43 -0
  51. package/src/stylesheets/logo.scss +213 -0
  52. package/src/stylesheets/mixins.scss +11 -0
  53. package/src/stylesheets/specific-fonts/fonts-ar.css +22 -0
  54. package/src/stylesheets/specific-fonts/fonts-fa.css +22 -0
  55. package/src/stylesheets/specific-fonts/fonts-gu.css +62 -0
  56. package/src/stylesheets/specific-fonts/fonts-he.css +60 -0
  57. package/src/stylesheets/specific-fonts/fonts-ja.css +2160 -0
  58. package/src/stylesheets/specific-fonts/fonts-km.css +60 -0
  59. package/src/stylesheets/specific-fonts/fonts-ko.css +2160 -0
  60. package/src/stylesheets/specific-fonts/fonts-or.css +60 -0
  61. package/src/stylesheets/specific-fonts/fonts-si.css +60 -0
  62. package/src/stylesheets/specific-fonts/fonts-ta.css +60 -0
  63. package/src/stylesheets/specific-fonts/fonts-te.css +60 -0
  64. package/src/stylesheets/specific-fonts/fonts-th.css +60 -0
  65. package/src/stylesheets/specific-fonts/fonts-zh-HANS.css +1746 -0
  66. package/src/stylesheets/specific-fonts/fonts-zh-HANT-HK.css +1890 -0
  67. package/src/stylesheets/specific-fonts/fonts-zh-HANT.css +1818 -0
  68. package/dist/fonts/FootlightMTProBold.woff +0 -0
  69. package/dist/fonts/FootlightMTProBoldItalic.woff +0 -0
  70. package/dist/fonts/FootlightMTProExtraBold.woff +0 -0
  71. package/dist/fonts/FootlightMTProExtraBoldIt.woff +0 -0
  72. package/dist/fonts/FootlightMTProItalic.woff +0 -0
  73. package/dist/fonts/FootlightMTProLight.base64.js +0 -1
  74. package/dist/fonts/FootlightMTProLight.woff +0 -0
  75. package/dist/fonts/FootlightMTProLightItalic.woff +0 -0
  76. package/dist/fonts/FootlightMTProRegular.woff +0 -0
  77. package/dist/fonts/OFL.txt +0 -93
@@ -0,0 +1,90 @@
1
+ html, body {
2
+ height: 100%;
3
+ }
4
+
5
+ .vds-body {
6
+ min-height: 100vh;
7
+ display: flex;
8
+ flex-direction: column;
9
+
10
+ --page-max-width: 100%;
11
+
12
+ &:not(.iframe) {
13
+ @include media-breakpoint-up(xl) {
14
+ --page-max-width: 900px;
15
+ &.with-sidenav {
16
+ --page-max-width: 1100px;
17
+ }
18
+ }
19
+ }
20
+
21
+ .vds-page {
22
+ display: flex;
23
+ flex-grow: 1;
24
+
25
+ .vds-page-content {
26
+ flex-grow: 1;
27
+ @extend .bg-body;
28
+
29
+ & > h1:first-child, & > h2:first-child {
30
+ margin-top: 0;
31
+ }
32
+ }
33
+ }
34
+
35
+ }
36
+
37
+ // The container so eery part of the page have same content-width
38
+ .vds-container {
39
+ width: 100%;
40
+ max-width: var(--page-max-width);
41
+ margin-left: auto;
42
+ margin-right: auto;
43
+ }
44
+
45
+ // wait for vue to be loaded to display it
46
+ .vue-container {
47
+ --page-content-opacity: 0;
48
+ &.mounted {
49
+ --page-content-opacity: 1;
50
+ }
51
+
52
+ .vds-page-real-content {
53
+ transition: opacity .3s;
54
+ opacity: var(--page-content-opacity);
55
+ }
56
+ }
57
+
58
+ // Sticky footer
59
+ .vds-header-and-content {
60
+ position: relative;
61
+ display: flex;
62
+ flex-direction: column;
63
+ flex-grow: 1;
64
+
65
+ .vds-page-content {
66
+ padding: var(--layout-padding);
67
+ }
68
+ }
69
+
70
+ .vds-footer {
71
+ background-color: var(--bs-primary);
72
+ color: white;
73
+ position: relative;
74
+ display: flex;
75
+ flex-direction: column;
76
+ justify-content: center;
77
+
78
+ .vds-container {
79
+ padding: 1rem var(--layout-padding);
80
+ }
81
+
82
+ a {
83
+ color: white;
84
+ text-decoration: none;
85
+ &:hover {
86
+ color: white;
87
+ text-decoration: underline;
88
+ }
89
+ }
90
+ }
@@ -0,0 +1,5 @@
1
+ @mixin page-width($width) {
2
+ .vds-page {
3
+ --page-max-width: #{$width};
4
+ }
5
+ }
@@ -0,0 +1,43 @@
1
+ .vds-sidenav {
2
+ background-color: $gold-200;
3
+ margin-right: 1rem;
4
+ padding: var(--layout-padding);
5
+ font-size: 1.25rem;
6
+ @extend .d-none;
7
+ @extend .d-lg-block;
8
+ @extend .d-print-none;
9
+ @extend .flex-shrink-0;
10
+
11
+ ul {
12
+ @extend .sticky-top;
13
+ top: 1rem;
14
+ z-index: 100;
15
+
16
+ a {
17
+ font-family: $headings-font-family;
18
+ font-weight: 600;
19
+ &.active {
20
+ color: $gold-600;
21
+ }
22
+ }
23
+ }
24
+ }
25
+
26
+ .vds-mobile-sidenav {
27
+ .locale-icon {
28
+ display: none;
29
+ }
30
+ }
31
+
32
+ .vds-sidenav, .vds-mobile-sidenav {
33
+ ul {
34
+ @extend .list-unstyled;
35
+ @extend .flex-column;
36
+
37
+ li {
38
+ a {
39
+ @extend .text-decoration-none;
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,213 @@
1
+ .vipassana-logo {
2
+ display: inline-flex;
3
+ align-items: center;
4
+ transform: scale(1);
5
+ transform-origin: left;
6
+ text-align: left;
7
+ text-decoration: none;
8
+
9
+ --vds-logo-title-color: #9C6B14;
10
+ --vds-logo-tagline-color: #4F4D47;
11
+
12
+ --vds-logo-title-font-size: 1.8em;
13
+ --vds-logo-title-line-height: 1.1;
14
+
15
+ --vds-logo-tagline-font-size: .9em;
16
+ --vds-logo-tagline-line-height: 1;
17
+ --vds-logo-tagline-margin: .25em;
18
+ }
19
+
20
+ .vipassana-logo[data-reverse="true"] {
21
+ --vds-logo-tagline-margin: .5em;
22
+ }
23
+
24
+ .vipassana-logo[data-dark-mode="true"] {
25
+ --vds-logo-title-color: white;
26
+ --vds-logo-tagline-color: #ffffff90;
27
+ }
28
+
29
+ [lang=bg] .vipassana-logo,
30
+ [lang=el] .vipassana-logo,
31
+ [lang=mk] .vipassana-logo,
32
+ [lang=ru] .vipassana-logo,
33
+ [lang=sr] .vipassana-logo,
34
+ [lang=uk] .vipassana-logo,
35
+ [lang=vi] .vipassana-logo {
36
+ --vds-logo-title-font-size: 1.5em;
37
+ --vds-logo-title-line-height: 1.3;
38
+ --vds-logo-tagline-margin: .4em;
39
+ }
40
+ [lang=fa] .vipassana-logo {
41
+ --vds-logo-tagline-font-size: 1.2em;
42
+ }
43
+ [lang=gu] .vipassana-logo,
44
+ [lang=hi] .vipassana-logo,
45
+ [lang=te] .vipassana-logo,
46
+ [lang=mr] .vipassana-logo {
47
+ .logo-text { margin-bottom: -.5em; }
48
+ }
49
+ [lang=he] .vipassana-logo[data-reverse="true"] {
50
+ --vds-logo-tagline-margin: .25em;
51
+ }
52
+ [lang=ja] .vipassana-logo {
53
+ --vds-logo-title-font-size: 1.6em;
54
+ --vds-logo-title-line-height: 1.3;
55
+ --vds-logo-tagline-margin: .15em;
56
+ }
57
+ [lang=km] .vipassana-logo {
58
+ --vds-logo-title-font-size: 1.7em;
59
+ --vds-logo-tagline-margin: .6em;
60
+ }
61
+ [lang=ko] .vipassana-logo {
62
+ --vds-logo-title-font-size: 1.6em;
63
+ --vds-logo-title-line-height: 1.2;
64
+ --vds-logo-tagline-margin: .3em;
65
+ }
66
+ [lang=or] .vipassana-logo {
67
+ --vds-logo-title-line-height: 1;
68
+ --vds-logo-tagline-margin: .5em;
69
+ .logo-title {
70
+ margin-left: -.15em;
71
+ }
72
+ }
73
+ [lang=si] .vipassana-logo[data-reverse="true"] {
74
+ --vds-logo-title-font-size: 1.5em;
75
+ --vds-logo-title-line-height: 1.3;
76
+ --vds-logo-tagline-margin: .4em;
77
+ }
78
+ [lang=ta] .vipassana-logo {
79
+ --vds-logo-title-font-size: 1.5em;
80
+ --vds-logo-tagline-margin: .4em;
81
+ }
82
+ [lang=zh-HANS] .vipassana-logo,
83
+ [lang=zh-HANT] .vipassana-logo,
84
+ [lang=zh-HANT-HK] .vipassana-logo {
85
+ --vds-logo-title-font-size: 1.5em;
86
+ --vds-logo-title-line-height: 1.2;
87
+ --vds-logo-tagline-margin: .5em;
88
+ .logo-text {
89
+ margin-left: -.1em;
90
+ }
91
+ .logo-subtitle {
92
+ margin-left: .1em;
93
+ }
94
+ }
95
+
96
+ [lang="hi"] .vipassana-logo .logo-title,
97
+ [lang="mr"] .vipassana-logo .logo-title {
98
+ margin-left: -.1em;
99
+ }
100
+ .vipassana-logo:not([data-reverse="true"]) [data-start-with="v"],
101
+ .vipassana-logo:not([data-reverse="true"]) [data-start-with="t"] {
102
+ margin-left: -.17em /*rtl:0*/;
103
+ }
104
+ .vipassana-logo:not([data-reverse="true"]) [data-start-with="м"],
105
+ .vipassana-logo:not([data-reverse="true"]) [data-start-with="в"] {
106
+ margin-left: -0.08em;
107
+ }
108
+ .vipassana-logo:not([data-reverse="true"]) [data-start-with="β"] {
109
+ margin-left: -.05em;
110
+ }
111
+
112
+ .vipassana-logo[data-disposition="default"] {
113
+ max-width: 48em; /* the title will wrap if it's too long */
114
+ }
115
+ .vipassana-logo[data-disposition="centered"] {
116
+ flex-direction: column;
117
+ text-align: center;
118
+ }
119
+
120
+ /* Wheel */
121
+ .vipassana-logo .logo-wheel {
122
+ height: 5.5em;
123
+ max-width: 3.9em;
124
+ margin-right: 1em;
125
+ }
126
+ .vipassana-logo[data-disposition="centered"] .logo-wheel {
127
+ margin: 0 0 .4em 0 !important;
128
+ }
129
+ .vipassana-logo[data-disposition="centered"][data-reverse="true"] .logo-wheel {
130
+ margin-bottom: .6em !important;
131
+ }
132
+
133
+ /* Text */
134
+ .vipassana-logo .logo-text {
135
+ display: flex;
136
+ flex-direction: column;
137
+ }
138
+ .vipassana-logo[data-reverse="true"] .logo-text {
139
+ flex-direction: column-reverse;
140
+ }
141
+
142
+ /* Title */
143
+ .vipassana-logo .logo-title {
144
+ color: var(--vds-logo-title-color);
145
+ font-family: var(--vds-headings-font-family),FootLight,system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Noto Sans,Liberation Sans,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
146
+ line-height: var(--vds-logo-title-line-height);
147
+ font-size: var(--vds-logo-title-font-size);
148
+ font-weight: normal;
149
+ margin: 0;
150
+ padding: 0;
151
+ display: flex;
152
+ flex-direction: row;
153
+ flex-wrap: wrap;
154
+ }
155
+ .vipassana-logo[data-reverse="true"] .logo-title {
156
+ flex-direction: row-reverse;
157
+ justify-content: start;
158
+ }
159
+ .vipassana-logo[data-disposition="left-two-lines"] .logo-title,
160
+ .vipassana-logo[data-disposition="centered"] .logo-title {
161
+ flex-direction: column;
162
+ }
163
+ .vipassana-logo[data-disposition="left-two-lines"] .logo-space,
164
+ .vipassana-logo[data-disposition="centered"] .logo-space {
165
+ display: none;
166
+ }
167
+ .vipassana-logo[data-disposition="left-two-lines"][data-reverse="true"] .logo-title,
168
+ .vipassana-logo[data-disposition="centered"][data-reverse="true"] .logo-title {
169
+ flex-direction: column-reverse;
170
+ }
171
+
172
+
173
+ .vipassana-logo .logo-title span {
174
+ display: inline-flex;
175
+ white-space: nowrap;
176
+ }
177
+
178
+ .vipassana-logo[data-disposition="left-two-lines"] .logo-title span {
179
+ width: 100%;
180
+ }
181
+ .vipassana-logo[data-disposition="centered"] .logo-title span {
182
+ width: 100%;
183
+ justify-content: center;
184
+ }
185
+
186
+ // For some language, we cnanot just concat vipasana_meditation + as_taught, we need
187
+ // a dedicate translation vipassana_as_taught
188
+ .vipassana-logo .logo-title .vipassana-as-taught {
189
+ display: none;
190
+ }
191
+ [lang=zh-HANS], [lang=zh-HANT], [lang=zh-HANT-HK], [lang=gu], [lang=km], [lang=ja], [lang=mr], [lang=si],
192
+ [lang=ta], [lang=te], [lang=hi] {
193
+ .vipassana-logo[data-disposition="left-one-line"] .logo-title span {
194
+ display: none;
195
+ &.vipassana-as-taught { display: block; }
196
+ }
197
+ }
198
+
199
+ /* Tagline */
200
+ .logo-subtitle {
201
+ color: var(--vds-logo-tagline-color);
202
+ font-family: var(--vds-font-family),'Noto Sans',system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Noto Sans,Liberation Sans,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
203
+ font-weight: 300;
204
+ font-size: var(--vds-logo-tagline-font-size);
205
+ line-height: var(--vds-logo-tagline-line-height);
206
+ margin: var(--vds-logo-tagline-margin) 0 0 0;
207
+ }
208
+ .vipassana-logo[data-tagline="false"] .logo-subtitle {
209
+ display: none;
210
+ }
211
+ .vipassana-logo[data-reverse="true"] .logo-subtitle {
212
+ margin: 0 0 var(--vds-logo-tagline-margin) 0;
213
+ }
@@ -0,0 +1,11 @@
1
+ $grid-breakpoints: (
2
+ xs: 0,
3
+ sm: 576px,
4
+ md: 768px,
5
+ lg: 992px,
6
+ xl: 1200px,
7
+ xxl: 1400px
8
+ ) !default;
9
+ @import "bootstrap5/scss/mixins/_breakpoints.scss";
10
+
11
+ @import "layout/vds-mixins.scss";
@@ -0,0 +1,22 @@
1
+ /* https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400&display=swap */
2
+
3
+ /* arabic */
4
+ @font-face {
5
+ font-family: 'Noto Sans Arabic';
6
+ font-style: normal;
7
+ font-weight: 300;
8
+ font-stretch: 100%;
9
+ font-display: swap;
10
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansarabic/v18/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4o.woff2) format('woff2');
11
+ unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
12
+ }
13
+ /* arabic */
14
+ @font-face {
15
+ font-family: 'Noto Sans Arabic';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ font-stretch: 100%;
19
+ font-display: swap;
20
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansarabic/v18/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4o.woff2) format('woff2');
21
+ unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
22
+ }
@@ -0,0 +1,22 @@
1
+ /* https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400&display=swap */
2
+
3
+ /* arabic */
4
+ @font-face {
5
+ font-family: 'Noto Sans Arabic';
6
+ font-style: normal;
7
+ font-weight: 300;
8
+ font-stretch: 100%;
9
+ font-display: swap;
10
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansarabic/v18/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4o.woff2) format('woff2');
11
+ unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
12
+ }
13
+ /* arabic */
14
+ @font-face {
15
+ font-family: 'Noto Sans Arabic';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ font-stretch: 100%;
19
+ font-display: swap;
20
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansarabic/v18/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4o.woff2) format('woff2');
21
+ unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
22
+ }
@@ -0,0 +1,62 @@
1
+ /* https://fonts.googleapis.com/css2?family=Noto+Sans+Gujarati:wght@300;400&display=swap */
2
+
3
+ /* gujarati */
4
+ @font-face {
5
+ font-family: 'Noto Sans Gujarati';
6
+ font-style: normal;
7
+ font-weight: 300;
8
+ font-stretch: 100%;
9
+ font-display: swap;
10
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbXaYEL-C.woff2) format('woff2');
11
+ unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
12
+ }
13
+ /* latin-ext */
14
+ @font-face {
15
+ font-family: 'Noto Sans Gujarati';
16
+ font-style: normal;
17
+ font-weight: 300;
18
+ font-stretch: 100%;
19
+ font-display: swap;
20
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbWOYEL-C.woff2) format('woff2');
21
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
22
+ }
23
+ /* latin */
24
+ @font-face {
25
+ font-family: 'Noto Sans Gujarati';
26
+ font-style: normal;
27
+ font-weight: 300;
28
+ font-stretch: 100%;
29
+ font-display: swap;
30
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbW2YEA.woff2) format('woff2');
31
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
32
+ }
33
+ /* gujarati */
34
+ @font-face {
35
+ font-family: 'Noto Sans Gujarati';
36
+ font-style: normal;
37
+ font-weight: 400;
38
+ font-stretch: 100%;
39
+ font-display: swap;
40
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbXaYEL-C.woff2) format('woff2');
41
+ unicode-range: U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839;
42
+ }
43
+ /* latin-ext */
44
+ @font-face {
45
+ font-family: 'Noto Sans Gujarati';
46
+ font-style: normal;
47
+ font-weight: 400;
48
+ font-stretch: 100%;
49
+ font-display: swap;
50
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbWOYEL-C.woff2) format('woff2');
51
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
52
+ }
53
+ /* latin */
54
+ @font-face {
55
+ font-family: 'Noto Sans Gujarati';
56
+ font-style: normal;
57
+ font-weight: 400;
58
+ font-stretch: 100%;
59
+ font-display: swap;
60
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosansgujarati/v23/wlpZgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMbW2YEA.woff2) format('woff2');
61
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
62
+ }
@@ -0,0 +1,60 @@
1
+ /* hebrew */
2
+ @font-face {
3
+ font-family: 'Noto Sans Hebrew';
4
+ font-style: normal;
5
+ font-weight: 300;
6
+ font-stretch: 100%;
7
+ font-display: swap;
8
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiWTNzENg.woff2) format('woff2');
9
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
10
+ }
11
+ /* latin-ext */
12
+ @font-face {
13
+ font-family: 'Noto Sans Hebrew';
14
+ font-style: normal;
15
+ font-weight: 300;
16
+ font-stretch: 100%;
17
+ font-display: swap;
18
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiaTNzENg.woff2) format('woff2');
19
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20
+ }
21
+ /* latin */
22
+ @font-face {
23
+ font-family: 'Noto Sans Hebrew';
24
+ font-style: normal;
25
+ font-weight: 300;
26
+ font-stretch: 100%;
27
+ font-display: swap;
28
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiUTNw.woff2) format('woff2');
29
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
30
+ }
31
+ /* hebrew */
32
+ @font-face {
33
+ font-family: 'Noto Sans Hebrew';
34
+ font-style: normal;
35
+ font-weight: 400;
36
+ font-stretch: 100%;
37
+ font-display: swap;
38
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiWTNzENg.woff2) format('woff2');
39
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
40
+ }
41
+ /* latin-ext */
42
+ @font-face {
43
+ font-family: 'Noto Sans Hebrew';
44
+ font-style: normal;
45
+ font-weight: 400;
46
+ font-stretch: 100%;
47
+ font-display: swap;
48
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiaTNzENg.woff2) format('woff2');
49
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
50
+ }
51
+ /* latin */
52
+ @font-face {
53
+ font-family: 'Noto Sans Hebrew';
54
+ font-style: normal;
55
+ font-weight: 400;
56
+ font-stretch: 100%;
57
+ font-display: swap;
58
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosanshebrew/v43/or30Q7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaePiUTNw.woff2) format('woff2');
59
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
60
+ }