vipassana-design-standards 0.0.37 → 1.0.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.
Files changed (59) hide show
  1. package/README.md +46 -39
  2. package/dist/css/bootstrap5-theme.css +158 -128
  3. package/dist/css/bootstrap5-theme.css.map +1 -1
  4. package/dist/css/bootstrap5-theme.min.css +1 -1
  5. package/dist/css/bootstrap5-theme.rtl.css +158 -128
  6. package/dist/css/bootstrap5-theme.rtl.min.css +1 -1
  7. package/dist/css/fonts-ar.css +13 -5
  8. package/dist/css/fonts-fa.css +13 -5
  9. package/dist/css/fonts-gu.css +23 -11
  10. package/dist/css/fonts-he.css +23 -11
  11. package/dist/css/fonts-ja.css +2367 -473
  12. package/dist/css/fonts-km.css +23 -11
  13. package/dist/css/fonts-ko.css +1935 -471
  14. package/dist/css/fonts-or.css +23 -11
  15. package/dist/css/fonts-si.css +23 -11
  16. package/dist/css/fonts-ta.css +23 -11
  17. package/dist/css/fonts-te.css +23 -11
  18. package/dist/css/fonts-th.css +23 -11
  19. package/dist/css/fonts-zh-HANS.css +2271 -389
  20. package/dist/css/fonts-zh-HANT-HK.css +2901 -421
  21. package/dist/css/fonts-zh-HANT.css +2443 -405
  22. package/dist/css/fonts.css.map +1 -1
  23. package/dist/css/logo.css +39 -17
  24. package/dist/css/logo.css.map +1 -1
  25. package/dist/css/logo.min.css +1 -1
  26. package/dist/css/logo.rtl.css +39 -17
  27. package/dist/css/logo.rtl.min.css +1 -1
  28. package/dist/js/bootstrap5-theme.min.js +12 -12
  29. package/dist/js/helpers.js +45 -15
  30. package/dist/js/i18n.js +319 -319
  31. package/dist/js/react-helpers.jsx +106 -42
  32. package/package.json +1 -1
  33. package/src/stylesheets/bootstrap5-theme.scss +11 -11
  34. package/src/stylesheets/custom-bootstrap-utilities.scss +129 -50
  35. package/src/stylesheets/custom-bootstrap-variables.scss +40 -36
  36. package/src/stylesheets/custom-bootstrap.scss +17 -13
  37. package/src/stylesheets/fonts.scss +234 -70
  38. package/src/stylesheets/index.css +24 -22
  39. package/src/stylesheets/layout/vds-header.scss +3 -3
  40. package/src/stylesheets/layout/vds-layout.scss +6 -5
  41. package/src/stylesheets/layout/vds-mixins.scss +1 -1
  42. package/src/stylesheets/layout/vds-sidenav.scss +3 -2
  43. package/src/stylesheets/logo.scss +94 -78
  44. package/src/stylesheets/mixins.scss +2 -2
  45. package/src/stylesheets/specific-fonts/fonts-ar.css +13 -5
  46. package/src/stylesheets/specific-fonts/fonts-fa.css +13 -5
  47. package/src/stylesheets/specific-fonts/fonts-gu.css +23 -11
  48. package/src/stylesheets/specific-fonts/fonts-he.css +23 -11
  49. package/src/stylesheets/specific-fonts/fonts-ja.css +2367 -473
  50. package/src/stylesheets/specific-fonts/fonts-km.css +23 -11
  51. package/src/stylesheets/specific-fonts/fonts-ko.css +1935 -471
  52. package/src/stylesheets/specific-fonts/fonts-or.css +23 -11
  53. package/src/stylesheets/specific-fonts/fonts-si.css +23 -11
  54. package/src/stylesheets/specific-fonts/fonts-ta.css +23 -11
  55. package/src/stylesheets/specific-fonts/fonts-te.css +23 -11
  56. package/src/stylesheets/specific-fonts/fonts-th.css +23 -11
  57. package/src/stylesheets/specific-fonts/fonts-zh-HANS.css +2271 -389
  58. package/src/stylesheets/specific-fonts/fonts-zh-HANT-HK.css +2901 -421
  59. package/src/stylesheets/specific-fonts/fonts-zh-HANT.css +2443 -405
