isite 2022.5.7 → 2022.8.2
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/apps/client-side/app.js +252 -204
- package/apps/client-side/site_files/css/bootstrap5-addon.css +70 -0
- package/apps/client-side/site_files/css/bootstrap5.css +4 -4
- package/apps/client-side/site_files/css/font-cairo.css +2 -2
- package/apps/client-side/site_files/css/font-droid.css +2 -2
- package/apps/client-side/site_files/css/images.css +2 -6
- package/apps/client-side/site_files/css/layout.css +135 -92
- package/apps/client-side/site_files/css/theme.css +147 -147
- package/apps/client-side/site_files/css/theme_dark.css +1 -1
- package/apps/client-side/site_files/css/theme_paper.css +1 -1
- package/apps/client-side/site_files/html/sub/i-list2.content.html +2 -2
- package/apps/client-side/site_files/js/bootstrap-5-addon.js +18 -0
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +1789 -0
- package/apps/client-side/site_files/js/bootstrap5.js +3 -4
- package/apps/client-side/site_files/js/directive-core.js +181 -0
- package/apps/client-side/site_files/js/directive.js +6 -1
- package/apps/client-side/site_files/js/site.js +17 -27
- package/lib/fsm.js +1 -1
- package/lib/mongodb.js +649 -646
- package/lib/routing.js +1184 -1187
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: '
|
|
2
|
+
font-family: 'Arabic';
|
|
3
3
|
font-style: normal;
|
|
4
4
|
font-weight: normal;
|
|
5
5
|
src: url(/x-fonts/Cairo-Regular.ttf);
|
|
6
6
|
font-display: swap;
|
|
7
7
|
}
|
|
8
8
|
@font-face {
|
|
9
|
-
font-family: '
|
|
9
|
+
font-family: 'Arabic';
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-weight: bold;
|
|
12
12
|
src: url(/x-fonts/Cairo-Bold.ttf);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: '
|
|
2
|
+
font-family: 'Arabic';
|
|
3
3
|
font-style: normal;
|
|
4
4
|
font-weight: normal;
|
|
5
5
|
src: url(/x-fonts/DroidKufi-Regular.eot);
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@font-face {
|
|
12
|
-
font-family: '
|
|
12
|
+
font-family: 'Arabic';
|
|
13
13
|
font-style: normal;
|
|
14
14
|
font-weight: bold;
|
|
15
15
|
src: url(/x-fonts/DroidKufi-Bold.eot);
|
|
@@ -10,10 +10,6 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
13
|
i-image img{
|
|
18
14
|
width : 200px;
|
|
19
15
|
height: 200px;
|
|
@@ -38,8 +34,8 @@ i-image.logo img{
|
|
|
38
34
|
}
|
|
39
35
|
|
|
40
36
|
i-image.photo img{
|
|
41
|
-
width :
|
|
42
|
-
height:
|
|
37
|
+
width : 128px;
|
|
38
|
+
height: 128px;
|
|
43
39
|
}
|
|
44
40
|
|
|
45
41
|
i-image.hover img:hover{
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
@charset "utf-8";
|
|
2
2
|
|
|
3
3
|
* {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
margin: 0px;
|
|
6
|
+
line-height: var(--line-height);
|
|
7
|
+
min-height: 1px;
|
|
8
|
+
text-align: var(--text-align);
|
|
9
|
+
direction: var(--direction);
|
|
10
|
+
max-width: 100%;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
html {
|
|
14
|
-
|
|
14
|
+
background-color: var(--body-background);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
body {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
18
|
+
font-family: var(--font-family);
|
|
19
|
+
font-weight: var(--font-weight);
|
|
20
|
+
font-size: var(--font-size);
|
|
21
|
+
line-height: var(--line-height);
|
|
22
|
+
margin-top: var(--body-margin-top);
|
|
23
|
+
margin-bottom: var(--body-margin-bottom);
|
|
24
|
+
color: var(--color);
|
|
25
|
+
background: var(--body-background);
|
|
26
|
+
zoom: var(--zoom);
|
|
27
|
+
user-select: var(--user-select);
|
|
28
|
+
-webkit-user-select: var(--user-select);
|
|
29
|
+
-moz-user-select: var(--user-select);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
h1,
|
|
@@ -34,43 +34,43 @@ h2,
|
|
|
34
34
|
h3,
|
|
35
35
|
h4,
|
|
36
36
|
h5 {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
font-family: var(--font-family);
|
|
38
|
+
font-weight: var(--h-font-weight);
|
|
39
|
+
line-height: var(--line-height);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.loaded {
|
|
43
|
-
|
|
43
|
+
visibility: collapse;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.hidden {
|
|
47
|
-
|
|
47
|
+
display: none !important;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.hide {
|
|
51
|
-
|
|
51
|
+
visibility: collapse;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.container {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
display: block !important;
|
|
56
|
+
width: 100% !important;
|
|
57
|
+
margin: 0 auto !important;
|
|
58
|
+
padding: 10px !important;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
.row,
|
|
62
62
|
.row10 {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
display: inline-block;
|
|
64
|
+
width: 100% !important;
|
|
65
|
+
padding: 0px !important;
|
|
66
|
+
margin: 0px !important;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.row::after,
|
|
70
70
|
.row10::after {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
71
|
+
content: '' !important;
|
|
72
|
+
clear: both !important;
|
|
73
|
+
display: table !important;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.col1,
|
|
@@ -84,7 +84,12 @@ h5 {
|
|
|
84
84
|
.col9,
|
|
85
85
|
.col10,
|
|
86
86
|
.col11,
|
|
87
|
-
.col12
|
|
87
|
+
.col12 {
|
|
88
|
+
vertical-align: top;
|
|
89
|
+
padding: 0px;
|
|
90
|
+
float: var(--float);
|
|
91
|
+
display: inline;
|
|
92
|
+
}
|
|
88
93
|
.col-1,
|
|
89
94
|
.col-2,
|
|
90
95
|
.col-3,
|
|
@@ -97,142 +102,180 @@ h5 {
|
|
|
97
102
|
.col-10,
|
|
98
103
|
.col-11,
|
|
99
104
|
.col-12 {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
+
vertical-align: top;
|
|
106
|
+
padding: 0px;
|
|
107
|
+
margin: 0px;
|
|
108
|
+
float: var(--float);
|
|
109
|
+
display: inline;
|
|
105
110
|
}
|
|
106
111
|
|
|
107
112
|
.row .col1 {
|
|
108
|
-
|
|
113
|
+
width: calc(1 / 13 * 100%);
|
|
109
114
|
}
|
|
110
115
|
|
|
111
116
|
.row .col2 {
|
|
112
|
-
|
|
117
|
+
width: calc(2 / 13 * 100%);
|
|
113
118
|
}
|
|
114
119
|
|
|
115
120
|
.row .col3 {
|
|
116
|
-
|
|
121
|
+
width: calc(3 / 13 * 100%);
|
|
117
122
|
}
|
|
118
123
|
|
|
119
124
|
.row .col4 {
|
|
120
|
-
|
|
125
|
+
width: calc(4 / 13 * 100%);
|
|
121
126
|
}
|
|
122
127
|
|
|
123
128
|
.row .col5 {
|
|
124
|
-
|
|
129
|
+
width: calc(5 / 13 * 100%);
|
|
125
130
|
}
|
|
126
131
|
|
|
127
132
|
.row .col6 {
|
|
128
|
-
|
|
133
|
+
width: calc(6 / 13 * 100%);
|
|
129
134
|
}
|
|
130
135
|
|
|
131
136
|
.row .col7 {
|
|
132
|
-
|
|
137
|
+
width: calc(7 / 13 * 100%);
|
|
133
138
|
}
|
|
134
139
|
|
|
135
140
|
.row .col8 {
|
|
136
|
-
|
|
141
|
+
width: calc(8 / 13 * 100%);
|
|
137
142
|
}
|
|
138
143
|
|
|
139
144
|
.row .col9 {
|
|
140
|
-
|
|
145
|
+
width: calc(9 / 13 * 100%);
|
|
141
146
|
}
|
|
142
147
|
|
|
143
148
|
.row .col10 {
|
|
144
|
-
|
|
149
|
+
width: calc(10 / 13 * 100%);
|
|
145
150
|
}
|
|
146
151
|
|
|
147
152
|
.row .col11 {
|
|
148
|
-
|
|
153
|
+
width: calc(11 / 13 * 100%);
|
|
149
154
|
}
|
|
150
155
|
|
|
151
156
|
.row .col12 {
|
|
152
|
-
|
|
157
|
+
width: calc(12 / 13 * 100%);
|
|
153
158
|
}
|
|
154
159
|
|
|
155
160
|
.col-1 {
|
|
156
|
-
|
|
161
|
+
width: calc(0.9 / 13 * 100%);
|
|
157
162
|
}
|
|
158
163
|
|
|
159
164
|
.col-2 {
|
|
160
|
-
|
|
165
|
+
width: calc(1.9 / 13 * 100%);
|
|
161
166
|
}
|
|
162
167
|
|
|
163
168
|
.col-3 {
|
|
164
|
-
|
|
169
|
+
width: calc(2.9 / 13 * 100%);
|
|
165
170
|
}
|
|
166
171
|
|
|
167
172
|
.col-4 {
|
|
168
|
-
|
|
173
|
+
width: calc(3.9 / 13 * 100%);
|
|
169
174
|
}
|
|
170
175
|
|
|
171
176
|
.col-5 {
|
|
172
|
-
|
|
177
|
+
width: calc(4.9 / 13 * 100%);
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.col-6 {
|
|
176
|
-
|
|
181
|
+
width: calc(5.9 / 13 * 100%);
|
|
177
182
|
}
|
|
178
183
|
|
|
179
184
|
.col-7 {
|
|
180
|
-
|
|
185
|
+
width: calc(6.9 / 13 * 100%);
|
|
181
186
|
}
|
|
182
187
|
|
|
183
188
|
.col-8 {
|
|
184
|
-
|
|
189
|
+
width: calc(7.9 / 13 * 100%);
|
|
185
190
|
}
|
|
186
191
|
|
|
187
192
|
.col-9 {
|
|
188
|
-
|
|
193
|
+
width: calc(8.9 / 13 * 100%);
|
|
189
194
|
}
|
|
190
195
|
|
|
191
196
|
.col-10 {
|
|
192
|
-
|
|
197
|
+
width: calc(9.9 / 13 * 100%);
|
|
193
198
|
}
|
|
194
199
|
|
|
195
200
|
.col-11 {
|
|
196
|
-
|
|
201
|
+
width: calc(10.9 / 13 * 100%);
|
|
197
202
|
}
|
|
198
203
|
|
|
199
204
|
.col-12 {
|
|
200
|
-
|
|
205
|
+
width: calc(11.9 / 13 * 100%);
|
|
201
206
|
}
|
|
202
207
|
|
|
203
208
|
.rtl {
|
|
204
|
-
|
|
209
|
+
direction: rtl;
|
|
205
210
|
}
|
|
206
211
|
|
|
207
212
|
.ltr {
|
|
208
|
-
|
|
209
|
-
}
|
|
213
|
+
direction: ltr;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/* Small devices (landscape phones, 576px and down) */
|
|
217
|
+
@media (max-width: 575px) {
|
|
218
|
+
.col1,
|
|
219
|
+
.col2,
|
|
220
|
+
.col3,
|
|
221
|
+
.col4,
|
|
222
|
+
.col5,
|
|
223
|
+
.col6,
|
|
224
|
+
.col7,
|
|
225
|
+
.col8,
|
|
226
|
+
.col9 {
|
|
227
|
+
vertical-align: top;
|
|
228
|
+
width: calc(12 / 13 * 100%) !important;
|
|
229
|
+
}
|
|
210
230
|
|
|
211
|
-
|
|
231
|
+
.desktop {
|
|
232
|
+
display: none !important;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
212
235
|
|
|
213
|
-
/*
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
236
|
+
/* Medium devices (tablets, 768px and down) */
|
|
237
|
+
@media (max-width: 768px) {
|
|
238
|
+
.col1,
|
|
239
|
+
.col2,
|
|
240
|
+
.col3,
|
|
241
|
+
.col4,
|
|
242
|
+
.col5 {
|
|
243
|
+
vertical-align: top;
|
|
244
|
+
width: calc(12 / 13 * 100%) !important;
|
|
245
|
+
}
|
|
217
246
|
}
|
|
218
247
|
|
|
219
|
-
|
|
248
|
+
/* Large devices (desktops, 992px and down) */
|
|
249
|
+
@media (max-width: 992px) {
|
|
250
|
+
.col1,
|
|
251
|
+
.col2,
|
|
252
|
+
.col3,
|
|
253
|
+
.col4,
|
|
254
|
+
.col5 {
|
|
255
|
+
vertical-align: top;
|
|
256
|
+
width: calc(12 / 13 * 100%) !important;
|
|
257
|
+
}
|
|
258
|
+
.mobile {
|
|
259
|
+
display: none !important;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
220
262
|
|
|
221
|
-
/*
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
263
|
+
/* X-Large devices (large desktops, 1200px and down) */
|
|
264
|
+
@media (max-width: 1200px) {
|
|
265
|
+
.col1,
|
|
266
|
+
.col2,
|
|
267
|
+
.col3 {
|
|
268
|
+
vertical-align: top;
|
|
269
|
+
width: calc(12 / 13 * 100%) !important;
|
|
270
|
+
}
|
|
271
|
+
.mobile {
|
|
272
|
+
display: none !important;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
234
275
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
276
|
+
/* XX-Large devices (larger desktops, 1400px and down) */
|
|
277
|
+
@media (max-width: 1400px) {
|
|
278
|
+
.mobile {
|
|
279
|
+
display: none !important;
|
|
280
|
+
}
|
|
238
281
|
}
|