@patternfly/patternfly 6.0.0-alpha.201 → 6.0.0-alpha.203
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/components/Masthead/masthead.css +194 -96
- package/components/Masthead/masthead.scss +83 -50
- package/components/Nav/nav.css +5 -4
- package/components/Nav/nav.scss +5 -4
- package/components/Page/page.css +32 -18
- package/components/Page/page.scss +33 -20
- package/components/_index.css +231 -118
- package/docs/components/Masthead/examples/masthead.md +506 -493
- package/docs/components/Nav/examples/Navigation.md +0 -1
- package/docs/components/Page/examples/Page.md +98 -89
- package/docs/components/Wizard/examples/Wizard.md +1 -1
- package/docs/demos/AboutModal/examples/AboutModal.md +87 -83
- package/docs/demos/Alert/examples/Alert.md +263 -251
- package/docs/demos/BackToTop/examples/BackToTop.md +87 -83
- package/docs/demos/Banner/examples/Banner.md +177 -173
- package/docs/demos/CardView/examples/CardView.md +90 -88
- package/docs/demos/Dashboard/examples/Dashboard.md +87 -83
- package/docs/demos/DataList/examples/DataList.md +352 -344
- package/docs/demos/DescriptionList/examples/DescriptionList.md +262 -252
- package/docs/demos/Drawer/examples/Drawer.md +437 -423
- package/docs/demos/JumpLinks/examples/JumpLinks.md +524 -500
- package/docs/demos/Masthead/examples/Masthead.md +772 -736
- package/docs/demos/Modal/examples/Modal.md +522 -498
- package/docs/demos/Nav/examples/Nav.md +511 -487
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +435 -425
- package/docs/demos/Page/examples/Page.md +1567 -915
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +611 -584
- package/docs/demos/Skeleton/examples/Skeleton.md +87 -83
- package/docs/demos/Table/examples/Table.md +1320 -1288
- package/docs/demos/Tabs/examples/Tabs.md +526 -504
- package/docs/demos/Toolbar/examples/Toolbar.md +174 -166
- package/docs/demos/Wizard/examples/Wizard.md +790 -767
- package/package.json +1 -1
- package/patternfly-no-globals.css +231 -118
- package/patternfly.css +231 -118
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -17,90 +17,94 @@ wrapperTag: div
|
|
|
17
17
|
</a>
|
|
18
18
|
</div>
|
|
19
19
|
<header class="pf-v6-c-masthead" id="masthead-basic-example-masthead">
|
|
20
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
21
|
-
<button
|
|
22
|
-
class="pf-v6-c-button pf-m-plain"
|
|
23
|
-
type="button"
|
|
24
|
-
aria-label="Global navigation"
|
|
25
|
-
>
|
|
26
|
-
<span class="pf-v6-c-button__icon">
|
|
27
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
28
|
-
</span>
|
|
29
|
-
</button>
|
|
30
|
-
</span>
|
|
31
20
|
<div class="pf-v6-c-masthead__main">
|
|
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
|
-
|
|
21
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
22
|
+
<button
|
|
23
|
+
class="pf-v6-c-button pf-m-plain"
|
|
24
|
+
type="button"
|
|
25
|
+
aria-label="Global navigation"
|
|
26
|
+
>
|
|
27
|
+
<span class="pf-v6-c-button__icon">
|
|
28
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
29
|
+
</span>
|
|
30
|
+
</button>
|
|
31
|
+
</span>
|
|
32
|
+
<div class="pf-v6-c-masthead__brand">
|
|
33
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
34
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
35
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
36
|
+
<defs>
|
|
37
|
+
<linearGradient
|
|
38
|
+
x1="68%"
|
|
39
|
+
y1="2.25860997e-13%"
|
|
40
|
+
x2="32%"
|
|
41
|
+
y2="100%"
|
|
42
|
+
id="linearGradient-masthead-basic-example-masthead"
|
|
43
|
+
>
|
|
44
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
45
|
+
<stop
|
|
46
|
+
stop-color="#73BCF7"
|
|
47
|
+
stop-opacity="0.502212631"
|
|
48
|
+
offset="100%"
|
|
49
|
+
/>
|
|
50
|
+
</linearGradient>
|
|
51
|
+
</defs>
|
|
52
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
53
|
+
<g
|
|
54
|
+
transform="translate(206.000000, 45.750000)"
|
|
55
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
56
|
+
fill-rule="nonzero"
|
|
57
|
+
>
|
|
58
|
+
<path
|
|
59
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
60
|
+
/>
|
|
61
|
+
<path
|
|
62
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
63
|
+
/>
|
|
64
|
+
<path
|
|
65
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
66
|
+
/>
|
|
67
|
+
<path
|
|
68
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
75
|
+
/>
|
|
76
|
+
<path
|
|
77
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
78
|
+
/>
|
|
79
|
+
<polygon
|
|
80
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
81
|
+
/>
|
|
82
|
+
<polygon
|
|
83
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
84
|
+
/>
|
|
85
|
+
<path
|
|
86
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
87
|
+
/>
|
|
88
|
+
</g>
|
|
89
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
90
|
+
<path
|
|
91
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
92
|
+
fill="#0066CC"
|
|
93
|
+
/>
|
|
94
|
+
<path
|
|
95
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
96
|
+
fill="url(#linearGradient-masthead-basic-example-masthead)"
|
|
97
|
+
/>
|
|
98
|
+
<path
|
|
99
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
100
|
+
fill="url(#linearGradient-masthead-basic-example-masthead)"
|
|
101
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
102
|
+
/>
|
|
103
|
+
</g>
|
|
100
104
|
</g>
|
|
101
|
-
</
|
|
102
|
-
</
|
|
103
|
-
</
|
|
105
|
+
</svg>
|
|
106
|
+
</a>
|
|
107
|
+
</div>
|
|
104
108
|
</div>
|
|
105
109
|
<div class="pf-v6-c-masthead__content">
|
|
106
110
|
<div
|
|
@@ -211,7 +215,7 @@ wrapperTag: div
|
|
|
211
215
|
</nav>
|
|
212
216
|
</div>
|
|
213
217
|
</section>
|
|
214
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
218
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
215
219
|
<div class="pf-v6-c-page__main-body">
|
|
216
220
|
<div class="pf-v6-c-content">
|
|
217
221
|
<h1>Main title</h1>
|
|
@@ -277,90 +281,94 @@ wrapperTag: div
|
|
|
277
281
|
class="pf-v6-c-masthead"
|
|
278
282
|
id="masthead-context-selecton-drilldown-example-masthead"
|
|
279
283
|
>
|
|
280
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
281
|
-
<button
|
|
282
|
-
class="pf-v6-c-button pf-m-plain"
|
|
283
|
-
type="button"
|
|
284
|
-
aria-label="Global navigation"
|
|
285
|
-
>
|
|
286
|
-
<span class="pf-v6-c-button__icon">
|
|
287
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
288
|
-
</span>
|
|
289
|
-
</button>
|
|
290
|
-
</span>
|
|
291
284
|
<div class="pf-v6-c-masthead__main">
|
|
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
|
-
|
|
285
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
286
|
+
<button
|
|
287
|
+
class="pf-v6-c-button pf-m-plain"
|
|
288
|
+
type="button"
|
|
289
|
+
aria-label="Global navigation"
|
|
290
|
+
>
|
|
291
|
+
<span class="pf-v6-c-button__icon">
|
|
292
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
293
|
+
</span>
|
|
294
|
+
</button>
|
|
295
|
+
</span>
|
|
296
|
+
<div class="pf-v6-c-masthead__brand">
|
|
297
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
298
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
299
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
300
|
+
<defs>
|
|
301
|
+
<linearGradient
|
|
302
|
+
x1="68%"
|
|
303
|
+
y1="2.25860997e-13%"
|
|
304
|
+
x2="32%"
|
|
305
|
+
y2="100%"
|
|
306
|
+
id="linearGradient-masthead-context-selecton-drilldown-example-masthead"
|
|
307
|
+
>
|
|
308
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
309
|
+
<stop
|
|
310
|
+
stop-color="#73BCF7"
|
|
311
|
+
stop-opacity="0.502212631"
|
|
312
|
+
offset="100%"
|
|
313
|
+
/>
|
|
314
|
+
</linearGradient>
|
|
315
|
+
</defs>
|
|
316
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
317
|
+
<g
|
|
318
|
+
transform="translate(206.000000, 45.750000)"
|
|
319
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
320
|
+
fill-rule="nonzero"
|
|
321
|
+
>
|
|
322
|
+
<path
|
|
323
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
324
|
+
/>
|
|
325
|
+
<path
|
|
326
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
327
|
+
/>
|
|
328
|
+
<path
|
|
329
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
330
|
+
/>
|
|
331
|
+
<path
|
|
332
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
333
|
+
/>
|
|
334
|
+
<path
|
|
335
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
336
|
+
/>
|
|
337
|
+
<path
|
|
338
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
339
|
+
/>
|
|
340
|
+
<path
|
|
341
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
342
|
+
/>
|
|
343
|
+
<polygon
|
|
344
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
345
|
+
/>
|
|
346
|
+
<polygon
|
|
347
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
348
|
+
/>
|
|
349
|
+
<path
|
|
350
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
351
|
+
/>
|
|
352
|
+
</g>
|
|
353
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
354
|
+
<path
|
|
355
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
356
|
+
fill="#0066CC"
|
|
357
|
+
/>
|
|
358
|
+
<path
|
|
359
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
360
|
+
fill="url(#linearGradient-masthead-context-selecton-drilldown-example-masthead)"
|
|
361
|
+
/>
|
|
362
|
+
<path
|
|
363
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
364
|
+
fill="url(#linearGradient-masthead-context-selecton-drilldown-example-masthead)"
|
|
365
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
366
|
+
/>
|
|
367
|
+
</g>
|
|
360
368
|
</g>
|
|
361
|
-
</
|
|
362
|
-
</
|
|
363
|
-
</
|
|
369
|
+
</svg>
|
|
370
|
+
</a>
|
|
371
|
+
</div>
|
|
364
372
|
</div>
|
|
365
373
|
<div class="pf-v6-c-masthead__content">
|
|
366
374
|
<div
|
|
@@ -500,7 +508,7 @@ wrapperTag: div
|
|
|
500
508
|
</nav>
|
|
501
509
|
</div>
|
|
502
510
|
</section>
|
|
503
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
511
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
504
512
|
<div class="pf-v6-c-page__main-body">
|
|
505
513
|
<div class="pf-v6-c-content">
|
|
506
514
|
<h1>Main title</h1>
|
|
@@ -566,90 +574,94 @@ wrapperTag: div
|
|
|
566
574
|
class="pf-v6-c-masthead"
|
|
567
575
|
id="masthead-toolbar-filters-example-masthead"
|
|
568
576
|
>
|
|
569
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
570
|
-
<button
|
|
571
|
-
class="pf-v6-c-button pf-m-plain"
|
|
572
|
-
type="button"
|
|
573
|
-
aria-label="Global navigation"
|
|
574
|
-
>
|
|
575
|
-
<span class="pf-v6-c-button__icon">
|
|
576
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
577
|
-
</span>
|
|
578
|
-
</button>
|
|
579
|
-
</span>
|
|
580
577
|
<div class="pf-v6-c-masthead__main">
|
|
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
|
-
|
|
578
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
579
|
+
<button
|
|
580
|
+
class="pf-v6-c-button pf-m-plain"
|
|
581
|
+
type="button"
|
|
582
|
+
aria-label="Global navigation"
|
|
583
|
+
>
|
|
584
|
+
<span class="pf-v6-c-button__icon">
|
|
585
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
586
|
+
</span>
|
|
587
|
+
</button>
|
|
588
|
+
</span>
|
|
589
|
+
<div class="pf-v6-c-masthead__brand">
|
|
590
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
591
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
592
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
593
|
+
<defs>
|
|
594
|
+
<linearGradient
|
|
595
|
+
x1="68%"
|
|
596
|
+
y1="2.25860997e-13%"
|
|
597
|
+
x2="32%"
|
|
598
|
+
y2="100%"
|
|
599
|
+
id="linearGradient-masthead-toolbar-filters-example-masthead"
|
|
600
|
+
>
|
|
601
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
602
|
+
<stop
|
|
603
|
+
stop-color="#73BCF7"
|
|
604
|
+
stop-opacity="0.502212631"
|
|
605
|
+
offset="100%"
|
|
606
|
+
/>
|
|
607
|
+
</linearGradient>
|
|
608
|
+
</defs>
|
|
609
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
610
|
+
<g
|
|
611
|
+
transform="translate(206.000000, 45.750000)"
|
|
612
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
613
|
+
fill-rule="nonzero"
|
|
614
|
+
>
|
|
615
|
+
<path
|
|
616
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
617
|
+
/>
|
|
618
|
+
<path
|
|
619
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
620
|
+
/>
|
|
621
|
+
<path
|
|
622
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
623
|
+
/>
|
|
624
|
+
<path
|
|
625
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
626
|
+
/>
|
|
627
|
+
<path
|
|
628
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
629
|
+
/>
|
|
630
|
+
<path
|
|
631
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
632
|
+
/>
|
|
633
|
+
<path
|
|
634
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
635
|
+
/>
|
|
636
|
+
<polygon
|
|
637
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
638
|
+
/>
|
|
639
|
+
<polygon
|
|
640
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
641
|
+
/>
|
|
642
|
+
<path
|
|
643
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
644
|
+
/>
|
|
645
|
+
</g>
|
|
646
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
647
|
+
<path
|
|
648
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
649
|
+
fill="#0066CC"
|
|
650
|
+
/>
|
|
651
|
+
<path
|
|
652
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
653
|
+
fill="url(#linearGradient-masthead-toolbar-filters-example-masthead)"
|
|
654
|
+
/>
|
|
655
|
+
<path
|
|
656
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
657
|
+
fill="url(#linearGradient-masthead-toolbar-filters-example-masthead)"
|
|
658
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
659
|
+
/>
|
|
660
|
+
</g>
|
|
649
661
|
</g>
|
|
650
|
-
</
|
|
651
|
-
</
|
|
652
|
-
</
|
|
662
|
+
</svg>
|
|
663
|
+
</a>
|
|
664
|
+
</div>
|
|
653
665
|
</div>
|
|
654
666
|
<div class="pf-v6-c-masthead__content">
|
|
655
667
|
<div
|
|
@@ -826,7 +838,7 @@ wrapperTag: div
|
|
|
826
838
|
</nav>
|
|
827
839
|
</div>
|
|
828
840
|
</section>
|
|
829
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
841
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
830
842
|
<div class="pf-v6-c-page__main-body">
|
|
831
843
|
<div class="pf-v6-c-content">
|
|
832
844
|
<h1>Main title</h1>
|
|
@@ -892,90 +904,94 @@ wrapperTag: div
|
|
|
892
904
|
class="pf-v6-c-masthead"
|
|
893
905
|
id="masthead-toggle-group-filters-example-masthead"
|
|
894
906
|
>
|
|
895
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
896
|
-
<button
|
|
897
|
-
class="pf-v6-c-button pf-m-plain"
|
|
898
|
-
type="button"
|
|
899
|
-
aria-label="Global navigation"
|
|
900
|
-
>
|
|
901
|
-
<span class="pf-v6-c-button__icon">
|
|
902
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
903
|
-
</span>
|
|
904
|
-
</button>
|
|
905
|
-
</span>
|
|
906
907
|
<div class="pf-v6-c-masthead__main">
|
|
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
|
-
|
|
908
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
909
|
+
<button
|
|
910
|
+
class="pf-v6-c-button pf-m-plain"
|
|
911
|
+
type="button"
|
|
912
|
+
aria-label="Global navigation"
|
|
913
|
+
>
|
|
914
|
+
<span class="pf-v6-c-button__icon">
|
|
915
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
916
|
+
</span>
|
|
917
|
+
</button>
|
|
918
|
+
</span>
|
|
919
|
+
<div class="pf-v6-c-masthead__brand">
|
|
920
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
921
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
922
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
923
|
+
<defs>
|
|
924
|
+
<linearGradient
|
|
925
|
+
x1="68%"
|
|
926
|
+
y1="2.25860997e-13%"
|
|
927
|
+
x2="32%"
|
|
928
|
+
y2="100%"
|
|
929
|
+
id="linearGradient-masthead-toggle-group-filters-example-masthead"
|
|
930
|
+
>
|
|
931
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
932
|
+
<stop
|
|
933
|
+
stop-color="#73BCF7"
|
|
934
|
+
stop-opacity="0.502212631"
|
|
935
|
+
offset="100%"
|
|
936
|
+
/>
|
|
937
|
+
</linearGradient>
|
|
938
|
+
</defs>
|
|
939
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
940
|
+
<g
|
|
941
|
+
transform="translate(206.000000, 45.750000)"
|
|
942
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
943
|
+
fill-rule="nonzero"
|
|
944
|
+
>
|
|
945
|
+
<path
|
|
946
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
947
|
+
/>
|
|
948
|
+
<path
|
|
949
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
950
|
+
/>
|
|
951
|
+
<path
|
|
952
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
953
|
+
/>
|
|
954
|
+
<path
|
|
955
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
956
|
+
/>
|
|
957
|
+
<path
|
|
958
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
959
|
+
/>
|
|
960
|
+
<path
|
|
961
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
962
|
+
/>
|
|
963
|
+
<path
|
|
964
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
965
|
+
/>
|
|
966
|
+
<polygon
|
|
967
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
968
|
+
/>
|
|
969
|
+
<polygon
|
|
970
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
971
|
+
/>
|
|
972
|
+
<path
|
|
973
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
974
|
+
/>
|
|
975
|
+
</g>
|
|
976
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
977
|
+
<path
|
|
978
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
979
|
+
fill="#0066CC"
|
|
980
|
+
/>
|
|
981
|
+
<path
|
|
982
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
983
|
+
fill="url(#linearGradient-masthead-toggle-group-filters-example-masthead)"
|
|
984
|
+
/>
|
|
985
|
+
<path
|
|
986
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
987
|
+
fill="url(#linearGradient-masthead-toggle-group-filters-example-masthead)"
|
|
988
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
989
|
+
/>
|
|
990
|
+
</g>
|
|
975
991
|
</g>
|
|
976
|
-
</
|
|
977
|
-
</
|
|
978
|
-
</
|
|
992
|
+
</svg>
|
|
993
|
+
</a>
|
|
994
|
+
</div>
|
|
979
995
|
</div>
|
|
980
996
|
<div class="pf-v6-c-masthead__content">
|
|
981
997
|
<div
|
|
@@ -1152,7 +1168,7 @@ wrapperTag: div
|
|
|
1152
1168
|
</nav>
|
|
1153
1169
|
</div>
|
|
1154
1170
|
</section>
|
|
1155
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1171
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1156
1172
|
<div class="pf-v6-c-page__main-body">
|
|
1157
1173
|
<div class="pf-v6-c-content">
|
|
1158
1174
|
<h1>Main title</h1>
|
|
@@ -1218,90 +1234,94 @@ wrapperTag: div
|
|
|
1218
1234
|
class="pf-v6-c-masthead"
|
|
1219
1235
|
id="masthead-expandable-search-example-masthead"
|
|
1220
1236
|
>
|
|
1221
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1222
|
-
<button
|
|
1223
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1224
|
-
type="button"
|
|
1225
|
-
aria-label="Global navigation"
|
|
1226
|
-
>
|
|
1227
|
-
<span class="pf-v6-c-button__icon">
|
|
1228
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1229
|
-
</span>
|
|
1230
|
-
</button>
|
|
1231
|
-
</span>
|
|
1232
1237
|
<div class="pf-v6-c-masthead__main">
|
|
1233
|
-
<
|
|
1234
|
-
<
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1238
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1239
|
+
<button
|
|
1240
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1241
|
+
type="button"
|
|
1242
|
+
aria-label="Global navigation"
|
|
1243
|
+
>
|
|
1244
|
+
<span class="pf-v6-c-button__icon">
|
|
1245
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1246
|
+
</span>
|
|
1247
|
+
</button>
|
|
1248
|
+
</span>
|
|
1249
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1250
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1251
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1252
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1253
|
+
<defs>
|
|
1254
|
+
<linearGradient
|
|
1255
|
+
x1="68%"
|
|
1256
|
+
y1="2.25860997e-13%"
|
|
1257
|
+
x2="32%"
|
|
1258
|
+
y2="100%"
|
|
1259
|
+
id="linearGradient-masthead-expandable-search-example-masthead"
|
|
1260
|
+
>
|
|
1261
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1262
|
+
<stop
|
|
1263
|
+
stop-color="#73BCF7"
|
|
1264
|
+
stop-opacity="0.502212631"
|
|
1265
|
+
offset="100%"
|
|
1266
|
+
/>
|
|
1267
|
+
</linearGradient>
|
|
1268
|
+
</defs>
|
|
1269
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1270
|
+
<g
|
|
1271
|
+
transform="translate(206.000000, 45.750000)"
|
|
1272
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1273
|
+
fill-rule="nonzero"
|
|
1274
|
+
>
|
|
1275
|
+
<path
|
|
1276
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
1277
|
+
/>
|
|
1278
|
+
<path
|
|
1279
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
1280
|
+
/>
|
|
1281
|
+
<path
|
|
1282
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
1283
|
+
/>
|
|
1284
|
+
<path
|
|
1285
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
1286
|
+
/>
|
|
1287
|
+
<path
|
|
1288
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
1289
|
+
/>
|
|
1290
|
+
<path
|
|
1291
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
1292
|
+
/>
|
|
1293
|
+
<path
|
|
1294
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
1295
|
+
/>
|
|
1296
|
+
<polygon
|
|
1297
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
1298
|
+
/>
|
|
1299
|
+
<polygon
|
|
1300
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1301
|
+
/>
|
|
1302
|
+
<path
|
|
1303
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
1304
|
+
/>
|
|
1305
|
+
</g>
|
|
1306
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1307
|
+
<path
|
|
1308
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
1309
|
+
fill="#0066CC"
|
|
1310
|
+
/>
|
|
1311
|
+
<path
|
|
1312
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1313
|
+
fill="url(#linearGradient-masthead-expandable-search-example-masthead)"
|
|
1314
|
+
/>
|
|
1315
|
+
<path
|
|
1316
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
1317
|
+
fill="url(#linearGradient-masthead-expandable-search-example-masthead)"
|
|
1318
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1319
|
+
/>
|
|
1320
|
+
</g>
|
|
1301
1321
|
</g>
|
|
1302
|
-
</
|
|
1303
|
-
</
|
|
1304
|
-
</
|
|
1322
|
+
</svg>
|
|
1323
|
+
</a>
|
|
1324
|
+
</div>
|
|
1305
1325
|
</div>
|
|
1306
1326
|
<div class="pf-v6-c-masthead__content">
|
|
1307
1327
|
<div
|
|
@@ -1415,7 +1435,7 @@ wrapperTag: div
|
|
|
1415
1435
|
</nav>
|
|
1416
1436
|
</div>
|
|
1417
1437
|
</section>
|
|
1418
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1438
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1419
1439
|
<div class="pf-v6-c-page__main-body">
|
|
1420
1440
|
<div class="pf-v6-c-content">
|
|
1421
1441
|
<h1>Main title</h1>
|
|
@@ -1481,90 +1501,94 @@ wrapperTag: div
|
|
|
1481
1501
|
class="pf-v6-c-masthead"
|
|
1482
1502
|
id="masthead-expandable-search-expanded-example-masthead"
|
|
1483
1503
|
>
|
|
1484
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1485
|
-
<button
|
|
1486
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1487
|
-
type="button"
|
|
1488
|
-
aria-label="Global navigation"
|
|
1489
|
-
>
|
|
1490
|
-
<span class="pf-v6-c-button__icon">
|
|
1491
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1492
|
-
</span>
|
|
1493
|
-
</button>
|
|
1494
|
-
</span>
|
|
1495
1504
|
<div class="pf-v6-c-masthead__main">
|
|
1496
|
-
<
|
|
1497
|
-
<
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1505
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1506
|
+
<button
|
|
1507
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1508
|
+
type="button"
|
|
1509
|
+
aria-label="Global navigation"
|
|
1510
|
+
>
|
|
1511
|
+
<span class="pf-v6-c-button__icon">
|
|
1512
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1513
|
+
</span>
|
|
1514
|
+
</button>
|
|
1515
|
+
</span>
|
|
1516
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1517
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1518
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1519
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1520
|
+
<defs>
|
|
1521
|
+
<linearGradient
|
|
1522
|
+
x1="68%"
|
|
1523
|
+
y1="2.25860997e-13%"
|
|
1524
|
+
x2="32%"
|
|
1525
|
+
y2="100%"
|
|
1526
|
+
id="linearGradient-masthead-expandable-search-expanded-example-masthead"
|
|
1527
|
+
>
|
|
1528
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1529
|
+
<stop
|
|
1530
|
+
stop-color="#73BCF7"
|
|
1531
|
+
stop-opacity="0.502212631"
|
|
1532
|
+
offset="100%"
|
|
1533
|
+
/>
|
|
1534
|
+
</linearGradient>
|
|
1535
|
+
</defs>
|
|
1536
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1537
|
+
<g
|
|
1538
|
+
transform="translate(206.000000, 45.750000)"
|
|
1539
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1540
|
+
fill-rule="nonzero"
|
|
1541
|
+
>
|
|
1542
|
+
<path
|
|
1543
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
1544
|
+
/>
|
|
1545
|
+
<path
|
|
1546
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
1547
|
+
/>
|
|
1548
|
+
<path
|
|
1549
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
1550
|
+
/>
|
|
1551
|
+
<path
|
|
1552
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
1553
|
+
/>
|
|
1554
|
+
<path
|
|
1555
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
1556
|
+
/>
|
|
1557
|
+
<path
|
|
1558
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
1559
|
+
/>
|
|
1560
|
+
<path
|
|
1561
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
1562
|
+
/>
|
|
1563
|
+
<polygon
|
|
1564
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
1565
|
+
/>
|
|
1566
|
+
<polygon
|
|
1567
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1568
|
+
/>
|
|
1569
|
+
<path
|
|
1570
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
1571
|
+
/>
|
|
1572
|
+
</g>
|
|
1573
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1574
|
+
<path
|
|
1575
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
1576
|
+
fill="#0066CC"
|
|
1577
|
+
/>
|
|
1578
|
+
<path
|
|
1579
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1580
|
+
fill="url(#linearGradient-masthead-expandable-search-expanded-example-masthead)"
|
|
1581
|
+
/>
|
|
1582
|
+
<path
|
|
1583
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
1584
|
+
fill="url(#linearGradient-masthead-expandable-search-expanded-example-masthead)"
|
|
1585
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1586
|
+
/>
|
|
1587
|
+
</g>
|
|
1564
1588
|
</g>
|
|
1565
|
-
</
|
|
1566
|
-
</
|
|
1567
|
-
</
|
|
1589
|
+
</svg>
|
|
1590
|
+
</a>
|
|
1591
|
+
</div>
|
|
1568
1592
|
</div>
|
|
1569
1593
|
<div class="pf-v6-c-masthead__content">
|
|
1570
1594
|
<div
|
|
@@ -1696,7 +1720,7 @@ wrapperTag: div
|
|
|
1696
1720
|
</nav>
|
|
1697
1721
|
</div>
|
|
1698
1722
|
</section>
|
|
1699
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1723
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1700
1724
|
<div class="pf-v6-c-page__main-body">
|
|
1701
1725
|
<div class="pf-v6-c-content">
|
|
1702
1726
|
<h1>Main title</h1>
|
|
@@ -1762,90 +1786,94 @@ wrapperTag: div
|
|
|
1762
1786
|
class="pf-v6-c-masthead"
|
|
1763
1787
|
id="masthead-advanced-with-menu-example-masthead"
|
|
1764
1788
|
>
|
|
1765
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1766
|
-
<button
|
|
1767
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1768
|
-
type="button"
|
|
1769
|
-
aria-label="Global navigation"
|
|
1770
|
-
>
|
|
1771
|
-
<span class="pf-v6-c-button__icon">
|
|
1772
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1773
|
-
</span>
|
|
1774
|
-
</button>
|
|
1775
|
-
</span>
|
|
1776
1789
|
<div class="pf-v6-c-masthead__main">
|
|
1777
|
-
<
|
|
1778
|
-
<
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1790
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1791
|
+
<button
|
|
1792
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1793
|
+
type="button"
|
|
1794
|
+
aria-label="Global navigation"
|
|
1795
|
+
>
|
|
1796
|
+
<span class="pf-v6-c-button__icon">
|
|
1797
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1798
|
+
</span>
|
|
1799
|
+
</button>
|
|
1800
|
+
</span>
|
|
1801
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1802
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1803
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1804
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1805
|
+
<defs>
|
|
1806
|
+
<linearGradient
|
|
1807
|
+
x1="68%"
|
|
1808
|
+
y1="2.25860997e-13%"
|
|
1809
|
+
x2="32%"
|
|
1810
|
+
y2="100%"
|
|
1811
|
+
id="linearGradient-masthead-advanced-with-menu-example-masthead"
|
|
1812
|
+
>
|
|
1813
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1814
|
+
<stop
|
|
1815
|
+
stop-color="#73BCF7"
|
|
1816
|
+
stop-opacity="0.502212631"
|
|
1817
|
+
offset="100%"
|
|
1818
|
+
/>
|
|
1819
|
+
</linearGradient>
|
|
1820
|
+
</defs>
|
|
1821
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1822
|
+
<g
|
|
1823
|
+
transform="translate(206.000000, 45.750000)"
|
|
1824
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1825
|
+
fill-rule="nonzero"
|
|
1826
|
+
>
|
|
1827
|
+
<path
|
|
1828
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
1829
|
+
/>
|
|
1830
|
+
<path
|
|
1831
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
1832
|
+
/>
|
|
1833
|
+
<path
|
|
1834
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
1835
|
+
/>
|
|
1836
|
+
<path
|
|
1837
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
1838
|
+
/>
|
|
1839
|
+
<path
|
|
1840
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
1841
|
+
/>
|
|
1842
|
+
<path
|
|
1843
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
1844
|
+
/>
|
|
1845
|
+
<path
|
|
1846
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
1847
|
+
/>
|
|
1848
|
+
<polygon
|
|
1849
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
1850
|
+
/>
|
|
1851
|
+
<polygon
|
|
1852
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1853
|
+
/>
|
|
1854
|
+
<path
|
|
1855
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
1856
|
+
/>
|
|
1857
|
+
</g>
|
|
1858
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1859
|
+
<path
|
|
1860
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
1861
|
+
fill="#0066CC"
|
|
1862
|
+
/>
|
|
1863
|
+
<path
|
|
1864
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1865
|
+
fill="url(#linearGradient-masthead-advanced-with-menu-example-masthead)"
|
|
1866
|
+
/>
|
|
1867
|
+
<path
|
|
1868
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
1869
|
+
fill="url(#linearGradient-masthead-advanced-with-menu-example-masthead)"
|
|
1870
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1871
|
+
/>
|
|
1872
|
+
</g>
|
|
1845
1873
|
</g>
|
|
1846
|
-
</
|
|
1847
|
-
</
|
|
1848
|
-
</
|
|
1874
|
+
</svg>
|
|
1875
|
+
</a>
|
|
1876
|
+
</div>
|
|
1849
1877
|
</div>
|
|
1850
1878
|
<div class="pf-v6-c-masthead__content">
|
|
1851
1879
|
<div
|
|
@@ -1999,7 +2027,7 @@ wrapperTag: div
|
|
|
1999
2027
|
</nav>
|
|
2000
2028
|
</div>
|
|
2001
2029
|
</section>
|
|
2002
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2030
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2003
2031
|
<div class="pf-v6-c-page__main-body">
|
|
2004
2032
|
<div class="pf-v6-c-content">
|
|
2005
2033
|
<h1>Main title</h1>
|
|
@@ -2063,78 +2091,82 @@ wrapperTag: div
|
|
|
2063
2091
|
</div>
|
|
2064
2092
|
<header class="pf-v6-c-masthead" id="masthead-horizontal-nav-masthead">
|
|
2065
2093
|
<div class="pf-v6-c-masthead__main">
|
|
2066
|
-
<
|
|
2067
|
-
<
|
|
2068
|
-
<
|
|
2069
|
-
|
|
2070
|
-
<
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
stop
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
<g
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2094
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2095
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2096
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2097
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2098
|
+
<defs>
|
|
2099
|
+
<linearGradient
|
|
2100
|
+
x1="68%"
|
|
2101
|
+
y1="2.25860997e-13%"
|
|
2102
|
+
x2="32%"
|
|
2103
|
+
y2="100%"
|
|
2104
|
+
id="linearGradient-masthead-horizontal-nav-masthead"
|
|
2105
|
+
>
|
|
2106
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2107
|
+
<stop
|
|
2108
|
+
stop-color="#73BCF7"
|
|
2109
|
+
stop-opacity="0.502212631"
|
|
2110
|
+
offset="100%"
|
|
2111
|
+
/>
|
|
2112
|
+
</linearGradient>
|
|
2113
|
+
</defs>
|
|
2114
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2115
|
+
<g
|
|
2116
|
+
transform="translate(206.000000, 45.750000)"
|
|
2117
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2118
|
+
fill-rule="nonzero"
|
|
2119
|
+
>
|
|
2120
|
+
<path
|
|
2121
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
2122
|
+
/>
|
|
2123
|
+
<path
|
|
2124
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
2125
|
+
/>
|
|
2126
|
+
<path
|
|
2127
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
2128
|
+
/>
|
|
2129
|
+
<path
|
|
2130
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
2131
|
+
/>
|
|
2132
|
+
<path
|
|
2133
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
2134
|
+
/>
|
|
2135
|
+
<path
|
|
2136
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
2137
|
+
/>
|
|
2138
|
+
<path
|
|
2139
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
2140
|
+
/>
|
|
2141
|
+
<polygon
|
|
2142
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
2143
|
+
/>
|
|
2144
|
+
<polygon
|
|
2145
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2146
|
+
/>
|
|
2147
|
+
<path
|
|
2148
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
2149
|
+
/>
|
|
2150
|
+
</g>
|
|
2151
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2152
|
+
<path
|
|
2153
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
2154
|
+
fill="#0066CC"
|
|
2155
|
+
/>
|
|
2156
|
+
<path
|
|
2157
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2158
|
+
fill="url(#linearGradient-masthead-horizontal-nav-masthead)"
|
|
2159
|
+
/>
|
|
2160
|
+
<path
|
|
2161
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
2162
|
+
fill="url(#linearGradient-masthead-horizontal-nav-masthead)"
|
|
2163
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2164
|
+
/>
|
|
2165
|
+
</g>
|
|
2134
2166
|
</g>
|
|
2135
|
-
</
|
|
2136
|
-
</
|
|
2137
|
-
</
|
|
2167
|
+
</svg>
|
|
2168
|
+
</a>
|
|
2169
|
+
</div>
|
|
2138
2170
|
</div>
|
|
2139
2171
|
<div class="pf-v6-c-masthead__content">
|
|
2140
2172
|
<div
|
|
@@ -2312,7 +2344,7 @@ wrapperTag: div
|
|
|
2312
2344
|
</nav>
|
|
2313
2345
|
</div>
|
|
2314
2346
|
</section>
|
|
2315
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2347
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2316
2348
|
<div class="pf-v6-c-page__main-body">
|
|
2317
2349
|
<div class="pf-v6-c-content">
|
|
2318
2350
|
<h1>Main title</h1>
|
|
@@ -2383,90 +2415,94 @@ wrapperTag: div
|
|
|
2383
2415
|
class="pf-v6-c-masthead"
|
|
2384
2416
|
id="masthead-toggle-group-filters-expanded-mobile-example-masthead"
|
|
2385
2417
|
>
|
|
2386
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
2387
|
-
<button
|
|
2388
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2389
|
-
type="button"
|
|
2390
|
-
aria-label="Global navigation"
|
|
2391
|
-
>
|
|
2392
|
-
<span class="pf-v6-c-button__icon">
|
|
2393
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2394
|
-
</span>
|
|
2395
|
-
</button>
|
|
2396
|
-
</span>
|
|
2397
2418
|
<div class="pf-v6-c-masthead__main">
|
|
2398
|
-
<
|
|
2399
|
-
<
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2419
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
2420
|
+
<button
|
|
2421
|
+
class="pf-v6-c-button pf-m-plain"
|
|
2422
|
+
type="button"
|
|
2423
|
+
aria-label="Global navigation"
|
|
2424
|
+
>
|
|
2425
|
+
<span class="pf-v6-c-button__icon">
|
|
2426
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2427
|
+
</span>
|
|
2428
|
+
</button>
|
|
2429
|
+
</span>
|
|
2430
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2431
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2432
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2433
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2434
|
+
<defs>
|
|
2435
|
+
<linearGradient
|
|
2436
|
+
x1="68%"
|
|
2437
|
+
y1="2.25860997e-13%"
|
|
2438
|
+
x2="32%"
|
|
2439
|
+
y2="100%"
|
|
2440
|
+
id="linearGradient-masthead-toggle-group-filters-expanded-mobile-example-masthead"
|
|
2441
|
+
>
|
|
2442
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2443
|
+
<stop
|
|
2444
|
+
stop-color="#73BCF7"
|
|
2445
|
+
stop-opacity="0.502212631"
|
|
2446
|
+
offset="100%"
|
|
2447
|
+
/>
|
|
2448
|
+
</linearGradient>
|
|
2449
|
+
</defs>
|
|
2450
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2451
|
+
<g
|
|
2452
|
+
transform="translate(206.000000, 45.750000)"
|
|
2453
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2454
|
+
fill-rule="nonzero"
|
|
2455
|
+
>
|
|
2456
|
+
<path
|
|
2457
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
2458
|
+
/>
|
|
2459
|
+
<path
|
|
2460
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
2461
|
+
/>
|
|
2462
|
+
<path
|
|
2463
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
2464
|
+
/>
|
|
2465
|
+
<path
|
|
2466
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
2467
|
+
/>
|
|
2468
|
+
<path
|
|
2469
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
2470
|
+
/>
|
|
2471
|
+
<path
|
|
2472
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
2473
|
+
/>
|
|
2474
|
+
<path
|
|
2475
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
2476
|
+
/>
|
|
2477
|
+
<polygon
|
|
2478
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
2479
|
+
/>
|
|
2480
|
+
<polygon
|
|
2481
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2482
|
+
/>
|
|
2483
|
+
<path
|
|
2484
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
2485
|
+
/>
|
|
2486
|
+
</g>
|
|
2487
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2488
|
+
<path
|
|
2489
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
2490
|
+
fill="#0066CC"
|
|
2491
|
+
/>
|
|
2492
|
+
<path
|
|
2493
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2494
|
+
fill="url(#linearGradient-masthead-toggle-group-filters-expanded-mobile-example-masthead)"
|
|
2495
|
+
/>
|
|
2496
|
+
<path
|
|
2497
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
2498
|
+
fill="url(#linearGradient-masthead-toggle-group-filters-expanded-mobile-example-masthead)"
|
|
2499
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2500
|
+
/>
|
|
2501
|
+
</g>
|
|
2466
2502
|
</g>
|
|
2467
|
-
</
|
|
2468
|
-
</
|
|
2469
|
-
</
|
|
2503
|
+
</svg>
|
|
2504
|
+
</a>
|
|
2505
|
+
</div>
|
|
2470
2506
|
</div>
|
|
2471
2507
|
<div class="pf-v6-c-masthead__content">
|
|
2472
2508
|
<div
|
|
@@ -2643,7 +2679,7 @@ wrapperTag: div
|
|
|
2643
2679
|
</nav>
|
|
2644
2680
|
</div>
|
|
2645
2681
|
</section>
|
|
2646
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2682
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2647
2683
|
<div class="pf-v6-c-page__main-body">
|
|
2648
2684
|
<div class="pf-v6-c-content">
|
|
2649
2685
|
<h1>Main title</h1>
|