@@ -21,7 +21,8 @@
21
21
  display: inline-flex;
22
22
  align-items: center;
23
23
  }
24
- .btn-secondary, .btn-info {
24
+ .btn-secondary,
25
+ .btn-info {
25
26
  --bs-btn-color: white;
26
27
  --bs-btn-hover-color: white;
27
28
  --bs-btn-active-color: white;
@@ -42,8 +43,9 @@
42
43
  display: inline-flex;
43
44
  align-items: center;
44
45
 
45
- img, i {
46
- margin-right: .5rem;
46
+ img,
47
+ i {
48
+ margin-right: 0.5rem;
47
49
  }
48
50
 
49
51
  img {
@@ -60,7 +62,7 @@
60
62
  overflow: hidden;
61
63
  transform: translate3d(0, 0, 0);
62
64
  &:after {
63
- content: "";
65
+ content: '';
64
66
  display: block;
65
67
  position: absolute;
66
68
  width: 100%;
@@ -73,11 +75,11 @@
73
75
  background-position: 50%;
74
76
  transform: scale(10, 10);
75
77
  opacity: 0;
76
- transition: transform .3s, opacity 1s;
78
+ transition: transform 0.3s, opacity 1s;
77
79
  }
78
80
  &:active:after {
79
81
  transform: scale(0, 0);
80
- opacity: .2;
82
+ opacity: 0.2;
81
83
  transition: 0s;
82
84
  }
83
85
  }
@@ -87,7 +89,7 @@
87
89
  .btn.dropdown-toggle:after {
88
90
  display: none; // remove caret
89
91
  }
90
- .btn[type=submit] {
92
+ .btn[type='submit'] {
91
93
  width: 100%;
92
94
  justify-content: center;
93
95
  }
@@ -96,12 +98,13 @@
96
98
  .form-group {
97
99
  margin-bottom: 1rem;
98
100
  }
99
- .form-check-input, .form-check-label {
101
+ .form-check-input,
102
+ .form-check-label {
100
103
  cursor: pointer;
101
104
  }
102
105
  .form-label {
103
- font-size: .9rem;
104
- opacity: .8;
106
+ font-size: 0.9rem;
107
+ opacity: 0.8;
105
108
  margin-bottom: 5px;
106
109
  }
107
110
  .form-select {
@@ -111,13 +114,14 @@
111
114
  }
112
115
  }
113
116
  .form-check {
114
- margin-bottom: .25rem;
117
+ margin-bottom: 0.25rem;
115
118
  }
116
119
  .input-group-text {
117
120
  background-color: var(--bs-light);
118
121
  }
119
122
  // mandatory asterix for required inputs
120
- abbr[title], abbr[data-original-title] {
123
+ abbr[title],
124
+ abbr[data-original-title] {
121
125
  cursor: help;
122
126
  color: var(--bs-danger);
123
127
  border: none;
@@ -156,4 +160,4 @@ abbr[title], abbr[data-original-title] {
156
160
  // Other
157
161
  .dropdown-item {
158
162
  cursor: pointer;
159
- }
163
+ }
@@ -2,52 +2,190 @@
2
2
  Code generated in index.html #css-variables
3
3
  */
4
4
 
5
- :root { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
6
- [lang="en"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
7
- [lang="bg"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
8
- [lang="ca"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
9
- [lang="cs"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
10
- [lang="da"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
11
- [lang="de"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
12
- [lang="el"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
13
- [lang="es"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
14
- [lang="fa"] { --vds-font-family: 'Noto Sans Arabic'; --vds-headings-font-family: 'Noto Sans Arabic'; }
15
- [lang="fi"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
16
- [lang="fr"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
17
- [lang="gu"] { --vds-font-family: 'Noto Sans Gujarati'; --vds-headings-font-family: 'Noto Sans Gujarati'; }
18
- [lang="he"] { --vds-font-family: 'Noto Sans Hebrew'; --vds-headings-font-family: 'Noto Sans Hebrew'; }
19
- [lang="hi"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
20
- [lang="hu"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
21
- [lang="id"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
22
- [lang="it"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
23
- [lang="ja"] { --vds-font-family: 'Noto Sans JP'; --vds-headings-font-family: 'Noto Sans JP'; }
24
- [lang="km"] { --vds-font-family: 'Noto Sans Khmer'; --vds-headings-font-family: 'Noto Sans Khmer'; }
25
- [lang="ko"] { --vds-font-family: 'Noto Sans KR'; --vds-headings-font-family: 'Noto Sans KR'; }
26
- [lang="lt"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
27
- [lang="lv"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
28
- [lang="mk"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
29
- [lang="mr"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
30
- [lang="nl"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
31
- [lang="or"] { --vds-font-family: 'Noto Sans Oriya'; --vds-headings-font-family: 'Noto Sans Oriya'; }
32
- [lang="pl"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
33
- [lang="pt"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
34
- [lang="ro"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
35
- [lang="ru"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
36
- [lang="si"] { --vds-font-family: 'Noto Sans Sinhala'; --vds-headings-font-family: 'Noto Sans Sinhala'; }
37
- [lang="sl"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
38
- [lang="sr"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
39
- [lang="sv"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
40
- [lang="ta"] { --vds-font-family: 'Noto Sans Tamil'; --vds-headings-font-family: 'Noto Sans Tamil'; }
41
- [lang="te"] { --vds-font-family: 'Noto Sans Telugu'; --vds-headings-font-family: 'Noto Sans Telugu'; }
42
- [lang="th"] { --vds-font-family: 'Noto Sans Thai'; --vds-headings-font-family: 'Noto Sans Thai'; }
43
- [lang="tr"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'FootLight'; }
44
- [lang="uk"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
45
- [lang="vi"] { --vds-font-family: 'Noto Sans'; --vds-headings-font-family: 'Noto Sans'; }
46
- [lang="zh-HANS"] { --vds-font-family: 'Noto Sans SC'; --vds-headings-font-family: 'Noto Sans SC'; }
47
- [lang="zh-Hans"] { --vds-font-family: 'Noto Sans SC'; --vds-headings-font-family: 'Noto Sans SC'; }
48
- [lang="zh-HANT"] { --vds-font-family: 'Noto Sans TC'; --vds-headings-font-family: 'Noto Sans TC'; }
49
- [lang="zh-Hant"] { --vds-font-family: 'Noto Sans TC'; --vds-headings-font-family: 'Noto Sans TC'; }
50
- [lang="zh-HANT-HK"] { --vds-font-family: 'Noto Sans HK'; --vds-headings-font-family: 'Noto Sans HK'; }
5
+ :root {
6
+ --vds-font-family: 'Noto Sans';
7
+ --vds-headings-font-family: 'FootLight';
8
+ }
9
+ [lang='en'] {
10
+ --vds-font-family: 'Noto Sans';
11
+ --vds-headings-font-family: 'FootLight';
12
+ }
13
+ [lang='bg'] {
14
+ --vds-font-family: 'Noto Sans';
15
+ --vds-headings-font-family: 'Noto Sans';
16
+ }
17
+ [lang='ca'] {
18
+ --vds-font-family: 'Noto Sans';
19
+ --vds-headings-font-family: 'FootLight';
20
+ }
21
+ [lang='cs'] {
22
+ --vds-font-family: 'Noto Sans';
23
+ --vds-headings-font-family: 'FootLight';
24
+ }
25
+ [lang='da'] {
26
+ --vds-font-family: 'Noto Sans';
27
+ --vds-headings-font-family: 'FootLight';
28
+ }
29
+ [lang='de'] {
30
+ --vds-font-family: 'Noto Sans';
31
+ --vds-headings-font-family: 'FootLight';
32
+ }
33
+ [lang='el'] {
34
+ --vds-font-family: 'Noto Sans';
35
+ --vds-headings-font-family: 'Noto Sans';
36
+ }
37
+ [lang='es'] {
38
+ --vds-font-family: 'Noto Sans';
39
+ --vds-headings-font-family: 'FootLight';
40
+ }
41
+ [lang='fa'] {
42
+ --vds-font-family: 'Noto Sans Arabic';
43
+ --vds-headings-font-family: 'Noto Sans Arabic';
44
+ }
45
+ [lang='fi'] {
46
+ --vds-font-family: 'Noto Sans';
47
+ --vds-headings-font-family: 'FootLight';
48
+ }
49
+ [lang='fr'] {
50
+ --vds-font-family: 'Noto Sans';
51
+ --vds-headings-font-family: 'FootLight';
52
+ }
53
+ [lang='gu'] {
54
+ --vds-font-family: 'Noto Sans Gujarati';
55
+ --vds-headings-font-family: 'Noto Sans Gujarati';
56
+ }
57
+ [lang='he'] {
58
+ --vds-font-family: 'Noto Sans Hebrew';
59
+ --vds-headings-font-family: 'Noto Sans Hebrew';
60
+ }
61
+ [lang='hi'] {
62
+ --vds-font-family: 'Noto Sans';
63
+ --vds-headings-font-family: 'FootLight';
64
+ }
65
+ [lang='hu'] {
66
+ --vds-font-family: 'Noto Sans';
67
+ --vds-headings-font-family: 'FootLight';
68
+ }
69
+ [lang='id'] {
70
+ --vds-font-family: 'Noto Sans';
71
+ --vds-headings-font-family: 'FootLight';
72
+ }
73
+ [lang='it'] {
74
+ --vds-font-family: 'Noto Sans';
75
+ --vds-headings-font-family: 'FootLight';
76
+ }
77
+ [lang='ja'] {
78
+ --vds-font-family: 'Noto Sans JP';
79
+ --vds-headings-font-family: 'Noto Sans JP';
80
+ }
81
+ [lang='km'] {
82
+ --vds-font-family: 'Noto Sans Khmer';
83
+ --vds-headings-font-family: 'Noto Sans Khmer';
84
+ }
85
+ [lang='ko'] {
86
+ --vds-font-family: 'Noto Sans KR';
87
+ --vds-headings-font-family: 'Noto Sans KR';
88
+ }
89
+ [lang='lt'] {
90
+ --vds-font-family: 'Noto Sans';
91
+ --vds-headings-font-family: 'FootLight';
92
+ }
93
+ [lang='lv'] {
94
+ --vds-font-family: 'Noto Sans';
95
+ --vds-headings-font-family: 'FootLight';
96
+ }
97
+ [lang='mk'] {
98
+ --vds-font-family: 'Noto Sans';
99
+ --vds-headings-font-family: 'Noto Sans';
100
+ }
101
+ [lang='mr'] {
102
+ --vds-font-family: 'Noto Sans';
103
+ --vds-headings-font-family: 'FootLight';
104
+ }
105
+ [lang='nl'] {
106
+ --vds-font-family: 'Noto Sans';
107
+ --vds-headings-font-family: 'FootLight';
108
+ }
109
+ [lang='or'] {
110
+ --vds-font-family: 'Noto Sans Oriya';
111
+ --vds-headings-font-family: 'Noto Sans Oriya';
112
+ }
113
+ [lang='pl'] {
114
+ --vds-font-family: 'Noto Sans';
115
+ --vds-headings-font-family: 'FootLight';
116
+ }
117
+ [lang='pt'] {
118
+ --vds-font-family: 'Noto Sans';
119
+ --vds-headings-font-family: 'FootLight';
120
+ }
121
+ [lang='ro'] {
122
+ --vds-font-family: 'Noto Sans';
123
+ --vds-headings-font-family: 'FootLight';
124
+ }
125
+ [lang='ru'] {
126
+ --vds-font-family: 'Noto Sans';
127
+ --vds-headings-font-family: 'Noto Sans';
128
+ }
129
+ [lang='si'] {
130
+ --vds-font-family: 'Noto Sans Sinhala';
131
+ --vds-headings-font-family: 'Noto Sans Sinhala';
132
+ }
133
+ [lang='sl'] {
134
+ --vds-font-family: 'Noto Sans';
135
+ --vds-headings-font-family: 'FootLight';
136
+ }
137
+ [lang='sr'] {
138
+ --vds-font-family: 'Noto Sans';
139
+ --vds-headings-font-family: 'Noto Sans';
140
+ }
141
+ [lang='sv'] {
142
+ --vds-font-family: 'Noto Sans';
143
+ --vds-headings-font-family: 'FootLight';
144
+ }
145
+ [lang='ta'] {
146
+ --vds-font-family: 'Noto Sans Tamil';
147
+ --vds-headings-font-family: 'Noto Sans Tamil';
148
+ }
149
+ [lang='te'] {
150
+ --vds-font-family: 'Noto Sans Telugu';
151
+ --vds-headings-font-family: 'Noto Sans Telugu';
152
+ }
153
+ [lang='th'] {
154
+ --vds-font-family: 'Noto Sans Thai';
155
+ --vds-headings-font-family: 'Noto Sans Thai';
156
+ }
157
+ [lang='tr'] {
158
+ --vds-font-family: 'Noto Sans';
159
+ --vds-headings-font-family: 'FootLight';
160
+ }
161
+ [lang='uk'] {
162
+ --vds-font-family: 'Noto Sans';
163
+ --vds-headings-font-family: 'Noto Sans';
164
+ }
165
+ [lang='vi'] {
166
+ --vds-font-family: 'Noto Sans';
167
+ --vds-headings-font-family: 'Noto Sans';
168
+ }
169
+ [lang='zh-HANS'] {
170
+ --vds-font-family: 'Noto Sans SC';
171
+ --vds-headings-font-family: 'Noto Sans SC';
172
+ }
173
+ [lang='zh-Hans'] {
174
+ --vds-font-family: 'Noto Sans SC';
175
+ --vds-headings-font-family: 'Noto Sans SC';
176
+ }
177
+ [lang='zh-HANT'] {
178
+ --vds-font-family: 'Noto Sans TC';
179
+ --vds-headings-font-family: 'Noto Sans TC';
180
+ }
181
+ [lang='zh-Hant'] {
182
+ --vds-font-family: 'Noto Sans TC';
183
+ --vds-headings-font-family: 'Noto Sans TC';
184
+ }
185
+ [lang='zh-HANT-HK'] {
186
+ --vds-font-family: 'Noto Sans HK';
187
+ --vds-headings-font-family: 'Noto Sans HK';
188
+ }
51
189
 
52
190
  @font-face {
53
191
  font-family: 'FootLight';
@@ -74,7 +212,8 @@
74
212
  font-style: normal;
75
213
  font-weight: 300;
76
214
  font-display: swap;
77
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVadyB1Wk.woff2) format('woff2');
215
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVadyB1Wk.woff2)
216
+ format('woff2');
78
217
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
79
218
  }
80
219
 
@@ -84,7 +223,8 @@
84
223
  font-style: normal;
85
224
  font-weight: 300;
86
225
  font-display: swap;
87
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVYNyB1Wk.woff2) format('woff2');
226
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVYNyB1Wk.woff2)
227
+ format('woff2');
88
228
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
89
229
  }
90
230
 
@@ -94,8 +234,10 @@
94
234
  font-style: normal;
95
235
  font-weight: 300;
96
236
  font-display: swap;
97
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZdyB1Wk.woff2) format('woff2');
98
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;
237
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZdyB1Wk.woff2)
238
+ format('woff2');
239
+ unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839,
240
+ U+A8E0-A8FF;
99
241
  }
100
242
 
101
243
  /* greek-ext */
@@ -104,7 +246,8 @@
104
246
  font-style: normal;
105
247
  font-weight: 300;
106
248
  font-display: swap;
107
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVaNyB1Wk.woff2) format('woff2');
249
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVaNyB1Wk.woff2)
250
+ format('woff2');
108
251
  unicode-range: U+1F00-1FFF;
109
252
  }
110
253
 
@@ -114,7 +257,8 @@
114
257
  font-style: normal;
115
258
  font-weight: 300;
116
259
  font-display: swap;
117
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZ9yB1Wk.woff2) format('woff2');
260
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZ9yB1Wk.woff2)
261
+ format('woff2');
118
262
  unicode-range: U+0370-03FF;
119
263
  }
120
264
 
@@ -124,8 +268,10 @@
124
268
  font-style: normal;
125
269
  font-weight: 300;
126
270
  font-display: swap;
127
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVa9yB1Wk.woff2) format('woff2');
128
- unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
271
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVa9yB1Wk.woff2)
272
+ format('woff2');
273
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
274
+ U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
129
275
  }
130
276
 
131
277
  /* latin-ext */
@@ -134,8 +280,10 @@
134
280
  font-style: normal;
135
281
  font-weight: 300;
136
282
  font-display: swap;
137
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVatyB1Wk.woff2) format('woff2');
138
- 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;
283
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVatyB1Wk.woff2)
284
+ format('woff2');
285
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
286
+ U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
139
287
  }
140
288
 
141
289
  /* latin */
@@ -144,8 +292,11 @@
144
292
  font-style: normal;
145
293
  font-weight: 300;
146
294
  font-display: swap;
147
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZNyB.woff2) format('woff2');
148
- 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;
295
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZVZNyB.woff2)
296
+ format('woff2');
297
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
298
+ U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
299
+ U+FFFD;
149
300
  }
150
301
 
151
302
  /* cyrillic-ext */
@@ -154,7 +305,8 @@
154
305
  font-style: normal;
155
306
  font-weight: 400;
156
307
  font-display: swap;
157
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6DRAW_0.woff2) format('woff2');
308
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6DRAW_0.woff2)
309
+ format('woff2');
158
310
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
159
311
  }
160
312
 
@@ -164,7 +316,8 @@
164
316
  font-style: normal;
165
317
  font-weight: 400;
166
318
  font-display: swap;
167
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr4TRAW_0.woff2) format('woff2');
319
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr4TRAW_0.woff2)
320
+ format('woff2');
168
321
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
169
322
  }
170
323
 
@@ -174,8 +327,10 @@
174
327
  font-style: normal;
175
328
  font-weight: 400;
176
329
  font-display: swap;
177
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5DRAW_0.woff2) format('woff2');
178
- unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;
330
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5DRAW_0.woff2)
331
+ format('woff2');
332
+ unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839,
333
+ U+A8E0-A8FF;
179
334
  }
180
335
 
181
336
  /* greek-ext */
@@ -184,7 +339,8 @@
184
339
  font-style: normal;
185
340
  font-weight: 400;
186
341
  font-display: swap;
187
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6TRAW_0.woff2) format('woff2');
342
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6TRAW_0.woff2)
343
+ format('woff2');
188
344
  unicode-range: U+1F00-1FFF;
