-
Notifications
You must be signed in to change notification settings - Fork 13
/
project.mobirise
4660 lines (4660 loc) · 290 KB
/
project.mobirise
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"settings": {
"currentPage": "index.html",
"theme": {
"name": "edgem5",
"title": "EdgeM5",
"styling": {
"primaryColor": "#E1965F",
"secondaryColor": "#AAA797",
"successColor": "#A38482",
"infoColor": "#002549",
"warningColor": "#FFC092",
"dangerColor": "#9C521B",
"mainFont": "Darker Grotesque",
"display1Font": "Darker Grotesque",
"display1Size": 7,
"display2Font": "Darker Grotesque",
"display2Size": 4.5,
"display5Font": "Darker Grotesque",
"display5Size": 3.25,
"display7Font": "Darker Grotesque",
"display7Size": 1.3,
"display4Font": "Darker Grotesque",
"display4Size": 1.7,
"isRoundedButtons": false,
"isGhostButtonBorder": false,
"underlinedLinks": false,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"titlePreset": "Technology solutions",
"nameSelectPreset": "technology-solutions",
"additionalSetColors": []
},
"path": "@PROJECT_PATH@",
"name": "CSAF Documentation",
"versionFirst": "5.2.0",
"siteFonts": [
{
"css": "'Darker Grotesque', sans-serif",
"name": "Darker Grotesque",
"url": "https://fonts.googleapis.com/css?family=Darker+Grotesque:300,400,500,600,700,800,900"
}
],
"imageResize": true,
"uniqCompNum": 38,
"versionPublish": "5.6.11",
"screenshot": "screenshot.png",
"publishType": "local",
"publishPath": "@PROJECT_PATH@"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Common Security Advisory Framework (CSAF) | Home",
"meta_descr": "The Common Security Advisory Framework (CSAF) is a language to exchange Security Advisories formulated in JSON.\n\nThe term Security Advisory describes any notification of security issues in products to or from product vendors, Product Security Incident Response Teams (PSIRTs), product resellers and distributors, and others. The focus of the term is on the security aspect impacting specific product-platform-version combinations. Developers of security scanning tools in particular are likely to find CSAF files most useful. CSAF supports the Vulnerability Exploitability eXchange (VEX) as a Profile and it is crucial in the software bill of materials (SBOM) ecosystem.",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"alias": false,
"_styles": {
"& when not (@sticky)": {
".navbar-dropdown": {
"position": "relative !important"
},
"& when (@transparent)": {
".navbar-dropdown": {
"position": "absolute !important"
}
}
},
"& when (@sticky)": {
"z-index": "1000",
"width": "100%",
"& when not (@transparent)": {
"position": "relative",
"min-height": "60px",
"@media (min-width: 992px)": {
"min-height": "105px"
}
},
"nav.navbar": {
"position": "fixed"
}
},
".container": {
"max-width": "1312px",
"display": "flex",
"margin": "auto",
"@media (min-width: 992px)": {
"flex-wrap": "nowrap"
}
},
".container-custom": {
"position": "relative",
"width": "100%",
"padding": "10px 0"
},
".dropdown-item:before": {
"font-family": "Moririse2 !important",
"content": "\"\\e966\"",
"display": "inline-block",
"width": "0",
"position": "absolute",
"left": "1rem",
"top": "0.5rem",
"margin-right": "0.5rem",
"line-height": "1",
"font-size": "inherit",
"vertical-align": "middle",
"text-align": "center",
"overflow": "hidden",
"transform": "scale(0, 1)",
"transition": "all 0.25s ease-in-out"
},
".dropdown-menu": {
"padding": "0",
"border-radius": "4px",
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)"
},
".dropdown-item": {
"border-bottom": "1px solid #e6e6e6",
"&:hover, &:focus": {
"background": "@primaryColor !important",
"color": "white !important"
},
"&:hover span": {
"color": "white"
},
"&:first-child": {
"border-top-left-radius": "4px",
"border-top-right-radius": "4px"
},
"&:last-child": {
"border-bottom": "none",
"border-bottom-left-radius": "4px",
"border-bottom-right-radius": "4px"
}
},
".nav-dropdown .link": {
"padding": "0.75em 1em !important"
},
".nav-dropdown .link.dropdown-toggle::after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem"
},
".nav-link": {
"position": "relative"
},
".iconfont-wrapper": {
"color": "@iconsColor !important",
"font-size": "1.5rem",
"padding-right": "0.5rem"
},
".navbar-caption": {},
".navbar-nav": {},
".dropdown-menu, .navbar.opened": {
"background": "@menuBgColor !important"
},
".nav-item:focus, .nav-link:focus": {
"outline": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"width": "auto",
"transition": "all 0.25s ease-in-out",
"&::after": {
"right": "0.5rem"
},
".mbr-iconfont": {
"margin-right": "0.5rem",
"vertical-align": "sub",
"&:before": {
"display": "inline-block",
"transform": "scale(1, 1)",
"transition": "all 0.25s ease-in-out"
}
}
},
".collapsed": {
".dropdown-menu .dropdown-item:before": {
"display": "none"
},
".dropdown .dropdown-menu .dropdown-item": {
"padding": "0.235em 1.5em 0.235em 1.5em !important",
"transition": "none",
"margin": "0 !important"
}
},
".navbar": {
"min-height": "60px",
"transition": "all 0.3s",
"border-bottom": "1px solid transparent",
"@media (min-width: 992px)": {
"min-height": "105px"
},
"&:not(.navbar-short)": {},
"& when not (@transparent)": {
"box-shadow": "0 1px 3px 0 rgba(0, 0, 0, 0.1)",
"background": "@menuBgColor"
},
"& when (@transparent)": {
"background": "rgba(red(@menuBgColor), green(@menuBgColor), blue(@menuBgColor), @opacity)"
},
"&.opened": {
"transition": "all 0.3s"
},
".dropdown-item": {
"padding": "0.5rem 1.8rem"
},
".navbar-logo img": {
"width": "auto"
},
".navbar-collapse": {
"justify-content": "flex-end",
"z-index": "1",
"@media (min-width: 992px)": {
"width": "100%",
"justify-content": "space-between"
}
},
".navbar-nav-container": {
"@media (min-width: 992px)": {
"width": "40%",
"display": "flex",
"flex-wrap": "wrap",
"justify-content": "flex-start",
"align-items": "center"
}
},
"&.collapsed": {
"justify-content": "center",
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
},
"@media (min-width: 992px)": {
"&:not(.navbar-short) .navbar-collapse when (@showLogo)": {
"max-height": "~\"calc(98.5vh - @{logoSize}rem)\""
}
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "41%"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem",
"text-align": "center"
},
".icons-menu": {
"padding-left": "0",
"padding-right": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"@media (max-width: 991px)": {
".nav-item .nav-link::before": {
"display": "none"
},
"&.opened": {
".dropdown-menu": {
"top": "0"
}
},
".dropdown-menu": {
".dropdown-submenu": {
"left": "0 !important"
},
".dropdown-item:after": {
"right": "auto"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]:after": {
"margin-left": "0.5rem",
"margin-top": "0.2rem",
"border-top": "0.35em solid",
"border-right": "0.35em solid transparent",
"border-left": "0.35em solid transparent",
"border-bottom": "0",
"top": "40%"
}
},
".navbar-logo": {
"img": {
"height": "3rem !important"
}
},
"ul.navbar-nav": {
"li": {
"margin": "auto"
}
},
".dropdown-menu .dropdown-item": {
"padding": "0.25rem 1.5rem !important",
"text-align": "center"
},
".navbar-brand": {
"flex-shrink": "initial",
"flex-basis": "auto",
"word-break": "break-word",
"padding-right": "2rem"
},
".navbar-toggler": {
"flex-basis": "auto"
},
".icons-menu": {
"padding-left": "0",
"padding-top": "0.5rem",
"padding-bottom": "0.5rem"
}
},
"&.navbar-short": {
"min-height": "60px",
"@media (min-width: 992px)": {
"min-height": "105px"
},
".navbar-logo": {
"img": {
"height": "2.5rem !important"
}
},
".navbar-brand": {
"min-height": "60px",
"padding": "0"
}
}
},
".navbar-brand": {
"min-height": "70px",
"flex-shrink": "0",
"align-items": "center",
"margin-right": "0",
"padding": "0",
"transition": "all 0.3s",
"word-break": "break-word",
"z-index": "1",
"@media (min-width: 992px)": {
"display": "flex",
"align-items": "center",
"justify-content": "center",
"position": "absolute",
"left": "40%",
"top": "50%",
"transform": "translateY(-50%)",
"width": "20%",
"min-height": "100%",
"z-index": "5"
},
".navbar-caption": {
"line-height": "inherit !important",
"display": "flex",
"flex-wrap": "nowrap",
"color": "#002549",
"span": {
"line-height": "inherit !important",
"font-weight": "inherit !important",
"color": "@primaryColor"
},
"&:hover": {
"color": "@primaryColor"
}
},
".navbar-logo a": {
"outline": "none"
}
},
".dropdown-item.active, .dropdown-item:active": {
"background-color": "transparent"
},
".navbar-expand-lg .navbar-nav .nav-link": {
"padding": "0"
},
".nav-dropdown .link.dropdown-toggle": {
"margin-right": "1.667em",
"&[aria-expanded=\"true\"]": {
"margin-right": "0",
"padding": "0.667em 1.667em"
}
},
".navbar.navbar-expand-lg .dropdown": {
".dropdown-menu": {
"background": "@menuBgColor",
".dropdown-submenu": {
"margin": "0",
"left": "100%"
}
}
},
".navbar .dropdown.open > .dropdown-menu": {
"display": "block"
},
"ul.navbar-nav": {
"flex-wrap": "wrap"
},
".navbar-buttons": {
"text-align": "center",
"@media (min-width: 992px)": {
"width": "40%",
"text-align": "right"
},
".btn": {
"min-width": "144px",
"font-weight": "400"
}
},
"button.navbar-toggler": {
"outline": "none",
"width": "31px",
"height": "20px",
"cursor": "pointer",
"transition": "all 0.2s",
"position": "relative",
"align-self": "center",
".hamburger span": {
"position": "absolute",
"right": "0",
"width": "30px",
"height": "2px",
"border-right": "5px",
"background-color": "@hamburgerColor",
"&:nth-child(1)": {
"top": "0",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all 0.15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all 0.2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
},
"&:nth-child(2)": {
"transform": "rotate(45deg)",
"transition": "all 0.25s"
},
"&:nth-child(3)": {
"transform": "rotate(-45deg)",
"transition": "all 0.25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all 0.2s"
}
},
".navbar-dropdown": {
"padding": "0 1rem",
"& when (@sticky)": {
"position": "fixed"
}
},
"a.nav-link": {
"display": "flex",
"align-items": "center",
"justify-content": "center",
"color": "#002549"
},
".icons-menu": {
"flex-wrap": "nowrap",
"display": "flex",
"justify-content": "center",
"padding-left": "1rem",
"padding-right": "1rem",
"padding-top": "0.3rem",
"text-align": "center"
},
"@media screen and (~'-ms-high-contrast: active'), (~'-ms-high-contrast: none')": {
".navbar": {
"height": "60px",
"@media (min-width: 992px)": {
"min-height": "105px"
},
"&.opened": {
"height": "auto"
}
},
".nav-item .nav-link:hover::before": {
"width": "175%",
"max-width": "calc(100% ~\"+\" 2rem)",
"left": "-1rem"
}
}
},
"_name": "menu1",
"_sourceTheme": "edgem5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"menu menu1\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\" checked>\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Logo\" name=\"showLogo\" checked>\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3\" max=\"8\" step=\"0.1\" value=\"5.3\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Brand Name\" name=\"showBrand\">\n <input type=\"checkbox\" title=\"Menu Items\" name=\"showItems\" checked>\n <input type=\"checkbox\" title=\"Icons\" name=\"showIcons\">\n <select title=\"Amount\" name=\"iconsAmount\" condition=\"showIcons\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\" selected>3</option>\n <option value=\"4\">4</option>\n </select>\n <input type=\"color\" title=\"Icons Color\" name=\"iconsColor\" value=\"#002549\" condition=\"showIcons\">\n <input type=\"checkbox\" title=\"Button\" name=\"showButtons\">\n <header>Styles</header>\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"range\" title=\"Opacity\" name=\"opacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"transparent\">\n <input type=\"color\" title=\"Color\" name=\"menuBgColor\" value=\"#fafafa\">\n <input type=\"color\" title=\"Hamburger\" name=\"hamburgerColor\" value=\"#000000\">\n </mbr-parameters>\n\n <nav class=\"navbar navbar-dropdown\" mbr-class=\"{'navbar-fixed-top':sticky,\n 'navbar-expand-lg':!collapsed,\n 'collapsed':collapsed}\">\n <div class=\"container-custom\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"index.html\">\n <img src=\"@PROJECT_PATH@/assets/images/screen-shot-2022-11-28-at-10.16.00-pm-279x97.png\" alt=\"CSAF\" mbr-style=\"{'height': logoSize + 'rem'}\">\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-5\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove,-iconFont\"><a class=\"navbar-caption text-primary\" data-app-selector=\".navbar-caption\" href=\"https://csaf.io\" data-app-placeholder=\"Type Text\"><strong>CSAF</strong></a></span>\n </div>\n <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" data-bs-target=\"#navbarSupportedContent\" aria-controls=\"navbarNavAltMarkup\" aria-expanded=\"false\" aria-label=\"Toggle navigation\" mbr-if=\"showItems || showIcons || showButtons\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\" mbr-if=\"showItems || showIcons || showButtons\">\n\n <div class=\"navbar-nav-container\">\n <ul mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-7\" mbr-if=\"showItems\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\"><a class=\"nav-link link text-primary\" href=\"https://docs.oasis-open.org/csaf/csaf/v2.0/errata01/os/schemas/\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" target=\"_blank\"><span class=\"fa fa-file-code-o mbr-iconfont mbr-iconfont-btn\"></span>\n Schemas</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-primary\" href=\"specification.html\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" target=\"_blank\"><span class=\"icon54-v1-document-file mbr-iconfont mbr-iconfont-btn\"></span>\n Specification</a></li>\n <li class=\"nav-item\"><a class=\"nav-link link text-primary\" href=\"https://github.com/oasis-tcs/csaf\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\" target=\"_blank\"><span class=\"mbri-github mbr-iconfont mbr-iconfont-btn\"></span>\n GitHub</a> </li>\n <li class=\"nav-item\"><a class=\"nav-link link text-primary\" href=\"faq.html\" data-app-selector=\".nav-link,.dropdown-item\" data-app-placeholder=\"Type Text\"><span class=\"mbrib-question mbr-iconfont mbr-iconfont-btn\"></span>FAQ</a> \n </li></ul>\n <div class=\"icons-menu\" mbr-if=\"showIcons\">\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-facebook socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 1\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-twitter socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 2\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-instagram socicon\"></span>\n </a>\n <a class=\"iconfont-wrapper\" href=\"https://mobiri.se\" target=\"_blank\" mbr-if=\"iconsAmount > 3\">\n <span mbr-icon class=\"p-2 mbr-iconfont socicon-linkedin socicon\"></span>\n </a>\n </div>\n </div>\n\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-7\" class=\"navbar-buttons mbr-section-btn\">\n <a class=\"btn btn-info-outline\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">\n Your application</a>\n <a class=\"btn btn-primary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">\n Book a call</a>\n </div>\n </div>\n </div>\n </nav>\n</section>",
"_cid": "sRAtISOGzm",
"_anchor": "menu1-a",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value"
},
".col-text": {
"@media (min-width: 768px)": {
"padding-bottom": "60px",
"padding-top": "60px"
},
"@media (min-width: 992px)": {
"padding-bottom": "120px",
"padding-top": "120px"
}
},
".container": {
"max-width": "1312px"
},
".label-text": {
"color": "#ffffff",
"position": "relative",
"z-index": "2"
},
".mbr-section-title": {
"color": "#002549"
},
".mbr-section-title, .mbr-section-btn": {
"text-align": "center",
"color": "#ffffff"
}
},
"_name": "header1",
"_sourceTheme": "edgem5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"header1\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n\n <input type=\"range\" inline name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"12\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Text\" name=\"showLabel\" checked>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@PROJECT_PATH@/assets/images/chip-g2419a0674-1280-1280x839.jpg\" selected>\n <input type=\"color\" title=\"Color\" value=\"#ffffff\">\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#000000\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.9\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n\n <div class=\"align-center\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-text col-lg-{{textWidth}}\">\n <p class=\"mbr-text label-text mbr-fonts-style mb-0\" mbr-theme-style=\"display-4\" mbr-if=\"showLabel\" data-app-selector=\".label-text\">\n <b>OASIS</b></p>\n <h1 class=\"mbr-section-title mbr-fonts-style mb-0\" data-app-selector=\".mbr-section-title, .mbr-section-btn\" mbr-theme-style=\"display-1\" mbr-if=\"showTitle\">Common Security Advisory Framework (CSAF)</h1>\n <div mbr-buttons mbr-theme-style=\"display-7\" class=\"mbr-section-btn mt-3\" mbr-if=\"showButtons\">\n <a class=\"btn btn-info\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">Learn more</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "sRAtUuncVC",
"_anchor": "header1-c",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-fallback-image.disabled": {
"display": "none"
},
".mbr-fallback-image": {
"display": "block",
"background-size": "cover",
"background-position": "center center",
"width": "100%",
"height": "100%",
"position": "absolute",
"top": "0",
"& when (@bg-type = 'video')": {
"background-image": "url(@fallBackImage)"
}
},
"& when (@fullWidth)": {
".container-fluid": {
"padding": "0 40px",
"@media (max-width: 992px)": {
"padding": "0 16px"
},
"@media (max-width: 768px)": {
"padding": "0 12px"
}
}
},
".container": {
"@media (max-width: 992px)": {
"padding": "0 16px"
},
"@media (max-width: 768px)": {
"padding": "0 12px"
}
},
".row": {
"justify-content": "center"
},
".title-wrapper": {
"margin-bottom": "40px",
"@media (max-width: 992px)": {
"margin-bottom": "24px"
},
".mbr-section-title": {
"margin-bottom": "24px"
},
".mbr-text": {
"margin-bottom": "0"
}
},
".card": {
"&:hover": {
".card-wrapper": {
"border": "3px solid @active",
"box-shadow": "4px 4px @active"
}
},
"@media (max-width: 992px)": {
"margin-bottom": "32px"
},
".card-wrapper": {
"padding": "32px",
"border": "3px solid @border",
"box-shadow": "4px 4px @border",
"background-color": "@card",
"border-radius": "32px",
"transition": "all 0.3s ease-in-out",
"@media (max-width: 992px)": {
"padding": "20px",
"border-radius": "24px"
},
".title-wrap": {
"margin-bottom": "16px",
".title": {
"display": "inline-flex",
"align-items": "center",
".mbr-iconfont": {
"font-size": "40px",
"margin-right": "12px",
"color": "@icon"
},
".mbr-card-title": {
"margin-bottom": "0"
}
}
},
".link-wrap": {
"display": "block",
"&:hover, &:focus": {
".mbr-link": {
"text-decoration": "underline"
}
},
".mbr-link": {
"display": "inline-flex",
"margin-bottom": "0"
}
}
}
},
".mbr-section-title": {
"color": "#222222",
"text-align": "center"
},
".mbr-text": {
"color": "#222222",
"text-align": "center"
},
".mbr-card-title": {
"color": "#222222"
},
".mbr-link, .link-wrap": {
"color": "#FF6928",
"text-align": "center"
},
".mbr-card-title, .title-wrap": {
"text-align": "center"
}
},
"_name": "features3",
"_sourceTheme": "programm5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"features3 programm5\" group=\"Features\" mbr-class=\"{'mbr-fullscreen': fullScreen, 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"5\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"5\" condition=\"fullScreen == false\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Text\" name=\"showText\">\n <header>Cards</header>\n <select title=\"Amount\" name=\"cards\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n </select>\n <input type=\"color\" title=\"Card BG\" value=\"#ffffff\" name=\"card\" selected>\n <input type=\"color\" title=\"Border Color\" value=\"#222222\" name=\"border\" selected>\n <input type=\"checkbox\" title=\"Card Icon\" name=\"showIcon\" checked>\n <input type=\"color\" title=\"Icon Color\" value=\"#FF6928\" name=\"icon\" condition=\"showIcon\" selected>\n <input type=\"checkbox\" title=\"Card Title\" name=\"showCardTitle\">\n <input type=\"checkbox\" title=\"Card Link\" name=\"showLink\" checked>\n <input type=\"color\" title=\"Active Color\" value=\"#FF6928\" name=\"active\" selected>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"@ADDONS_PATH@/programm5/components/_images/background1.jpg\" parallax>\n <input type=\"color\" title=\"Color\" value=\"#B4DCFA\" selected>\n </fieldset>\n <header condition=\"bg.type === 'video'\">Fallback Image</header>\n <input type=\"image\" title=\"Fallback Image\" value=\"@ADDONS_PATH@/programm5/components/_images/background1.jpg\" name=\"fallBackImage\" condition=\"bg.type === 'video'\">\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-fallback-image disabled\" mbr-if=\"bg.type == 'video'\"></div>\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row\">\n <div class=\"col-12\">\n <div class=\"title-wrapper\" mbr-if=\"showTitle || showText\">\n <h2 class=\"mbr-section-title mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".mbr-section-title\" mbr-if=\"showTitle\">\n Down the reasons for choosing <br> this particular company\n </h2>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\">\n There are several compelling reasons why clients choose <br> our software development company\n over others. Here are some <br> key factors that make us a preferred choice:\n </p>\n </div>\n </div>\n <div class=\"col-12 col-lg-3 col-md-6 card\">\n <div class=\"card-wrapper\">\n <div class=\"title-wrap\">\n <div class=\"title\">\n <span mbr-icon class=\"mbr-iconfont mbrib-github\" mbr-if=\"showIcon\"></span>\n <h3 class=\"mbr-card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-card-title, .title-wrap\" mbr-if=\"showCardTitle\">\n Expertise\n </h3>\n </div>\n </div>\n <a class=\"link-wrap\" href=\"#\" mbr-if=\"showLink\">\n <p class=\"mbr-link mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-link, .link-wrap\">\n <a href=\"https://github.com/oasis-tcs/csaf\" class=\"text-primary\" target=\"_blank\">Access Our GitHub Repo</a></p>\n </a>\n </div>\n </div>\n <div class=\"col-12 col-lg-3 col-md-6 card\" mbr-if=\"cards > 1\">\n <div class=\"card-wrapper\">\n <div class=\"title-wrap\">\n <div class=\"title\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-rocket mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h3 class=\"mbr-card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-card-title, .title-wrap\" mbr-if=\"showCardTitle\">\n Customized\n </h3>\n </div>\n </div>\n <a class=\"link-wrap\" href=\"#\" mbr-if=\"showLink\">\n <p class=\"mbr-link mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-link, .link-wrap\">\n <a href=\"tools.html\" class=\"text-primary\">Open Source Tools</a></p>\n </a>\n </div>\n </div>\n <div class=\"col-12 col-lg-3 col-md-6 card\" mbr-if=\"cards > 2\">\n <div class=\"card-wrapper\">\n <div class=\"title-wrap\">\n <div class=\"title\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-sites mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h3 class=\"mbr-card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-card-title, .title-wrap\" mbr-if=\"showCardTitle\">\n Quality\n </h3>\n </div>\n </div>\n <a class=\"link-wrap\" href=\"#\" mbr-if=\"showLink\">\n <p class=\"mbr-link mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-link, .link-wrap\">\n <a href=\"presentations.html\" class=\"text-primary\">CSAF Presentations</a></p>\n </a>\n </div>\n </div>\n <div class=\"col-12 col-lg-3 col-md-6 card\" mbr-if=\"cards > 3\">\n <div class=\"card-wrapper\">\n <div class=\"title-wrap\">\n <div class=\"title\">\n <span mbr-icon class=\"mbr-iconfont mobi-mbri-align-left mobi-mbri\" mbr-if=\"showIcon\"></span>\n <h3 class=\"mbr-card-title mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-card-title, .title-wrap\" mbr-if=\"showCardTitle\">\n Timely\n </h3>\n </div>\n </div>\n <a class=\"link-wrap\" href=\"#\" mbr-if=\"showLink\">\n <p class=\"mbr-link mbr-fonts-style\" mbr-theme-style=\"display-4\" data-app-selector=\".mbr-link, .link-wrap\"><a href=\"https://wid.cert-bund.de/.well-known/csaf-aggregator/aggregator.json\" class=\"text-primary\" target=\"_blank\">BSI CSAF Lister</a></p>\n </a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tODpsW5rwo",
"_anchor": "features3-11",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@reverseContent)": {
".row": {
"flex-direction": "row-reverse"
}
},
".row": {
"align-items": "center"
},
".image-wrapper": {
"display": "flex",
"@media (max-width: 768px)": {
"justify-content": "center",
"padding-bottom": "2rem",
"order": "1"
},
"@media (min-width: 768px)": {
"& when (@reverseContent)": {
"justify-content": "flex-start",
"padding-right": "2rem"
},
"& when not (@reverseContent)": {
"justify-content": "flex-end",
"padding-left": "2rem"
}
},
"img": {
"width": "auto",
"max-width": "100%"
}
},
".col-text": {
"@media (max-width: 768px)": {
"padding-top": "2rem",
"order": "2"
},
"@media (min-width: 768px)": {
"& when (@reverseContent)": {
"padding-left": "2rem"
},
"& when not (@reverseContent)": {
"padding-right": "2rem"
}
}
},
".text-wrapper": {
"display": "flex",
"flex-direction": "column",
"align-items": "flex-start"
},
".mbr-section-title": {
"margin-bottom": "1.3rem",
"color": "#002549"
},
".mbr-text": {
"color": "#002549",
"width": "100%"
},
".btn-container": {
"width": "100%",
"margin-top": "1rem"
},
".mbr-section-btn": {
"@media (max-width: 575px)": {
"display": "flex",
"flex-wrap": "wrap",
"& .btn": {
"width": "100%"
}
}
}
},
"_name": "features1",
"_sourceTheme": "edgem5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"features1\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"4\" condition=\"fullScreen == false\">\n <input type=\"range\" inline name=\"imageWidth\" title=\"Image\" min=\"4\" max=\"8\" step=\"1\" value=\"6\">\n <input type=\"checkbox\" title=\"Reverse\" name=\"reverseContent\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\" checked>\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n\n <div mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-md col-text\">\n <div class=\"text-wrapper\">\n <h1 class=\"mbr-section-title mbr-fonts-style\" data-app-selector=\".mbr-section-title, .mbr-section-btn\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">Why CSAF?</h1>\n <p class=\"mbr-text mbr-fonts-style mb-0\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Common Security Advisory Framework (CSAF) is a language to exchange Security Advisories. It plays a crucial role in the cybersecurity arena since it allows stakeholders to automate the creation and consumption of security vulnerability information and remediation. </p>\n <div class=\"btn-container\">\n <div mbr-buttons mbr-theme-style=\"display-7\" class=\"mbr-section-btn\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-info\" href=\"index.html#header3-i\" data-app-placeholder=\"Type Text\">Learn more</a></div>\n </div>\n </div>\n </div>\n <div class=\"col-12 col-md-{{imageWidth}} image-wrapper\">\n <img src=\"@PROJECT_PATH@/assets/images/mbr-960x640.jpg\" alt=\"CSAF\">\n </div>\n </div>\n </div>\n</section>",
"_cid": "sRAwRDTgp4",
"_anchor": "features1-f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)"
},
"& when (@bg-type = \"image\")": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = \"color\")": {
"background-color": "@bg-value",
"& when not (@showBgImg)": {
".section-about-header_background-glow": {
"display": "none"
}
},
"& when (@showBgImg)": {
".section-about-header_background-glow": {
"position": "absolute",
"left": "-40%",
"top": "auto",
"right": "auto",
"bottom": "-70%",
"width": "120vmax",
"height": "120vmax",
"border-radius": "50%",
"background-image": "radial-gradient(circle farthest-side at 50% 50%, @bgImgColor 30%, rgba(0, 37, 73, 0))"
}
}
},
"overflow": "hidden",
"position": "relative",
".col-text": {
"display": "grid",
"justify-items": "center",
"grid-auto-columns": "1fr",
"grid-column-gap": "0px",
"grid-row-gap": "2rem",
"-ms-grid-columns": "1fr",
"grid-template-columns": "1fr",
"-ms-grid-rows": "auto",
"grid-template-rows": "auto",
"text-align": "center"
},
".mbr-section-title": {
"color": "#ffffff"
},
".btn": {
"padding": "1.6rem 3.5rem",
"font-weight": "400"
}
},
"_name": "header3",
"_sourceTheme": "edgem5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"header3\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{\n 'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"10\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"10\" condition=\"fullScreen == false\">\n\n <input type=\"range\" inline name=\"textWidth\" title=\"Width\" min=\"4\" max=\"12\" value=\"12\" step=\"1\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Buttons\" name=\"showButtons\">\n <input type=\"checkbox\" title=\"BG Image\" name=\"showBgImg\" checked>\n <input type=\"color\" title=\"BG Image Color\" name=\"bgImgColor\" value=\"#004383\" condition=\"showBgImg\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Image\" value=\"../_images/background2.jpg\">\n <input type=\"color\" title=\"Color\" value=\"#232323\" selected>\n <input type=\"video\" title=\"Video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#002549\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" opacity=\"{{overlayOpacity}}\" bg-color=\"{{overlayColor}}\"></div>\n <div class=\"section-about-header_background-glow\"></div>\n <div class=\"align-center\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-text col-lg-{{textWidth}}\">\n <h1 class=\"mbr-section-title mbr-fonts-style mb-3\" data-app-selector=\".mbr-section-title, .mbr-section-btn\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">Automate security vulnerability assessment and remediation with CSAF and VEX.</h1>\n <div mbr-buttons mbr-theme-style=\"display-5\" class=\"mbr-section-btn mt-3\" mbr-if=\"showButtons\">\n <a class=\"btn btn-primary\" href=\"https://mobiri.se\" data-app-placeholder=\"Type Text\">Book a call</a>\n </div>\n\n </div>\n </div>\n </div>\n</section>",
"_cid": "sRAyqXuwka",
"_anchor": "header3-i",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 1rem)",
"padding-bottom": "(@paddingBottom * 1rem)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-section-head": {
"margin-bottom": "4rem"
},
".mbr-section-title": {
"color": "#002549"
},
".mbr-section-subtitle": {
"color": "#002549"
},
".mbr-media": {
"position": "relative",
"img": {
"width": "100%",
"object-fit": "cover"
}
},
".icon-wrap": {
"left": "50%",
"top": "50%",
"transform": "translate(-50%, -50%)",
"position": "absolute",
"a:hover": {
"background-image": "none !important"
}
},
".mbr-media span": {
"font-size": "4rem",
"transition": "all 0.2s"
},
".modalWindow": {
"position": "fixed",
"z-index": "5000",
"left": "0",
"top": "0",
"background-color": "rgba(61, 61, 61, 0.65)",
"width": "100%",
"height": "100%",
".modalWindow-container": {
"display": "table-cell",
"vertical-align": "middle"
},
".modalWindow-video": {
"height": "calc(80vw / 1.778)",
"width": "80vw",
"margin": "0 auto"
}
},
".close": {
"position": "fixed",
"opacity": "0.5",
"font-size": "22px",
"font-weight": "300",
"width": "60px",
"height": "60px",
"border-radius": "50%",
"color": "#fff",
"top": "2.5rem",
"right": "2.5rem",
"text-shadow": "none",
"z-index": "5",
"transition": "opacity 0.3s ease",
"border": "2px solid #fff",
"align-items": "center",
"justify-content": "center",
"display": "flex",
"&:hover": {
"opacity": "1",
"background": "#000",
"color": "#fff"
}
},
".mbr-fallback-image.disabled": {
"display": "none"
},
".mbr-fallback-image": {
"display": "block",
"background-size": "cover",
"background-position": "center center",
"width": "100%",
"height": "100%",
"position": "absolute",
"top": "0",
"& when (@bg-type = 'video')": {
"background-image": "url(@fallBackImage)"
}
}
},
"_name": "video1",
"_sourceTheme": "edgem5",
"_customHTML": "<section data-bs-version=\"5.1\" class=\"video1\" group=\"Images & Videos\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" plugins=\"PlayerVimeo\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n <mbr-parameters>\n <header>Size</header>\n <input type=\"checkbox\" name=\"fullWidth\" title=\"Full Width\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"10\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"10\" step=\"1\" value=\"4\">\n <input type=\"range\" name=\"textWidth\" title=\"Video\" min=\"4\" max=\"12\" step=\"1\" value=\"10\">\n <header>Show/Hide</header>\n <input type=\"checkbox\" title=\"Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Subtitle\" name=\"showSubtitle\">\n <header>Video</header>\n <input type=\"text\" title=\"Link\" name=\"modalVideo\" value=\"https://youtu.be/vQ_xY3lmZOc\">\n <header>Background</header>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input title=\"Image\" type=\"image\" value=\"../_images/background2.jpg\">\n <input title=\"Color\" type=\"color\" value=\"#ffffff\" selected>\n <input title=\"Video\" type=\"video\" value=\"https://vimeo.com/428046504\">\n </fieldset>\n <header condition=\"bg.type === 'video'\">Fallback Image</header>\n <input type=\"image\" title=\"Fallback Image\" value=\"../_images/background1.jpg\" name=\"fallBackImage\" condition=\"bg.type === 'video'\">\n\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.4\" condition=\"overlay && bg.type !== 'color'\">\n </mbr-parameters>\n <div class=\"mbr-fallback-image disabled\" mbr-if=\"bg.type == 'video'\"></div>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div class=\"align-center\" mbr-class=\"{'container': !fullWidth, 'container-fluid': fullWidth}\">\n <div class=\"mbr-section-head\">\n <h4 class=\"mbr-section-title mbr-fonts-style mb-0\" data-app-selector=\".mbr-section-title\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n View in Action\n </h4>\n <h5 class=\"mbr-section-subtitle mbr-fonts-style mb-0 mt-2\" data-app-selector=\".mbr-section-subtitle\" mbr-theme-style=\"display-4\" mbr-if=\"showSubtitle\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </h5>\n </div>\n <div class=\"row justify-content-center\">\n <div class=\"col-12 col-lg-{{textWidth}}\">\n <div class=\"box\">\n <div class=\"mbr-media show-modal align-center\" data-modal=\".modalWindow\">\n <a href=\"https://youtu.be/vQ_xY3lmZOc\"><img src=\"@PROJECT_PATH@/assets/images/screen-shot-2022-11-28-at-9.55.45-pm-1696x975.png\" alt=\"CSAF in 4 minutes by Omar Santos\"></a>\n <div class=\"icon-wrap\">\n <a class=\"text-info\"><span mbr-icon class=\"mbr-iconfont socicon-youtube socicon\"></span></a>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div>\n <div class=\"modalWindow\" style=\"display: none;\">\n <div class=\"modalWindow-container\">\n <div class=\"modalWindow-video-container\">\n <div class=\"modalWindow-video\">\n <iframe width=\"100%\" height=\"100%\" data-src=\"{{modalVideo}}\" frameborder=\"0\" allowfullscreen=\"1\"></iframe>\n </div>\n <a class=\"close\" role=\"button\" data-dismiss=\"modal\" data-bs-dismiss=\"modal\">\n <span aria-hidden=\"true\" class=\"mbr-iconfont mobi-mbri-close mobi-mbri closeModal\"></span>\n <span class=\"sr-only visually-hidden\">Close</span>\n </a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "toxBLl0A21",
"_anchor": "video1-f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"alias": false,
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"