posiflow-telegram-connector 1.0.3
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/index.js +795 -0
- package/models/Setting.js +32 -0
- package/package.json +32 -0
- package/publish.sh +22 -0
- package/template/configure.html +349 -0
- package/template/css/configure.css +477 -0
- package/template/css/detail.css +186 -0
- package/template/css/error.css +67 -0
- package/template/css/style.css +93 -0
- package/template/detail.html +278 -0
- package/template/error.html +65 -0
- package/template/img/arrow-right.png +0 -0
- package/template/img/check.png +0 -0
- package/template/img/telegram-header.png +0 -0
- package/test/test_translate_telegram.js +464 -0
- package/tiledesk/KVBaseMongo.js +104 -0
- package/tiledesk/MessageHandler.js +31 -0
- package/tiledesk/TiledeskAppsClient.js +163 -0
- package/tiledesk/TiledeskChannel.js +175 -0
- package/tiledesk/TiledeskSubscriptionClient.js +138 -0
- package/tiledesk/TiledeskTelegram.js +304 -0
- package/tiledesk/TiledeskTelegramTranslator.js +300 -0
- package/winston.js +41 -0
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
2
|
+
|
|
3
|
+
body {
|
|
4
|
+
padding: 20px 0px;
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.header {
|
|
9
|
+
width: 100%;
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.header-content {
|
|
15
|
+
width: 65%;
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.logo-title {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.title {
|
|
29
|
+
margin-bottom: 0px;
|
|
30
|
+
font-size: 22px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.title-version {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
align-items: flex-start;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.status-box {
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: row;
|
|
42
|
+
align-items: center;
|
|
43
|
+
/*background-color: #1f3f77;*/
|
|
44
|
+
background-color: #f1f2f6;
|
|
45
|
+
/*color: white;*/
|
|
46
|
+
height: 40px;
|
|
47
|
+
padding: 20px;
|
|
48
|
+
border-radius: 24px;
|
|
49
|
+
border: solid 1px #e7e0e0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
.info-box {
|
|
54
|
+
width: 100%;
|
|
55
|
+
margin-top: 50px;
|
|
56
|
+
display: flex;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.info-list {
|
|
61
|
+
width: 65%;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
ul {
|
|
65
|
+
padding: 0px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.list-element {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: row;
|
|
71
|
+
justify-content: flex-start;
|
|
72
|
+
align-items: flex-start;
|
|
73
|
+
margin-bottom: 4px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.docs-box {
|
|
77
|
+
width: 100%;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.docs-section {
|
|
83
|
+
width: 65%;
|
|
84
|
+
display: flex;
|
|
85
|
+
flex-direction: column;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.divider {
|
|
89
|
+
margin-top: 12px;
|
|
90
|
+
margin-bottom: 12px;
|
|
91
|
+
margin-left: 0px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
.configure-box {
|
|
96
|
+
margin-top: 30px;
|
|
97
|
+
width: 100%;
|
|
98
|
+
background-color: #fff8f7;
|
|
99
|
+
display: flex;
|
|
100
|
+
justify-content: center;
|
|
101
|
+
padding-bottom: 30px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.configure {
|
|
105
|
+
width: 65%;
|
|
106
|
+
margin-top: 20px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.form-group {
|
|
110
|
+
margin-bottom: 15px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.advanced-box {
|
|
114
|
+
margin-top: 20px;
|
|
115
|
+
width: 100%;
|
|
116
|
+
display: flex;
|
|
117
|
+
justify-content: center;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.advanced {
|
|
121
|
+
width: 65%;
|
|
122
|
+
margin-bottom: 30px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.show_info_message {
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: row;
|
|
128
|
+
align-items: flex-start;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.input-label {
|
|
132
|
+
margin-bottom: 5px;
|
|
133
|
+
font-weight: 600;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
.btn:focus {
|
|
138
|
+
outline: none !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.icon-btn-div {
|
|
142
|
+
cursor: pointer;
|
|
143
|
+
padding: 2px 5px;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.icon-btn {
|
|
147
|
+
background-color: #eeeeee;
|
|
148
|
+
border: none;
|
|
149
|
+
color: grey;
|
|
150
|
+
padding: 0px 8px;
|
|
151
|
+
cursor: pointer;
|
|
152
|
+
margin-top: 12px;
|
|
153
|
+
margin-left: -66px;
|
|
154
|
+
font-size: 18px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.icon-btn:hover {
|
|
158
|
+
background-color: #eeeeee;
|
|
159
|
+
color: black; /* White text */
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.copy-form {
|
|
163
|
+
padding: 6px 36px 6px 14px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
input[readonly],
|
|
167
|
+
textarea[readonly] {
|
|
168
|
+
background-color: #eee !important;
|
|
169
|
+
opacity: 1;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.custom-input {
|
|
173
|
+
height: 45px;
|
|
174
|
+
box-shadow: 0px 0px 7px 0px #bdbdbd;
|
|
175
|
+
border: solid 2px transparent;
|
|
176
|
+
border-radius: 6px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.custom-input:hover {
|
|
180
|
+
border-color: #0ba2dc;
|
|
181
|
+
box-shadow: 0 0 transparent;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.custom-input:focus {
|
|
185
|
+
border: solid 2px;
|
|
186
|
+
border-color: #0ba2dc;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.custom-select{
|
|
190
|
+
width: 100%;
|
|
191
|
+
height: 45px;
|
|
192
|
+
box-shadow: 0px 0px 7px 0px #bdbdbd;
|
|
193
|
+
border: solid 2px transparent;
|
|
194
|
+
border-radius: 6px;
|
|
195
|
+
appearance: none; /* Rimuove lo stile di default */
|
|
196
|
+
-webkit-appearance: none; /* Safari */
|
|
197
|
+
-moz-appearance: none; /* Firefox */
|
|
198
|
+
background-color: #fff;
|
|
199
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14l-4.796-5.481C2.122 5.332 2.482 4.5 3.252 4.5h9.496c.77 0 1.13.832.801 1.159l-4.796 5.481a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
|
|
200
|
+
background-repeat: no-repeat;
|
|
201
|
+
background-position: right 0.75rem center; /* posizionamento freccia */
|
|
202
|
+
background-size: 12px;
|
|
203
|
+
padding-right: 2rem; /* spazio per la freccia */
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.custom-select:hover {
|
|
207
|
+
box-shadow: 0 0 transparent;
|
|
208
|
+
border-color: #0ba2dc;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.custom-select:focus {
|
|
212
|
+
border-color: #0ba2dc;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.custom-tooltip {
|
|
216
|
+
position: relative;
|
|
217
|
+
display: inline-block;
|
|
218
|
+
color: #0ba2dc;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* Tooltip text */
|
|
222
|
+
.custom-tooltip .custom-tooltiptext {
|
|
223
|
+
font-family: 'Poppins';
|
|
224
|
+
visibility: hidden;
|
|
225
|
+
width: 300px;
|
|
226
|
+
background-color: #8c8e8fbd;
|
|
227
|
+
font-size: 13px;
|
|
228
|
+
font-weight: 400;
|
|
229
|
+
color: #fff;
|
|
230
|
+
text-align: center;
|
|
231
|
+
padding: 8px 8px;
|
|
232
|
+
border-radius: 6px;
|
|
233
|
+
|
|
234
|
+
/* Position the tooltip text */
|
|
235
|
+
position: absolute;
|
|
236
|
+
z-index: 1;
|
|
237
|
+
margin-left: 8px;
|
|
238
|
+
margin-top: -15px;
|
|
239
|
+
|
|
240
|
+
/* Fade in tooltip */
|
|
241
|
+
opacity: 0;
|
|
242
|
+
transition: opacity 0.5s;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* Tooltip arrow
|
|
246
|
+
.custom-tooltip .custom-tooltiptext::after {
|
|
247
|
+
content: " ";
|
|
248
|
+
position: absolute;
|
|
249
|
+
top: 50%;
|
|
250
|
+
margin-top: -5px;
|
|
251
|
+
border-width: 5px;
|
|
252
|
+
border-style: solid;
|
|
253
|
+
border-color: transparent #8c8e8fbd transparent transparent;
|
|
254
|
+
}
|
|
255
|
+
*/
|
|
256
|
+
|
|
257
|
+
/* Show the tooltip text when you mouse over the tooltip container */
|
|
258
|
+
.custom-tooltip:hover .custom-tooltiptext {
|
|
259
|
+
visibility: visible;
|
|
260
|
+
opacity: 1;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.disconnect-box {
|
|
264
|
+
/*margin-top: 20px;*/
|
|
265
|
+
width: 100%;
|
|
266
|
+
display: flex;
|
|
267
|
+
justify-content: center;
|
|
268
|
+
background-color: #fff8f7;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.disconnect {
|
|
272
|
+
width: 65%;
|
|
273
|
+
margin-top: 30px;
|
|
274
|
+
margin-bottom: 30px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.disconnect-button {
|
|
278
|
+
width: 120px;
|
|
279
|
+
margin-top: 5px;
|
|
280
|
+
color: white;
|
|
281
|
+
border-color: #f0593d;
|
|
282
|
+
background-color: #f0593d;
|
|
283
|
+
letter-spacing: 0.5px;
|
|
284
|
+
font-size: 13px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.disconnect-button:hover {
|
|
288
|
+
width: 120px;
|
|
289
|
+
margin-top: 5px;
|
|
290
|
+
color: white;
|
|
291
|
+
border-color: #d53e21;
|
|
292
|
+
background-color: #d53e21;
|
|
293
|
+
letter-spacing: 0.5px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.disconnect-button:focus {
|
|
297
|
+
width: 120px;
|
|
298
|
+
margin-top: 5px;
|
|
299
|
+
color: white;
|
|
300
|
+
font-weight: 500;
|
|
301
|
+
border-color: #d53e21;
|
|
302
|
+
background-color: #d53e21;
|
|
303
|
+
letter-spacing: 0.5px;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
.version-box {
|
|
308
|
+
margin-top: 20px;
|
|
309
|
+
width: 100%;
|
|
310
|
+
display: flex;
|
|
311
|
+
justify-content: center;
|
|
312
|
+
background-color: #f9f9f9;
|
|
313
|
+
padding: 20px 0px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.version {
|
|
317
|
+
width: 65%;
|
|
318
|
+
display: flex;
|
|
319
|
+
flex-direction: row;
|
|
320
|
+
justify-content: flex-start;
|
|
321
|
+
align-items: baseline;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.version-title {
|
|
325
|
+
font-size: 18px;
|
|
326
|
+
margin-right: 20px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.modal-text {
|
|
330
|
+
margin-top: 20px;
|
|
331
|
+
margin-bottom: 20px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.logo-container {
|
|
335
|
+
margin: 0px 20px 0px 0px;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.green-circle {
|
|
339
|
+
color: green;
|
|
340
|
+
margin-right: 6px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.red-circle {
|
|
344
|
+
color: #f0593d;
|
|
345
|
+
margin-right: 6px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.success-modal {
|
|
349
|
+
display: flex;
|
|
350
|
+
z-index: 99;
|
|
351
|
+
width: 100%;
|
|
352
|
+
height: 100%;
|
|
353
|
+
position: fixed;
|
|
354
|
+
text-align: center;
|
|
355
|
+
justify-content: center;
|
|
356
|
+
padding-top: 100px;
|
|
357
|
+
left: 0;
|
|
358
|
+
top: 0;
|
|
359
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.success-modal .modal-content {
|
|
363
|
+
width: 400px;
|
|
364
|
+
height: 200px;
|
|
365
|
+
background-color: white;
|
|
366
|
+
display: flex;
|
|
367
|
+
flex-direction: column;
|
|
368
|
+
align-items: center;
|
|
369
|
+
justify-content: center;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.error-modal {
|
|
373
|
+
display: flex;
|
|
374
|
+
z-index: 99;
|
|
375
|
+
width: 100%;
|
|
376
|
+
height: 100%;
|
|
377
|
+
position: fixed;
|
|
378
|
+
text-align: center;
|
|
379
|
+
justify-content: center;
|
|
380
|
+
padding-top: 100px;
|
|
381
|
+
left: 0;
|
|
382
|
+
top: 0;
|
|
383
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.error-modal .modal-content {
|
|
387
|
+
width: 400px;
|
|
388
|
+
height: 200px;
|
|
389
|
+
background-color: white;
|
|
390
|
+
display: flex;
|
|
391
|
+
flex-direction: column;
|
|
392
|
+
align-items: center;
|
|
393
|
+
justify-content: center;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.cancel-btn {
|
|
397
|
+
width: 120px;
|
|
398
|
+
margin-top: 5px;
|
|
399
|
+
color: white;
|
|
400
|
+
border-color: #c0c0c0;
|
|
401
|
+
background-color: #c0c0c0;
|
|
402
|
+
letter-spacing: 0.5px;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.cancel-btn:hover {
|
|
406
|
+
width: 120px;
|
|
407
|
+
margin-top: 5px;
|
|
408
|
+
color: white;
|
|
409
|
+
border-color: #929292;
|
|
410
|
+
background-color: #929292;
|
|
411
|
+
letter-spacing: 0.5px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.cancel-btn:focus {
|
|
415
|
+
width: 120px;
|
|
416
|
+
margin-top: 5px;
|
|
417
|
+
color: white;
|
|
418
|
+
font-weight: 500;
|
|
419
|
+
border-color: #929292;
|
|
420
|
+
background-color: #929292;
|
|
421
|
+
letter-spacing: 0.5px;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.telegram-icon {
|
|
425
|
+
border-radius: 38px;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.option-description {
|
|
429
|
+
color: #8c8c8c;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
.toggle-pill-dark input[type="checkbox"] {
|
|
437
|
+
display: none;
|
|
438
|
+
}
|
|
439
|
+
.toggle-pill-dark input[type="checkbox"] + label {
|
|
440
|
+
display: block;
|
|
441
|
+
position: relative;
|
|
442
|
+
width: 3em;
|
|
443
|
+
height: 1.6em;
|
|
444
|
+
margin-bottom: 20px;
|
|
445
|
+
border-radius: 1em;
|
|
446
|
+
/*background: #0a82b0;*/
|
|
447
|
+
box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
|
|
448
|
+
cursor: pointer;
|
|
449
|
+
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
451
|
+
-ms-user-select: none;
|
|
452
|
+
-webkit-transition: background 0.1s ease-in-out;
|
|
453
|
+
transition: background 0.1s ease-in-out;
|
|
454
|
+
}
|
|
455
|
+
.toggle-pill-dark input[type="checkbox"] + label:before {
|
|
456
|
+
content: "";
|
|
457
|
+
display: block;
|
|
458
|
+
width: 1.2em;
|
|
459
|
+
height: 1.2em;
|
|
460
|
+
border-radius: 1em;
|
|
461
|
+
background: #e85353;
|
|
462
|
+
position: absolute;
|
|
463
|
+
left: 0.2em;
|
|
464
|
+
top: 0.2em;
|
|
465
|
+
-webkit-transition: all 0.2s ease-in-out;
|
|
466
|
+
transition: all 0.2s ease-in-out;
|
|
467
|
+
-webkit-transform: rotate(90deg);
|
|
468
|
+
transform: rotate(90deg);
|
|
469
|
+
}
|
|
470
|
+
.toggle-pill-dark input[type="checkbox"]:checked + label:before {
|
|
471
|
+
background: #47cf73;
|
|
472
|
+
box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
|
|
473
|
+
left: 1.6em;
|
|
474
|
+
-webkit-transform: rotate(295deg);
|
|
475
|
+
transform: rotate(295deg);
|
|
476
|
+
}
|
|
477
|
+
/* toggle-pill-dark end */
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
2
|
+
|
|
3
|
+
.content {
|
|
4
|
+
width: 52%;
|
|
5
|
+
min-width: 960px;
|
|
6
|
+
height: 1000px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.installation-info-box {
|
|
10
|
+
background-color: aliceblue;
|
|
11
|
+
height: 28px;
|
|
12
|
+
border-radius: 8px;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
align-items: center;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
.icon-and-title {
|
|
20
|
+
margin-top: 20px;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: row;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.install-button {
|
|
26
|
+
width: 120px;
|
|
27
|
+
color: white;
|
|
28
|
+
margin-top: 5px;
|
|
29
|
+
background-color: #04AA6D;
|
|
30
|
+
letter-spacing: 0.5px;
|
|
31
|
+
font-size: 13px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.install-button:hover {
|
|
35
|
+
width: 120px;
|
|
36
|
+
color: white;
|
|
37
|
+
margin-top: 5px;
|
|
38
|
+
background-color: #079d66;
|
|
39
|
+
border-color: #079d66;
|
|
40
|
+
letter-spacing: 0.5px;
|
|
41
|
+
font-size: 13px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.open-button {
|
|
45
|
+
width: 120px;
|
|
46
|
+
color: white;
|
|
47
|
+
background-color: #04AA6D;
|
|
48
|
+
letter-spacing: 0.5px;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.open-button:hover {
|
|
53
|
+
width: 120px;
|
|
54
|
+
color: white;
|
|
55
|
+
background-color: #079d66;
|
|
56
|
+
border-color: #079d66;
|
|
57
|
+
letter-spacing: 0.5px;
|
|
58
|
+
font-size: 13px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.open-button:focus {
|
|
62
|
+
width: 120px;
|
|
63
|
+
color: white;
|
|
64
|
+
font-weight: 500;
|
|
65
|
+
background-color: #079d66;
|
|
66
|
+
border-color: #079d66;
|
|
67
|
+
letter-spacing: 0.5px;
|
|
68
|
+
font-size: 13px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.uninstall-button {
|
|
72
|
+
width: 120px;
|
|
73
|
+
margin-top: 5px;
|
|
74
|
+
color: white;
|
|
75
|
+
border-color: #f0593d;
|
|
76
|
+
background-color: #f0593d;
|
|
77
|
+
letter-spacing: 0.5px;
|
|
78
|
+
font-size: 13px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.uninstall-button:hover {
|
|
82
|
+
width: 120px;
|
|
83
|
+
margin-top: 5px;
|
|
84
|
+
color: white;
|
|
85
|
+
border-color: #d53e21;
|
|
86
|
+
background-color: #d53e21;
|
|
87
|
+
letter-spacing: 0.5px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.uninstall-button:focus {
|
|
91
|
+
width: 120px;
|
|
92
|
+
margin-top: 5px;
|
|
93
|
+
color: white;
|
|
94
|
+
font-weight: 500;
|
|
95
|
+
border-color: #d53e21;
|
|
96
|
+
background-color: #d53e21;
|
|
97
|
+
letter-spacing: 0.5px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.cancel-btn {
|
|
101
|
+
width: 120px;
|
|
102
|
+
margin-top: 5px;
|
|
103
|
+
color: white;
|
|
104
|
+
border-color: #c0c0c0;
|
|
105
|
+
background-color: #c0c0c0;
|
|
106
|
+
letter-spacing: 0.5px;
|
|
107
|
+
margin-right: 30px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.cancel-btn:hover {
|
|
111
|
+
width: 120px;
|
|
112
|
+
margin-top: 5px;
|
|
113
|
+
color: white;
|
|
114
|
+
border-color: #929292;
|
|
115
|
+
background-color: #929292;
|
|
116
|
+
letter-spacing: 0.5px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.cancel-btn:focus {
|
|
120
|
+
width: 120px;
|
|
121
|
+
margin-top: 5px;
|
|
122
|
+
color: white;
|
|
123
|
+
font-weight: 500;
|
|
124
|
+
border-color: #929292;
|
|
125
|
+
background-color: #929292;
|
|
126
|
+
letter-spacing: 0.5px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
div.scrollmenu {
|
|
131
|
+
background-color: white;
|
|
132
|
+
overflow: auto;
|
|
133
|
+
white-space: nowrap;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
div.scrollmenu a {
|
|
137
|
+
display: inline-block;
|
|
138
|
+
color: white;
|
|
139
|
+
text-align: center;
|
|
140
|
+
padding: 14px;
|
|
141
|
+
text-decoration: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
div.scrollmenu a:hover {
|
|
145
|
+
background-color: #777;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.screenshot {
|
|
149
|
+
width: auto;
|
|
150
|
+
height: 420px;
|
|
151
|
+
border-radius: 10px;
|
|
152
|
+
border: 1px solid whitesmoke;
|
|
153
|
+
margin-right: 20px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.list-element {
|
|
157
|
+
display: flex;
|
|
158
|
+
flex-direction: row;
|
|
159
|
+
justify-content: flex-start;
|
|
160
|
+
align-items: center;
|
|
161
|
+
margin-bottom: 5px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.modal {
|
|
165
|
+
text-align: center;
|
|
166
|
+
display: none;
|
|
167
|
+
justify-content: center;
|
|
168
|
+
position: fixed;
|
|
169
|
+
z-index: 1;
|
|
170
|
+
padding-top: 100px;
|
|
171
|
+
left: 0;
|
|
172
|
+
top: 0;
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.modal-content {
|
|
179
|
+
width: 500px;
|
|
180
|
+
height: 300px;
|
|
181
|
+
background-color: white;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.btn:focus {
|
|
185
|
+
outline: none !important;
|
|
186
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
body {
|
|
5
|
+
padding: 20px 0px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.header {
|
|
9
|
+
width: 100%;
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.header-content {
|
|
15
|
+
width: 50%;
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.logo-title {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.title {
|
|
29
|
+
margin-bottom: 0px;
|
|
30
|
+
font-size: 22px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.title-version {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
align-items: flex-start;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.logo-container {
|
|
40
|
+
margin: 0px 20px 0px 0px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.logo-title {
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: row;
|
|
46
|
+
align-items: center;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.error {
|
|
50
|
+
width: 100%;
|
|
51
|
+
display: flex;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
margin-top: 60px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.error-box {
|
|
57
|
+
width: 50%;
|
|
58
|
+
background-color: #f79a9a;
|
|
59
|
+
min-height: 100px;
|
|
60
|
+
border-radius: 8px;
|
|
61
|
+
padding: 10px 10px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.error-title {
|
|
65
|
+
font-size: 18px;
|
|
66
|
+
font-weight: 500;
|
|
67
|
+
}
|