189
345
  }
190
346
 
@@ -194,7 +350,8 @@
194
350
  font-style: normal;
195
351
  font-weight: 400;
196
352
  font-display: swap;
197
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5jRAW_0.woff2) format('woff2');
353
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5jRAW_0.woff2)
354
+ format('woff2');
198
355
  unicode-range: U+0370-03FF;
199
356
  }
200
357
 
@@ -204,8 +361,10 @@
204
361
  font-style: normal;
205
362
  font-weight: 400;
206
363
  font-display: swap;
207
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6jRAW_0.woff2) format('woff2');
208
- unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
364
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6jRAW_0.woff2)
365
+ format('woff2');
366
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
367
+ U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
209
368
  }
210
369
 
211
370
  /* latin-ext */
@@ -214,8 +373,10 @@
214
373
  font-style: normal;
215
374
  font-weight: 400;
216
375
  font-display: swap;
217
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6zRAW_0.woff2) format('woff2');
218
- 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;
376
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr6zRAW_0.woff2)
377
+ format('woff2');
378
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
379
+ U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
219
380
  }
220
381
 
221
382
  /* latin */
@@ -224,6 +385,9 @@
224
385
  font-style: normal;
225
386
  font-weight: 400;
226
387
  font-display: swap;
227
- src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5TRA.woff2) format('woff2');
228
- 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;
388
+ src: url(https://design-standards.dhamma.org/dist/fonts/notosans/v30/o-0IIpQlx3QUlC5A4PNr5TRA.woff2)
389
+ format('woff2');
390
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
391
+ U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
392
+ U+FFFD;
229
393
  }
@@ -1,11 +1,12 @@
1
1
  :root {
2
- --gold-dark: #9C6B14;
3
- --black: #4F4D47;
4
- --gold: #B78730;
5
- --blue: #1E3461;
2
+ --gold-dark: #9c6b14;
3
+ --black: #4f4d47;
4
+ --gold: #b78730;
5
+ --blue: #1e3461;
6
6
  }
7
7
 
8
- html, body {
8
+ html,
9
+ body {
9
10
  font-size: 15px;
10
11
  font-family: 'Noto Sans';
11
12
  line-height: 1.7;
@@ -35,7 +36,7 @@ header.bordered {
35
36
  border-bottom: 2px solid var(--gold);
36
37
  }
37
38
  header .container {
38
- padding-bottom: .5rem;
39
+ padding-bottom: 0.5rem;
39
40
  }
40
41
 
41
42
  section.main {
@@ -49,7 +50,7 @@ section.main h2 {
49
50
  margin-top: 0;
50
51
  }
51
52
  section.main p {
52
- opacity: .8;
53
+ opacity: 0.8;
53
54
  }
54
55
  .logo-container {
55
56
  margin-bottom: 2rem;
@@ -61,7 +62,7 @@ section.main p {
61
62
  padding-bottom: 0.4rem;
62
63
  border-radius: 3px;
63
64
  }
64
- .logo-container[dir=rtl] {
65
+ .logo-container[dir='rtl'] {
65
66
  margin-left: -2150px;
66
67
  }
67
68
  a {
@@ -69,8 +70,8 @@ a {
69
70
  }
70
71
  button {
71
72
  border: none;
72
- padding: .4rem .7rem;
73
- border-radius: .3rem;
73
+ padding: 0.4rem 0.7rem;
74
+ border-radius: 0.3rem;
74
75
  font-weight: 500;
75
76
  font-family: inherit;
76
77
  color: white;
@@ -94,8 +95,8 @@ button.btn-secondary {
94
95
 
95
96
  button i {
96
97
  display: inline-block !important;
97
- margin-right: .25em;
98
- --ggs: .8;
98
+ margin-right: 0.25em;
99
+ --ggs: 0.8;
99
100
  }
100
101
 
101
102
  select {
@@ -105,13 +106,13 @@ select {
105
106
  font-size: 1rem;
106
107
  font-weight: 400;
107
108
  background-color: white;
108
- background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
109
+ background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
109
110
  background-repeat: no-repeat;
110
111
  background-position: right 0.75rem center;
111
112
  background-size: 16px 12px;
112
113
  border: 1px solid #dee2e6;
113
114
  border-radius: 3px;
114
- transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
115
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
115
116
  -webkit-appearance: none;
116
117
  -moz-appearance: none;
117
118
  appearance: none;
@@ -123,12 +124,13 @@ select {
123
124
  align-items: center;
124
125
  }
125
126
 
126
- select, button {
127
- margin-right: .5em;
127
+ select,
128
+ button {
129
+ margin-right: 0.5em;
128
130
  }
129
131
 
130
132
  .alert {
131
- font-size: .9em;
133
+ font-size: 0.9em;
132
134
  background: #b787301c;
133
135
  padding: 0.7rem 1.2rem;
134
136
  margin-top: 0.25rem;
@@ -141,8 +143,8 @@ select, button {
141
143
  }
142
144
  .main-links a small {
143
145
  margin-top: 3px;
144
- font-size: .8em;
145
- opacity: .8;
146
+ font-size: 0.8em;
147
+ opacity: 0.8;
146
148
  margin-left: 0.25em;
147
149
  }
148
150
  .main-links p {
@@ -184,7 +186,7 @@ footer {
184
186
  text-align: center;
185
187
  padding: 2rem 0;
186
188
  margin-top: 2rem;
187
- font-size: .9rem,
189
+ font-size: 0.9rem;
188
190
  }
189
191
  footer a {
190
192
  color: inherit !important;
@@ -192,7 +194,7 @@ footer a {
192
194
  pre {
193
195
  overflow: auto;
194
196
  border-radius: 3px;
195
- font-size: .9rem;
197
+ font-size: 0.9rem;
196
198
  padding: 1rem;
197
199
  background-color: #f8f9fa;
198
- }
200
+ }
@@ -9,13 +9,13 @@
9
9
 
10
10
  border-bottom: 2px solid $secondary;
11
11
  @include media-breakpoint-up(md) {
12
- border-top: .65rem solid $primary;
12
+ border-top: 0.65rem solid $primary;
13
13
  }
14
14
 
15
15
  .vds-container {
16
16
  --header-y-padding: 1.25rem;
17
17
  @include media-breakpoint-down(md) {
18
- --header-y-padding: .5rem;
18
+ --header-y-padding: 0.5rem;
19
19
  }
20
20
  padding: var(--header-y-padding) var(--layout-padding);
21
21
  }
@@ -39,4 +39,4 @@
39
39
  color: $primary;
40
40
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 18'%3e%3cpath fill='none' stroke='%231e3461' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
41
41
  }
42
- }
42
+ }