@netfoundry/docusaurus-shared 0.0.168

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/dist/components/Alert/Alert.d.ts +8 -0
  2. package/dist/components/Alert/index.d.ts +2 -0
  3. package/dist/components/CodeBlock/CodeBlock.d.ts +9 -0
  4. package/dist/components/CodeBlock/index.d.ts +2 -0
  5. package/dist/components/Common/Common.d.ts +23 -0
  6. package/dist/components/Common/index.d.ts +1 -0
  7. package/dist/components/NetFoundry/Divider/Divider.d.ts +2 -0
  8. package/dist/components/NetFoundry/Divider/index.d.ts +1 -0
  9. package/dist/components/NetFoundry/index.d.ts +1 -0
  10. package/dist/components/NetFoundryFooter/NetFoundryFooter.d.ts +22 -0
  11. package/dist/components/NetFoundryFooter/index.d.ts +1 -0
  12. package/dist/components/NetFoundryHighlight/NetFoundryHighlight.d.ts +6 -0
  13. package/dist/components/NetFoundryHighlight/index.d.ts +2 -0
  14. package/dist/components/NetFoundryHorizontalSection/NetFoundryHorizontalSection.d.ts +8 -0
  15. package/dist/components/NetFoundryHorizontalSection/index.d.ts +2 -0
  16. package/dist/components/NetFoundryLayout/NetFoundryLayout.d.ts +29 -0
  17. package/dist/components/NetFoundryLayout/index.d.ts +1 -0
  18. package/dist/components/NetFoundryNavbarItems/NetFoundryNavbarItems.d.ts +9 -0
  19. package/dist/components/NetFoundryNavbarItems/index.d.ts +2 -0
  20. package/dist/components/OsTabs/OsTabs.d.ts +5 -0
  21. package/dist/components/OsTabs/index.d.ts +2 -0
  22. package/dist/components/StarUs/StarUs.d.ts +6 -0
  23. package/dist/components/StarUs/index.d.ts +2 -0
  24. package/dist/components/index.d.ts +11 -0
  25. package/dist/docusaurus-envhelper.d.ts +15 -0
  26. package/dist/docusaurus-plugins/index.d.ts +7 -0
  27. package/dist/docusaurus-plugins/logger.d.ts +12 -0
  28. package/dist/docusaurus-plugins/remarkCodeSections.d.ts +7 -0
  29. package/dist/docusaurus-plugins/remarkReplaceMetaUrl.d.ts +10 -0
  30. package/dist/docusaurus-plugins/remarkScopedPath.d.ts +12 -0
  31. package/dist/docusaurus-plugins/remarkYamlTable.d.ts +7 -0
  32. package/dist/docusaurus-plugins/remarkYouTube.d.ts +7 -0
  33. package/dist/docusaurus-plugins/timedPlugin.d.ts +5 -0
  34. package/dist/index.cjs +8 -0
  35. package/dist/index.cjs.map +1 -0
  36. package/dist/index.css +1 -0
  37. package/dist/index.d.ts +1 -0
  38. package/dist/index.esm.js +6 -0
  39. package/dist/index.esm.js.map +1 -0
  40. package/dist/node.cjs +80 -0
  41. package/dist/node.cjs.map +1 -0
  42. package/dist/node.d.ts +1 -0
  43. package/dist/node.esm.js +68 -0
  44. package/dist/node.esm.js.map +1 -0
  45. package/dist/plugins.cjs +4643 -0
  46. package/dist/plugins.cjs.map +1 -0
  47. package/dist/plugins.d.ts +1 -0
  48. package/dist/plugins.esm.js +4634 -0
  49. package/dist/plugins.esm.js.map +1 -0
  50. package/dist/ui.cjs +1312 -0
  51. package/dist/ui.cjs.map +1 -0
  52. package/dist/ui.d.ts +2 -0
  53. package/dist/ui.esm.js +1284 -0
  54. package/dist/ui.esm.js.map +1 -0
  55. package/dist/version.cjs +6 -0
  56. package/dist/version.cjs.map +1 -0
  57. package/dist/version.d.ts +1 -0
  58. package/dist/version.esm.js +4 -0
  59. package/dist/version.esm.js.map +1 -0
  60. package/package.json +82 -0
  61. package/src/components/Alert/Alert.module.css +39 -0
  62. package/src/components/Alert/Alert.tsx +24 -0
  63. package/src/components/Alert/index.ts +2 -0
  64. package/src/components/CodeBlock/CodeBlock.module.css +27 -0
  65. package/src/components/CodeBlock/CodeBlock.tsx +32 -0
  66. package/src/components/CodeBlock/index.ts +2 -0
  67. package/src/components/Common/Common.module.css +0 -0
  68. package/src/components/Common/Common.tsx +53 -0
  69. package/src/components/Common/index.ts +1 -0
  70. package/src/components/NetFoundry/Divider/Divider.module.css +23 -0
  71. package/src/components/NetFoundry/Divider/Divider.tsx +20 -0
  72. package/src/components/NetFoundry/Divider/index.ts +1 -0
  73. package/src/components/NetFoundry/index.ts +1 -0
  74. package/src/components/NetFoundryFooter/NetFoundryFooter.tsx +164 -0
  75. package/src/components/NetFoundryFooter/index.ts +1 -0
  76. package/src/components/NetFoundryFooter/styles.module.css +99 -0
  77. package/src/components/NetFoundryHighlight/NetFoundryHighlight.tsx +15 -0
  78. package/src/components/NetFoundryHighlight/index.ts +2 -0
  79. package/src/components/NetFoundryHighlight/styles.module.css +26 -0
  80. package/src/components/NetFoundryHorizontalSection/NetFoundryHorizontalSection.tsx +23 -0
  81. package/src/components/NetFoundryHorizontalSection/index.ts +2 -0
  82. package/src/components/NetFoundryHorizontalSection/styles.module.css +23 -0
  83. package/src/components/NetFoundryLayout/NetFoundryLayout.module.css +6 -0
  84. package/src/components/NetFoundryLayout/NetFoundryLayout.tsx +110 -0
  85. package/src/components/NetFoundryLayout/index.ts +1 -0
  86. package/src/components/NetFoundryNavbarItems/NetFoundryNavbarItems.tsx +22 -0
  87. package/src/components/NetFoundryNavbarItems/index.ts +2 -0
  88. package/src/components/OsTabs/OsTabs.tsx +30 -0
  89. package/src/components/OsTabs/index.ts +2 -0
  90. package/src/components/StarUs/StarUs.tsx +19 -0
  91. package/src/components/StarUs/index.ts +2 -0
  92. package/src/components/StarUs/styles.module.css +6 -0
  93. package/src/components/index.ts +11 -0
  94. package/src/css/layout.css +14 -0
  95. package/src/css/legacy.css +2348 -0
  96. package/src/css/vars-dark.css +7 -0
  97. package/src/css/vars.css +8 -0
  98. package/src/docusaurus-envhelper.ts +105 -0
  99. package/src/docusaurus-plugins/index.ts +7 -0
  100. package/src/docusaurus-plugins/logger.ts +38 -0
  101. package/src/docusaurus-plugins/remarkCodeSections.ts +115 -0
  102. package/src/docusaurus-plugins/remarkReplaceMetaUrl.ts +35 -0
  103. package/src/docusaurus-plugins/remarkScopedPath.ts +70 -0
  104. package/src/docusaurus-plugins/remarkYamlTable.ts +83 -0
  105. package/src/docusaurus-plugins/remarkYouTube.ts +56 -0
  106. package/src/docusaurus-plugins/timedPlugin.ts +22 -0
  107. package/src/global.d.ts +1 -0
  108. package/src/index.ts +3 -0
  109. package/src/node.ts +1 -0
  110. package/src/plugins.ts +1 -0
  111. package/src/ui.ts +2 -0
  112. package/src/version.ts +1 -0
@@ -0,0 +1,2348 @@
1
+ /**
2
+ * Any CSS included here will be global. The classic template
3
+ * bundles Infima by default. Infima is a CSS framework designed to
4
+ * work well for content-centric websites.
5
+ */
6
+
7
+ /* You can override the default Infima variables here. */
8
+ :root {
9
+ --light-gray: 148, 163, 184;
10
+ --ziti-color-blue: 0, 104, 249;
11
+ --ziti-color-red: 217, 15, 95;
12
+ --ziti-color-mid1: 72, 74, 172;
13
+ --ziti-color-mid2: 144, 44, 133;
14
+ --ziti-rgb-primary: rgb(var(--ziti-color-blue));
15
+ --ziti-rgb-primary-a: rgb(var(--ziti-color-blue), .1);
16
+ --ziti-rgb-red: rgb(217, 15, 95);
17
+ --ziti-rgb-secondary: rgb(var(--ziti-color-red));
18
+ --ziti-rgb-secondary-a: rgb(var(--ziti-color-red), .1);
19
+ --ziti-rgb-mid1: rgb(var(--ziti-color-mid1));
20
+ --ziti-rgb-mid1-a: rgb(var(--ziti-color-mid1), .1);
21
+ --ziti-rgb-mid2: rgb(var(--ziti-color-mid2));
22
+ --ziti-rgb-mid2-a: rgb(var(--ziti-color-mid2), .1);
23
+ --ifm-font-color-base: #252525;
24
+ --ifm-font-color-inverse: #94a3b8;
25
+ --ifm-font-family-monospace: "Consolas", monospace;
26
+ --ifm-font-family-sans: "Open Sans", sans-serif;
27
+ --ifm-font-family-sans-default: sans-serif;
28
+ --ziti-landing-max-width: 1200px;
29
+ --ziti-max-width: 1400px;
30
+ --ifm-navbar-height: 50px;
31
+ --ifm-leading: 35px;
32
+ --ifm-background-color: #f8fafc;
33
+ --ifm-background-surface-color: #f1f5f9;
34
+ --ifm-background-surface-color-dark: #e1d4ee;
35
+ --ifm-footer-background-color: #f0f0f0;
36
+ --ifm-color-banner: #edac15;
37
+ --ifm-color-primary: #0068f9;
38
+ --ifm-color-primary-dark: #8519e7;
39
+ --ifm-color-primary-darker: #7e17dc;
40
+ --ifm-color-primary-darkest: #6813b5;
41
+ --ifm-color-primary-light: #a14ded;
42
+ --ifm-color-primary-lighter: #a85aee;
43
+ --ifm-color-primary-lightest: #b776f1;
44
+ --ifm-heading-color: 0 36 81;
45
+ --code-block-color: var(--ifm-heading-color);
46
+ --lighter-code-block-color: color-mix(in srgb, var(--ifm-heading-color) 70%, white 30%);
47
+ --code-block-background-color: #ECEEEF;
48
+ --ifm-navbar-item-padding-horizontal: .5em;
49
+ --background-color-1: #ffd0d0;
50
+ --landing-banner-1: #e0e4ee;
51
+ --ifm-menu-color: #002451;
52
+ --ifm-toc-link-color: #252525;
53
+ --ifm-alert-foreground-color: #252525;
54
+ --ifm-code-font-size: 95%;
55
+ --ifm-paragraph-margin-bottom: 0;
56
+ --ifm-paragraph-margin-top: 0;
57
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
58
+ --logo-name: "ziti-logo-dark.svg";
59
+ --welcome-page-font-family: "Russo One", "Open Sans", Tahoma, Helvetica, sans-serif;
60
+ --title-font-family: "Russo One", "Open Sans", Tahoma, Helvetica, sans-serif;
61
+ --content-font-family: "Open Sans", Tahoma, Helvetica, sans-serif;
62
+ --h1-size: 50px;
63
+ --h2-size: 35px;
64
+ --h3-size: 25px;
65
+ --docusaurus-collapse-button-bg-hover: rgb(0 0 0 / 2%);
66
+ --ifm-tabs-color-active: var(--ifm-font-color-base);
67
+ --ifm-global-shadow-lw: 3px 3px 10px 0 rgba(0, 0, 0, 0.2);
68
+ --ifm-menu-color-background-hover: #f1f5f9;
69
+ --ifm-menu-left-border-color: #002451;
70
+ --ifm-link-color: rgba(217, 15, 95, 0.98);
71
+ --ifm-breadcrumb-color-actives: rgba(217, 15, 95, 0.98);
72
+ --ifm-breadcrumb-color-active: color-mix(in srgb, var(--ifm-link-color) 75%, white 25%);
73
+ --radius-sm: 0.25rem;
74
+ --radius-md: 0.5rem;
75
+ --radius-lg: 0.75rem;
76
+ --radius-xl: 1.0rem;
77
+ --space-xs: 0.5rem;
78
+ --space-sm: 1rem;
79
+ --space-md: 2rem;
80
+ --space-lg: 4rem;
81
+ --space-xl: 8rem;
82
+ --space-xxl: 16rem;
83
+
84
+ --ziti-code-block-border-thickness: 1px;
85
+ --ziti-code-block-background-color: rgb(243, 243, 243);
86
+ --ziti-code-block-border-color: rgb(197, 199, 201);
87
+ --ziti-code-block-font-color: rgb(57, 58, 52);
88
+ --ifm-code-padding-horizontal: 7px;
89
+ }
90
+ @media (max-height: 1024px) {
91
+ /*for smaller screens, reduce space definitions*/
92
+ :root {
93
+ --space-sm: 1rem;
94
+ --space-md: 1rem;
95
+ --space-lg: 2rem;
96
+ --space-xl: 4rem;
97
+ --space-xxl: 8rem;
98
+ }
99
+ }
100
+ html:not([data-theme="dark"]) {
101
+ --ifm-leading: 15px;
102
+ }
103
+ /* For readability concerns, you should choose a lighter palette in dark mode. */
104
+ html[data-theme="dark"] {
105
+ --ifm-font-color-base: #94a3b8;
106
+ --ifm-leading: 15px;
107
+ --ifm-background-color: #111827;
108
+ --ifm-background-surface-color: #1f2937;
109
+ --ifm-background-surface-color-dark: #374151;
110
+ --ifm-footer-background-color: #1b263e;
111
+ --ifm-color-primary: #158eed;
112
+ --ifm-color-primary-dark: #b671fc;
113
+ --ifm-color-primary-darker: #ad5ffb;
114
+ --ifm-color-primary-darkest: #a34cfb;
115
+ --ifm-color-primary-light: #d3a9fd;
116
+ --ifm-color-primary-lighter: #ddbcfd;
117
+ --ifm-color-primary-lightest: #e6cffe;
118
+ --background-color-1: #434862;
119
+ --landing-banner-1: #38383a;
120
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
121
+ --logo-name: "ziti-logo-light.svg";
122
+ --ifm-heading-color: 148 163 184;
123
+ --ifm-menu-color: #ffffff;
124
+ --ifm-toc-link-color: #ffffff;
125
+ --code-block-color: var(--ifm-heading-color);
126
+ --code-block-background-color: #434862;
127
+ --ifm-alert-foreground-color: var(--ifm-font-color-base);
128
+ --ifm-docusaurus-collapse-button-bg-hover: rgba(255, 255, 255, 0.05);
129
+ --ifm-tabs-color-active: #e2e8f0;
130
+ --ifm-global-shadow-lw: 3px 3px 10px 0 rgb(31, 41, 55);
131
+ --ifm-menu-color-background-hover: #1f2937;
132
+ --ifm-menu-left-border-color: #94a3b8;
133
+ --ifm-link-color: rgba(21, 142, 237, 1);
134
+ --ifm-breadcrumb-color-active: color-mix(in srgb, var(--ifm-link-color) 75%, white 25%);
135
+
136
+ --ziti-text-muted: #8e8ea0;
137
+
138
+ --ziti-code-block-background-color: rgb(33, 47, 77);
139
+ --ziti-code-block-border-color: rgb(33, 47, 77);
140
+ --ziti-code-block-font-color: rgb(148, 163, 184);
141
+ }
142
+
143
+ html[data-theme=dark] #Wizardly code {
144
+ color: rgba(117, 82, 136, 0.98) !important;
145
+ }
146
+
147
+ html[data-theme=dark] .wizardmodal .admonitionIcon_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module svg {
148
+ fill: rgba(0,0,0) !important;
149
+ }
150
+
151
+ @media (max-width: 767px) {
152
+ html[data-theme="dark"] {
153
+ --h1-size: 30px;
154
+ --h2-size: 25px;
155
+ --h3-size: 20px;
156
+ }
157
+ }
158
+ @media (max-width: 767px) {
159
+ html[data-theme="light"] {
160
+ --h1-size: 30px;
161
+ --h2-size: 25px;
162
+ --h3-size: 20px;
163
+ }
164
+ }
165
+
166
+ /* cyrillic */
167
+ @font-face {
168
+ font-family: 'Russo One';
169
+ font-style: normal;
170
+ font-weight: 400;
171
+ src: url(https://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsHOy8mJrrg.woff2) format('woff2');
172
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
173
+ }
174
+ /* latin-ext */
175
+ @font-face {
176
+ font-family: 'Russo One';
177
+ font-style: normal;
178
+ font-weight: 400;
179
+ src: url(https://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsHOwcmJrrg.woff2) format('woff2');
180
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
181
+ }
182
+ /* latin */
183
+ @font-face {
184
+ font-family: 'Russo One';
185
+ font-style: normal;
186
+ font-weight: 400;
187
+ src: url(https://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsHOz8mJ.woff2) format('woff2');
188
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
189
+ }
190
+ /* cyrillic */
191
+ @font-face {
192
+ font-family: 'Open Sans';
193
+ font-style: normal;
194
+ font-weight: 400;
195
+ font-stretch: 100%;
196
+ src: url(https://fonts.gstatic.com/s/opensans/v29/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu0SC55K5gw.woff2) format('woff2');
197
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
198
+ }
199
+
200
+ /* latin-ext */
201
+ @font-face {
202
+ font-family: 'Open Sans';
203
+ font-style: normal;
204
+ font-weight: 400;
205
+ font-stretch: 100%;
206
+ src: url(https://fonts.gstatic.com/s/opensans/v29/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu0SC55K5gw.woff2) format('woff2');
207
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
208
+ }
209
+
210
+ /* latin */
211
+ @font-face {
212
+ font-family: 'Open Sans';
213
+ font-style: normal;
214
+ font-weight: 400;
215
+ font-stretch: 100%;
216
+ src: url(https://fonts.gstatic.com/s/opensans/v29/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format('woff2');
217
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
218
+ }
219
+
220
+
221
+ * {
222
+ -webkit-font-smoothing: antialiased;
223
+ -moz-osx-font-smoothing: grayscale;
224
+ font-family: var(--ifm-font-family-sans), sans-serif;
225
+ }
226
+
227
+
228
+ input[type="radio"]
229
+ {
230
+ display: none;
231
+ }
232
+
233
+ input[type="radio"]+label {
234
+ appearance: none;
235
+ cursor: pointer;
236
+ display: inline-block;
237
+ padding-left: 34px;
238
+ position: relative;
239
+ vertical-align: middle;
240
+ }
241
+
242
+ input[type="radio"]:checked+label {
243
+ backface-visibility: hidden;
244
+ animation: checked 200ms ease 1;
245
+ }
246
+
247
+ input[type="radio"]+label:before {
248
+ background: none repeat scroll 0 0 rgba(255, 255, 255, 0);
249
+ border-radius: 100% 100% 100% 100%;
250
+ content: " ";
251
+ height: 7px;
252
+ left: 12px;
253
+ position: absolute;
254
+ top: 6px;
255
+ width: 7px;
256
+ }
257
+
258
+ input[type="radio"]+label:hover:before {
259
+ /* background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5); */
260
+ background: linear-gradient(90deg,#0068f9 0, #fc0147 100%) ;
261
+ }
262
+
263
+ input[type="radio"]:checked+label:before {
264
+ background: none repeat scroll 0 0 rgba(255, 255, 255, 1);
265
+ }
266
+
267
+
268
+
269
+ input[type="radio"]+label:after {
270
+ border: 3px solid #FFFFFF;
271
+ border-radius: 100% 100% 100% 100%;
272
+ content: " ";
273
+ height: 15px;
274
+ left: 5px;
275
+ position: absolute;
276
+ top: -1px;
277
+ width: 15px;
278
+ }
279
+
280
+ input[type="radio"]:checked+label:after {
281
+ border-color: rgba(255, 255, 255, 1);
282
+ }
283
+
284
+
285
+ .header-github-link:hover {
286
+ opacity: 0.6;
287
+ }
288
+ .header-github-link::before {
289
+ background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgb(60, 74, 94)' d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
290
+ no-repeat;
291
+ content: "";
292
+ display: flex;
293
+ height: 1.25rem;
294
+ width: 1.25rem;
295
+ }
296
+ [data-theme="dark"] .header-github-link::before {
297
+ background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgb(148, 163, 184)' d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
298
+ no-repeat;
299
+ }
300
+
301
+ .header-discourse-link:hover {
302
+ opacity: 0.6;
303
+ }
304
+ .header-discourse-link::before {
305
+ /*background: url('/img/discourse_icon.svg') no-repeat;*/
306
+ content: "";
307
+ display: flex;
308
+ height: 1.25rem;
309
+ width: 1.25rem;
310
+ }
311
+ [data-theme="dark"] .header-discourse-link::before {
312
+ /*background: url('/img/discourse_icon.svg') no-repeat;*/
313
+ content: "";
314
+ display: flex;
315
+ height: 1.25rem;
316
+ width: 1.25rem;
317
+ }
318
+
319
+ .header-netfoundry-link {
320
+ display: flex !important;
321
+ }
322
+ .header-netfoundry-link::after {
323
+ position: relative;
324
+ right: -3px;
325
+ top: 5px;
326
+ }
327
+ .header-netfoundry-link:hover {
328
+ opacity: 0.6;
329
+ }
330
+ .header-netfoundry-link::after {
331
+ /*background: url('/img/new-window.svg?v=3') no-repeat;*/
332
+ content: "";
333
+ display: flex;
334
+ height: 1.25rem;
335
+ width: 1.25rem;
336
+ }
337
+ [data-theme="dark"] .header-netfoundry-link::after {
338
+ /*background: url('/img/new-window.svg') no-repeat;*/
339
+ content: "";
340
+ display: flex;
341
+ height: 1.25rem;
342
+ width: 1.25rem;
343
+ }
344
+
345
+
346
+ /**
347
+ Footer
348
+ */
349
+ .footer, .footer.container {
350
+ display: flex;
351
+ padding: calc(var(--ifm-spacing-vertical) * 0.2)
352
+ var(--ifm-footer-padding-horizontal);
353
+ }
354
+
355
+ .footer__links {
356
+ margin-bottom: 0.5rem;
357
+ }
358
+
359
+ .notification_new {
360
+ background: linear-gradient(90deg,#0068f9 0, #fc0147 100%) ;
361
+ border-radius: 5px;
362
+ color: #fff;
363
+ padding: 1px 8px;
364
+ font-weight: 700;
365
+ font-size: .9em;
366
+ display: inline-flex;
367
+ margin-right: 5px;
368
+ text-transform: uppercase;
369
+ }
370
+
371
+ @media (min-width: 1416px) {
372
+ .main-wrapper {
373
+ align-self: center;
374
+ width: 100%;
375
+ /*overflow: auto;*/
376
+ /*height: 100%;*/
377
+ display: flex;
378
+ flex-direction: column;
379
+ align-items: center;
380
+ background: var(--ifm-background-color);
381
+ }
382
+ }
383
+
384
+ .navbar .navbar__inner {
385
+ margin: 0 auto;
386
+ max-width: 1360px;
387
+ }
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+ .sdkbutton-image {
400
+ margin: 0 auto;
401
+ max-width: 115px !important;
402
+ height: 80px;
403
+ }
404
+
405
+ .sdkbutton-text {
406
+ display: flex;
407
+ justify-content: center;
408
+ }
409
+
410
+ .sdkbutton-button {
411
+ height: 140px;
412
+ width: 140px;
413
+ font-size: 16px;
414
+ font-weight: bold;
415
+ background: rgba(222, 222, 222, 1);
416
+ padding: 0 !important;
417
+ cursor: pointer;
418
+ margin: 20px 20px;
419
+ text-align:center;
420
+ border: none;
421
+ border-radius: 15px;
422
+ }
423
+
424
+ .btn-hover {
425
+ width: 175px;
426
+ font-size: 16px;
427
+ font-weight: 600;
428
+ font-family: 'Open Sans', Tahoma, Helvetica, sans-serif;
429
+ cursor: pointer;
430
+ margin: 20px 20px;
431
+ height: 80px;
432
+ text-align:center;
433
+ border: none;
434
+ background-size: 300% 100%;
435
+ border-radius: 5px;
436
+ -moz-transition: all .2s ease-in-out;
437
+ -o-transition: all .2s ease-in-out;
438
+ -webkit-transition: all .2s ease-in-out;
439
+ transition: all .2s ease-in-out; background: whitesmoke;
440
+ box-shadow: 0 0 10px 0 rgba(50, 50, 50, 0.75);
441
+ color:grey;
442
+ display: flex;
443
+ flex-direction: column;
444
+ justify-content: center;
445
+ text-decoration-line: none;
446
+ }
447
+
448
+ .col-lg-12 .sdkbutton-button:hover {
449
+ text-decoration-line: none !important;
450
+ color: black;
451
+ background: rgba(255, 255, 255, 0.9);
452
+ font-weight: bold;
453
+ box-shadow: 0 0 20px 0 rgba(0,104,249,1);
454
+ -moz-transition: all .15s ease-in-out;
455
+ -o-transition: all .15s ease-in-out;
456
+ -webkit-transition: all .15s ease-in-out;
457
+ transition: all .15s ease-in-out;
458
+ }
459
+
460
+ .col-lg-12 > .buttonrow {
461
+ display: flex;
462
+ flex-direction: row;
463
+ flex-wrap: wrap;
464
+ }
465
+
466
+ .btn-hover:focus {
467
+ outline: none;
468
+ }
469
+
470
+ .btn-hover:hover {
471
+ text-decoration-line: none !important;
472
+ color: black !important;
473
+ box-shadow: 0 0 20px 0 rgba(244,4,77,.5);
474
+ height: 80px;
475
+ background-position: 100% 0;
476
+ -moz-transition: all .15s ease-in-out;
477
+ -o-transition: all .15s ease-in-out;
478
+ -webkit-transition: all .15s ease-in-out;
479
+ transition: all .15s ease-in-out;
480
+ }
481
+
482
+ .centerrow {
483
+ justify-content: center;
484
+ }
485
+
486
+ .sdkbutton-button:focus {
487
+ outline: none;
488
+ }
489
+
490
+ .col-lg-12 .sdkbutton-button {
491
+ color:grey;
492
+ display: flex;
493
+ flex-direction: column;
494
+ justify-content: center;
495
+ text-decoration-line: none;
496
+ }
497
+
498
+ .leftdiv {
499
+ width: 110px;
500
+ height: 150px;
501
+ object-fit: cover;
502
+ display: block;
503
+ margin-left: auto;
504
+ margin-right: auto;
505
+ float: left;
506
+ }
507
+ .leftdiv img {
508
+ height: 220px;
509
+ width: 210px;
510
+ margin-top: -35px;
511
+ }
512
+ .rightdiv {
513
+ width: 110px;
514
+ height: 150px;
515
+ object-fit: cover;
516
+ display: block;
517
+ margin-left: auto;
518
+ margin-right: auto;
519
+ float: right;
520
+ }
521
+ .rightdiv img {
522
+ height: 220px;
523
+ width: 210px;
524
+ margin-top: -35px;
525
+ }
526
+ .flr {
527
+ float: right;
528
+ }
529
+
530
+
531
+ .wizardmodal #navbarDropdownItem {
532
+ display: flex;
533
+ flex-grow: 1;
534
+ align-items: center;
535
+ flex-wrap: nowrap;
536
+ }
537
+ .wizardmodal #navbarDropdownImage {
538
+ padding-right: 5px;
539
+ height: 16px;
540
+ }
541
+
542
+ .wizardmodal .dropdown__menu {
543
+ flex-grow: 1;
544
+ display: flex;
545
+ flex-direction: column;
546
+ flex-wrap: nowrap;
547
+ width: 180px;
548
+ }
549
+
550
+ .wizardmodal .text-divider {
551
+ display: flex;
552
+ align-items: center;
553
+ }
554
+
555
+ .wizardmodal .text-divider::before,
556
+ .wizardmodal .text-divider::after {
557
+ content: '';
558
+ height: 1px;
559
+ background-color: silver;
560
+ flex-grow: 1;
561
+ }
562
+ .wizardmodal .text-divider p {
563
+ padding-left: 5px;
564
+ padding-right: 5px;
565
+ }
566
+
567
+ /* highlight sidebar section headings */
568
+ .theme-doc-sidebar-item-link-level-1.sidebar-title {
569
+ margin-top: 20px;
570
+ margin-left: 0;
571
+ font-weight: bold;
572
+ }
573
+
574
+ /* indent sidebar list items */
575
+ div > aside > div > div > nav > ul > li {
576
+ margin-left: 5px;
577
+ }
578
+
579
+ div > aside > div > nav > ul > li > a,
580
+ div > aside > div > nav > ul > li > a:link,
581
+ div > aside > div > nav > ul > li > a:hover,
582
+ div > aside > div > nav > ul > li > a:visited,
583
+ div > aside > div > nav > ul > li > a:active {
584
+ color: var(--ifm-font-color-base);
585
+ text-decoration: none;
586
+ }
587
+
588
+
589
+ /* DFinger Styles */
590
+
591
+ /* @extend display-flex; */
592
+ .display-flex,
593
+ .form-flex,
594
+ .form-date-group,
595
+ .steps ul,
596
+ .title,
597
+ .title .step-number,
598
+ .actions ul li a,
599
+ .form-radio-flex,
600
+ .form-find {
601
+ display: flex;
602
+ display: -webkit-flex;
603
+ }
604
+
605
+ .page-wrapper {
606
+ min-height: 100vh;
607
+ }
608
+
609
+ .bg-img-1 {
610
+ /*background: url("/img/bg-img-01.jpg") center center/cover no-repeat;*/
611
+ }
612
+
613
+ .whitez {
614
+ /*background: url("/img/whitez.svg");*/
615
+ background-position: center;
616
+ background-size: 55px;
617
+ background-repeat: no-repeat;
618
+ width: 65px;
619
+ height: 55px;
620
+ position: relative;
621
+ display: inline-flex;
622
+ align-items: center;
623
+ justify-content: center;
624
+ z-index: 2013;
625
+ cursor: unset;
626
+ margin-bottom: 10px;
627
+ margin-right: 10px;
628
+ transition: all 0.3s ease;
629
+ }
630
+
631
+ .whitez:hover {
632
+ filter: brightness(95%);
633
+ transition: all 0.3s ease;
634
+ -webkit-transform: translate3d(0, 0, 0);
635
+ transform: translate3d(0, 0, 0);
636
+ }
637
+
638
+ .whitez:active {
639
+ filter: brightness(90%);
640
+ transition: opacity .3s cubic-bezier(.38, .41, .27, 1);
641
+ transform: scale(.97) !important;
642
+ transition: all 0.3s ease;
643
+ -webkit-transform: translate3d(0, 0, 0);
644
+ transform: translate3d(0, 0, 0);
645
+ }
646
+
647
+ .wizardmodal .headertitle {
648
+ margin-top: 4px;
649
+ margin-bottom: 8px;
650
+ text-align: left;
651
+ color: #002451;
652
+ font-size: 36px;
653
+ display: inline-block;
654
+ line-height: initial;
655
+ }
656
+
657
+ .mt20 {
658
+ margin-top: 20px;
659
+ }
660
+
661
+ .wizardmodal .shadedRow {
662
+ background-color: var(--landing-banner-1);
663
+ }
664
+
665
+ .wizardmodal .container {
666
+ position: relative;
667
+ box-sizing: border-box;
668
+ margin: auto;
669
+ }
670
+
671
+ @media (min-width: 1200px) {
672
+ .wizardmodal .container {
673
+ width: 1387px;
674
+ }
675
+ }
676
+
677
+ @media (min-width: 768px) {
678
+ .wizardmodal .container {
679
+ padding-right: 15px;
680
+ padding-left: 15px;
681
+ margin-right: auto;
682
+ margin-left: auto;
683
+ }
684
+ }
685
+
686
+ .wizardmodal .row {
687
+ margin-right: -15px;
688
+ margin-left: -15px;
689
+ display: flex;
690
+ flex-direction: row;
691
+ margin: auto;
692
+ }
693
+
694
+ /* @extend list-type-ulli; */
695
+ list-type-ulli,
696
+ .steps ul,
697
+ .actions ul {
698
+ list-style-type: none;
699
+ margin: 0;
700
+ padding: 0;
701
+ }
702
+
703
+ .wizardmodal a:focus,
704
+ .wizardmodal a:active {
705
+ text-decoration: none;
706
+ outline: none;
707
+ transition: all 300ms ease 0s;
708
+ }
709
+
710
+ .wizardmodal input,
711
+ .wizardmodal select,
712
+ .wizardmodal textarea {
713
+ outline: none;
714
+ appearance: unset !important;
715
+ }
716
+
717
+ .wizardmodal input::-webkit-outer-spin-button,
718
+ .wizardmodal input::-webkit-inner-spin-button {
719
+ appearance: none !important;
720
+ margin: 0;
721
+ }
722
+
723
+ .wizardmodal input:focus,
724
+ .wizardmodal select:focus,
725
+ .wizardmodal textarea:focus {
726
+ outline: none;
727
+ box-shadow: none !important;
728
+ }
729
+
730
+ .wizardmodal input[type=checkbox] {
731
+ appearance: checkbox !important;
732
+ }
733
+
734
+ .wizardmodal input[type=radio] {
735
+ appearance: radio !important;
736
+ }
737
+
738
+ .clear {
739
+ clear: both;
740
+ }
741
+
742
+ .wizardmodal h2 {
743
+ font-size: 30px;
744
+ margin: 0;
745
+ color: #002451;
746
+ }
747
+
748
+ .wizardmodal h3 {
749
+ font-size: 24px;
750
+ margin: 0;
751
+ }
752
+
753
+ .wizardmodal a {
754
+ color: rgba(217, 15, 95, 0.98);
755
+ text-decoration: var(--ifm-link-decoration);
756
+ transition: 0.5s;
757
+ }
758
+
759
+ html[data-theme=dark] #Wizardly a {
760
+ color: rgba(217, 15, 95, 0.98);
761
+ text-decoration: var(--ifm-link-decoration);
762
+ transition: 0.5s;
763
+ }
764
+
765
+ html[data-theme=dark] .menu__link {
766
+ color: var(--ifm-font-color-base) !important;
767
+ }
768
+
769
+ .wizardmodal .menu__link--active {
770
+ color: rgba(217, 15, 95, 0.98) !important;
771
+ transition: 0.5s;
772
+ }
773
+
774
+ html[data-theme=dark] a {
775
+ color: var(--ifm-link-color);
776
+ transition: 0.5s;
777
+ }
778
+
779
+ html[data-theme=dark] .menu__link--active {
780
+ color: var(--ifm-link-color) !important;
781
+ transition: 0.5s;
782
+ }
783
+
784
+ .menu__link--active:hover {
785
+ color: rgba(117, 82, 136, 0.98);
786
+ }
787
+
788
+ .wizardmodal a:hover {
789
+ color: rgba(117, 82, 136, 0.98);
790
+ text-decoration: var(--ifm-link-hover-decoration);
791
+ }
792
+
793
+ html[data-theme=dark] .wizardmodal a:hover {
794
+ color: rgba(217, 15, 95, 0.98);
795
+ text-decoration: var(--ifm-link-hover-decoration);
796
+ }
797
+
798
+ .wizardmodal code a {
799
+ color: #FFF;
800
+ }
801
+
802
+ .wizardmodal a:hover {
803
+ filter: brightness(95%);
804
+ text-decoration: unset;
805
+ transition: all 0.3s ease;
806
+ }
807
+
808
+ .wizardmodal a:active,
809
+ .wizardmodal a:focus {
810
+ filter: brightness(90%);
811
+ text-decoration: unset;
812
+ transform: translateY(1px);
813
+ transition: all 0.3s ease;
814
+ }
815
+
816
+ .wizardmodal .main {
817
+ padding: 50px 0;
818
+ padding-top: 12px;
819
+ position: relative;
820
+ z-index: 99;
821
+ }
822
+
823
+ .wizardmodal .ocontainer {
824
+ padding-left: 15px;
825
+ padding-right: 15px;
826
+ }
827
+
828
+ .wizardmodal .zcontainer {
829
+ max-width: var(--ziti-max-width);
830
+ min-width: 300px;
831
+ margin: 0 auto;
832
+ background: rgba(236, 238, 242, .85);
833
+ -webkit-backdrop-filter: saturate(180%) blur(20px);
834
+ border-radius: 15px;
835
+ }
836
+
837
+ #navbarDropdownImage {
838
+ height: 16px;
839
+ padding-right: 5px;
840
+ }
841
+
842
+ .wizardmodal fieldset {
843
+ padding: 0;
844
+ margin: 0;
845
+ border: none;
846
+ padding-left: 45px;
847
+ padding-right: 55px;
848
+ padding-top: 45px;
849
+ }
850
+
851
+ .wizardmodal p.desc {
852
+ margin: 0;
853
+ margin-bottom: 15px;
854
+ color: #252525;
855
+ }
856
+
857
+ .form-label {
858
+ display: block;
859
+ width: 100%;
860
+ font-size: 16px;
861
+ margin-bottom: 10px;
862
+ }
863
+
864
+ .text-input {
865
+ font-size: 12px;
866
+ color: #999;
867
+ display: block;
868
+ margin-top: 5px;
869
+ }
870
+
871
+ .text-input span {
872
+ color: #222;
873
+ font-weight: bold;
874
+ }
875
+
876
+ input {
877
+ width: 100%;
878
+ display: block;
879
+ border: 1px solid #ebebeb;
880
+ height: 50px;
881
+ box-sizing: border-box;
882
+ padding: 0 var(--space-md);
883
+ color: #222;
884
+ font-weight: bold;
885
+ font-size: 14px;
886
+ font-family: var(--ifm-font-family-sans), var(--ifm-font-family-sans-default);
887
+ border-radius: 7px;
888
+ }
889
+
890
+ #steps-uid-0-p-0 .form-row,
891
+ #steps-uid-0-p-0 .form-group,
892
+ #steps-uid-0-p-0 .form-date {
893
+ width: 680px;
894
+ }
895
+
896
+ .form-flex {
897
+ margin: 0 -10px;
898
+ }
899
+
900
+ .form-flex .form-group {
901
+ width: 50%;
902
+ padding: 0 10px;
903
+ }
904
+
905
+ .form-group,
906
+ .form-date {
907
+ margin-bottom: 18px;
908
+ position: relative;
909
+ }
910
+
911
+ .form-date-group {
912
+ border: 1px solid transparent;
913
+ border-radius: 5px;
914
+ -moz-border-radius: 5px;
915
+ -webkit-border-radius: 5px;
916
+ -o-border-radius: 5px;
917
+ -ms-border-radius: 5px;
918
+ }
919
+
920
+ .form-date-group select {
921
+ border: 1px solid #ebebeb;
922
+ width: 100%;
923
+ box-sizing: border-box;
924
+ appearance: none !important;
925
+ -moz-appearance: none !important;
926
+ -webkit-appearance: none !important;
927
+ -o-appearance: none !important;
928
+ -ms-appearance: none !important;
929
+ position: relative;
930
+ background: 0 0;
931
+ z-index: 10;
932
+ cursor: pointer;
933
+ padding: 0 var(--space-md);
934
+ height: 50px;
935
+ font-size: 14px;
936
+ font-family: 'Open Sans';
937
+ color: #999;
938
+ box-sizing: border-box;
939
+ background-color: #fff;
940
+ color: #222;
941
+ font-weight: bold;
942
+ border-radius: 7px;
943
+ }
944
+
945
+ .form-date-item {
946
+ position: relative;
947
+ overflow: hidden;
948
+ width: 100px;
949
+ margin-right: 10px;
950
+ }
951
+
952
+ .vertical {
953
+ display: block;
954
+ width: 100%;
955
+ overflow: hidden;
956
+ }
957
+
958
+ .vertical .steps {
959
+ float: left;
960
+ width: 25%;
961
+ }
962
+
963
+ .vertical .content {
964
+ float: right;
965
+ width: 75%;
966
+ border-top-left-radius: 12px;
967
+ border-top-right-radius: 12px;
968
+ /*height: 890px;*/
969
+ /*overflow-y: auto;*/
970
+ /*height: calc(70vh - 134px);*/
971
+ }
972
+
973
+ .vertical .actions {
974
+ float: right;
975
+ width: 75%;
976
+ border-bottom-left-radius: 12px;
977
+ border-bottom-right-radius: 12px;
978
+ padding-top: 25px;
979
+ }
980
+
981
+ .content {
982
+ /*height: 700px;*/
983
+ }
984
+
985
+ .wizardmodal {
986
+ position: fixed;
987
+ left: 0;
988
+ top: 0;
989
+ height: 100vh;
990
+ width: 100vw;
991
+ z-index: 1000;
992
+ display: none;
993
+ }
994
+
995
+ .wizardmodal h1 {
996
+ padding-bottom: 0;
997
+ line-height: 52px;
998
+ color: #002451;
999
+ }
1000
+
1001
+ .wizardmodal .page-wrapper {
1002
+ top: 0;
1003
+ min-height: 100vh;
1004
+ position: absolute;
1005
+ left: 0;
1006
+ right: 0;
1007
+ backdrop-filter: blur(5px);
1008
+ }
1009
+
1010
+ .wizard .main {
1011
+ padding-top: 30px;
1012
+ }
1013
+
1014
+ .wizardmodal .bg-img-1 {
1015
+ opacity: 0.99;
1016
+ }
1017
+
1018
+ .steps ul {
1019
+ flex-direction: column;
1020
+ -moz-flex-direction: column;
1021
+ -webkit-flex-direction: column;
1022
+ -o-flex-direction: column;
1023
+ -ms-flex-direction: column;
1024
+ position: relative;
1025
+ padding-left: 30px;
1026
+ padding-top: 40px;
1027
+ overflow-y: auto;
1028
+ }
1029
+
1030
+ .steps ul li {
1031
+ padding-bottom: 30px;
1032
+ position: relative;
1033
+ z-index: 99;
1034
+ }
1035
+
1036
+ .steps ul li a {
1037
+ text-decoration: none;
1038
+ color: #222;
1039
+ }
1040
+
1041
+ .steps ul:after {
1042
+ position: absolute;
1043
+ content: '';
1044
+ width: 2px;
1045
+ background: #d4d3d9;
1046
+ left: 54px;
1047
+ height: 83%;
1048
+ top: 50%;
1049
+ transform: translateY(-50%);
1050
+ -moz-transform: translateY(-50%);
1051
+ -webkit-transform: translateY(-50%);
1052
+ -o-transform: translateY(-50%);
1053
+ -ms-transform: translateY(-50%);
1054
+ z-index: 9;
1055
+ }
1056
+
1057
+ .wizardnav .title {
1058
+ align-items: center;
1059
+ -moz-align-items: center;
1060
+ -webkit-align-items: center;
1061
+ -o-align-items: center;
1062
+ -ms-align-items: center;
1063
+ display: grid;
1064
+ grid-template-columns: 50px auto;
1065
+ column-gap: 20px;
1066
+ transition: .4s;
1067
+ }
1068
+
1069
+ .wizardnav .title .step-number {
1070
+ width: 50px;
1071
+ height: 50px;
1072
+ align-items: center;
1073
+ -moz-align-items: center;
1074
+ -webkit-align-items: center;
1075
+ -o-align-items: center;
1076
+ -ms-align-items: center;
1077
+ justify-content: center;
1078
+ -moz-justify-content: center;
1079
+ -webkit-justify-content: center;
1080
+ -o-justify-content: center;
1081
+ -ms-justify-content: center;
1082
+ border-radius: 50%;
1083
+ -moz-border-radius: 50%;
1084
+ -webkit-border-radius: 50%;
1085
+ -o-border-radius: 50%;
1086
+ -ms-border-radius: 50%;
1087
+ background: #ebebeb;
1088
+ color: #8797ab;
1089
+ margin-right: 15px;
1090
+ border: 5px solid #fff;
1091
+ font-weight: bold;
1092
+ transition: .4s;
1093
+ }
1094
+
1095
+ .noscroll {
1096
+ /*overflow: hidden !important;*/
1097
+ }
1098
+
1099
+ @font-face {
1100
+ font-family: 'Hand Of Sean';
1101
+ /*src: url('/img/HandOfSeanDemo.eot');*/
1102
+ /*src: url('/img/HandOfSeanDemo.eot?#iefix') format('embedded-opentype'),*/
1103
+ /*url('/img/HandOfSeanDemo.woff2') format('woff2'),*/
1104
+ /*url('/img/HandOfSeanDemo.woff') format('woff'),*/
1105
+ /*url('/img/HandOfSeanDemo.ttf') format('truetype'),*/
1106
+ /*url('/img/HandOfSeanDemo.svg#HandOfSeanDemo') format('svg');*/
1107
+ font-weight: 500;
1108
+ font-style: normal;
1109
+ font-display: swap;
1110
+ }
1111
+
1112
+
1113
+ #Wizardly .openWizard {
1114
+ display: none;
1115
+ /*background-image: url(/img/ziggysmalls.svg);*/
1116
+ background-size: 80px;
1117
+ background-repeat: no-repeat;
1118
+ width: 165px;
1119
+ padding-right: 80px;
1120
+ height: 100px;
1121
+ text-align: left;
1122
+ background-position: right;
1123
+ vertical-align: bottom;
1124
+ padding-top: 25px;
1125
+ position: fixed;
1126
+ bottom: 20px;
1127
+ right: 20px;
1128
+ cursor: pointer;
1129
+ border-radius: 20px;
1130
+ transition: .5s;
1131
+ font-family: "Hand Of Sean";
1132
+ background-color: #002451;
1133
+ color: #fad82c !important;
1134
+ text-align: right;
1135
+ z-index: 500;
1136
+ }
1137
+
1138
+ @supports ((-webkit-backdrop-filter: saturate(180%) blur(20px)) or (backdrop-filter: saturate(180%) blur(20px))) {
1139
+ .openWizard {
1140
+ backdrop-filter: saturate(180%) blur(20px);
1141
+ background-color: rgba(0, 36, 81, .95)
1142
+ }
1143
+ }
1144
+
1145
+ .openWizard:hover {
1146
+ filter: brightness(75%);
1147
+ transition: all 0.3s ease;
1148
+ }
1149
+
1150
+ .openWizard:active {
1151
+ filter: brightness(50%);
1152
+ transform: translateY(1px);
1153
+ transition: all 0.3s ease
1154
+ }
1155
+
1156
+ .wizardnav .title .step-text {
1157
+ font-weight: 600;
1158
+ color: #8797ab;
1159
+ }
1160
+
1161
+ .wizardnav {
1162
+ cursor: pointer;
1163
+ transition: .4s;
1164
+ }
1165
+
1166
+ .wizardmodal .current .title .step-number {
1167
+ background: #076bfe;
1168
+ color: #fff;
1169
+ }
1170
+
1171
+ .wizardmodal .current .title .step-text {
1172
+ color: #002451;
1173
+ }
1174
+
1175
+ .content h3 {
1176
+ display: none;
1177
+ }
1178
+
1179
+ .content,
1180
+ .actions {
1181
+ background: #f8f8f8;
1182
+ }
1183
+
1184
+ .actions {
1185
+ padding-bottom: 25px;
1186
+ }
1187
+
1188
+ .actions ul {
1189
+ padding-left: 45px;
1190
+ padding-right: 55px;
1191
+ }
1192
+
1193
+ .actions ul .disabled {
1194
+ display: none;
1195
+ }
1196
+
1197
+ .actions ul li {
1198
+ float: right;
1199
+ }
1200
+
1201
+ .actions ul li:first-child {
1202
+ float: left;
1203
+ }
1204
+
1205
+ .actions ul li:first-child a {
1206
+ background: #e8e8e8;
1207
+ color: #999;
1208
+ box-shadow: unset;
1209
+ }
1210
+
1211
+ .actions ul li a, .actions ul li button {
1212
+ width: 140px;
1213
+ height: 50px;
1214
+ color: #fff;
1215
+ background: #076bfe;
1216
+ box-shadow: 0 3px 9px #0273fb4d;
1217
+ align-items: center;
1218
+ justify-content: center;
1219
+ text-decoration: none;
1220
+ border-radius: 8px;
1221
+ transition: all 0.3s ease;
1222
+ border-width: 0;
1223
+ font-weight: 600;
1224
+ font-size: 15px;
1225
+ cursor: pointer;
1226
+ font-family: 'Open Sans';
1227
+ }
1228
+
1229
+ .actions ul li a:hover, .actions ul li button:hover {
1230
+ filter: brightness(95%);
1231
+ box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
1232
+ transition: all 0.3s ease;
1233
+ }
1234
+
1235
+ .actions ul li a:active, .actions ul li button:active {
1236
+ filter: brightness(90%);
1237
+ box-shadow: none;
1238
+ transform: translateY(1px);
1239
+ transition: all 0.3s ease;
1240
+ }
1241
+
1242
+ .form-radio-flex {
1243
+ flex-wrap: wrap;
1244
+ -moz-flex-wrap: wrap;
1245
+ -webkit-flex-wrap: wrap;
1246
+ -o-flex-wrap: wrap;
1247
+ -ms-flex-wrap: wrap;
1248
+ margin: 0 -15px;
1249
+ }
1250
+
1251
+ .form-radio-flex .form-radio-item {
1252
+ padding: 0 15px;
1253
+ margin-bottom: 25px;
1254
+ }
1255
+
1256
+ .form-radio-flex input {
1257
+ width: 0;
1258
+ height: 0;
1259
+ position: absolute;
1260
+ left: -9999px;
1261
+ }
1262
+
1263
+ .form-radio-flex input+label {
1264
+ margin: 0;
1265
+ width: 223px;
1266
+ height: 133px;
1267
+ box-sizing: border-box;
1268
+ position: relative;
1269
+ display: inline-block;
1270
+ text-align: center;
1271
+ background-color: transparent;
1272
+ border: 1px solid transparent;
1273
+ text-align: center;
1274
+ text-transform: none;
1275
+ transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
1276
+ }
1277
+
1278
+ .form-radio-flex input+label img {
1279
+ width: 100%;
1280
+ height: 100%;
1281
+ }
1282
+
1283
+ .form-radio-flex input:checked+label {
1284
+ border: 1px solid #076bfe;
1285
+ z-index: 1;
1286
+ }
1287
+
1288
+ .form-radio-flex input:focus+label {
1289
+ outline: none;
1290
+ }
1291
+
1292
+ .form-radio-flex input:hover {
1293
+ border: 1px solid #076bfe;
1294
+ }
1295
+
1296
+ label.error {
1297
+ display: block;
1298
+ position: absolute;
1299
+ top: 0;
1300
+ right: 0;
1301
+ }
1302
+
1303
+ label.error:after {
1304
+ font-family: 'Material-Design-Iconic-Font';
1305
+ position: absolute;
1306
+ content: '\f135';
1307
+ right: 20px;
1308
+ top: 50px;
1309
+ font-size: 13px;
1310
+ color: #f63726;
1311
+ }
1312
+
1313
+ input.error {
1314
+ border: 1px solid #f63726;
1315
+ }
1316
+
1317
+ #find_bank {
1318
+ padding: 0 55px;
1319
+ width: 680px;
1320
+ margin-right: 20px;
1321
+ }
1322
+
1323
+ #find_bank::-webkit-input-placeholder {
1324
+ font-weight: 400;
1325
+ }
1326
+
1327
+ #find_bank::-moz-placeholder {
1328
+ font-weight: 400;
1329
+ }
1330
+
1331
+ #find_bank:-ms-input-placeholder {
1332
+ font-weight: 400;
1333
+ }
1334
+
1335
+ #find_bank:-moz-placeholder {
1336
+ font-weight: 400;
1337
+ }
1338
+
1339
+ .submit {
1340
+ width: 150px;
1341
+ background: #666;
1342
+ color: #fff;
1343
+ font-weight: 400;
1344
+ cursor: pointer;
1345
+ }
1346
+
1347
+ .submit:hover {
1348
+ background-color: #4d4d4d;
1349
+ }
1350
+
1351
+ .form-find {
1352
+ position: relative;
1353
+ padding-bottom: 70px;
1354
+ border-bottom: 1px solid #ebebeb;
1355
+ }
1356
+
1357
+ .form-icon {
1358
+ position: absolute;
1359
+ top: 12px;
1360
+ left: 20px;
1361
+ font-size: 18px;
1362
+ color: #999;
1363
+ }
1364
+
1365
+ .choose-bank-desc {
1366
+ color: #666;
1367
+ margin: 0;
1368
+ padding-top: 30px;
1369
+ padding-bottom: 35px;
1370
+ }
1371
+
1372
+ #slider-margin {
1373
+ height: 9px;
1374
+ border: none;
1375
+ box-shadow: none;
1376
+ -moz-box-shadow: none;
1377
+ -webkit-box-shadow: none;
1378
+ -o-box-shadow: none;
1379
+ -ms-box-shadow: none;
1380
+ background: #e8e8e8;
1381
+ border-radius: 0;
1382
+ -moz-border-radius: 0;
1383
+ -webkit-border-radius: 0;
1384
+ -o-border-radius: 0;
1385
+ -ms-border-radius: 0;
1386
+ position: relative;
1387
+ margin-top: 110px;
1388
+ }
1389
+
1390
+ #slider-margin .noUi-marker-horizontal.noUi-marker-large,
1391
+ #slider-margin .noUi-marker-horizontal.noUi-marker {
1392
+ height: 0;
1393
+ }
1394
+
1395
+ #slider-margin .noUi-connect {
1396
+ background: #076bfe;
1397
+ }
1398
+
1399
+ #slider-margin .noUi-connects {
1400
+ border-radius: 0;
1401
+ -moz-border-radius: 0;
1402
+ -webkit-border-radius: 0;
1403
+ -o-border-radius: 0;
1404
+ -ms-border-radius: 0;
1405
+ }
1406
+
1407
+ #slider-margin .noUi-handle {
1408
+ width: 15px;
1409
+ height: 30px;
1410
+ top: -12px;
1411
+ background: #e8e8e8;
1412
+ outline: none;
1413
+ border: none;
1414
+ right: -15px;
1415
+ border: 1px solid #076bfe;
1416
+ border-radius: 0;
1417
+ }
1418
+
1419
+ #slider-margin .noUi-handle:after,
1420
+ #slider-margin .noUi-handle:before {
1421
+ width: 0;
1422
+ }
1423
+
1424
+ #slider-margin .noUi-handle .noUi-tooltip {
1425
+ bottom: 33px;
1426
+ border: none;
1427
+ background: transparent;
1428
+ font-size: 16px;
1429
+ color: #076bfe;
1430
+ padding: 0;
1431
+ }
1432
+
1433
+ #slider-margin .noUi-pips {
1434
+ width: 96%;
1435
+ }
1436
+
1437
+ #slider-margin .noUi-pips .noUi-value {
1438
+ top: -50px;
1439
+ font-size: 16px;
1440
+ color: #666;
1441
+ }
1442
+
1443
+ #slider-margin .noUi-pips .noUi-value:before {
1444
+ content: '$';
1445
+ }
1446
+
1447
+ #slider-margin .noUi-pips .noUi-value-horizontal {
1448
+ transform: none;
1449
+ -moz-transform: none;
1450
+ -webkit-transform: none;
1451
+ -o-transform: none;
1452
+ -ms-transform: none;
1453
+ }
1454
+
1455
+ .your-money {
1456
+ font-size: 16px;
1457
+ color: #222;
1458
+ margin: 0;
1459
+ padding-top: 62px;
1460
+ }
1461
+
1462
+ .your-money .money {
1463
+ font-size: 28px;
1464
+ font-weight: bold;
1465
+ }
1466
+
1467
+ .numberhide {
1468
+ display: none;
1469
+ }
1470
+
1471
+ @media screen and (max-width: 1475px) {
1472
+
1473
+ vertical .content {
1474
+ width: 100%;
1475
+ }
1476
+
1477
+ .main {
1478
+ padding: 25px;
1479
+ padding-top: 7px;
1480
+ }
1481
+
1482
+ }
1483
+
1484
+ @media screen and (max-width: 1024px) {
1485
+ .container {
1486
+ width: calc(100% - 40px);
1487
+ max-width: 100%;
1488
+ }
1489
+
1490
+ .vertical .steps,
1491
+ .vertical .content,
1492
+ .vertical .actions {
1493
+ float: right;
1494
+ width: 100%;
1495
+ }
1496
+
1497
+ #find_bank {
1498
+ width: 100%;
1499
+ }
1500
+
1501
+ .form-radio-flex input+label {
1502
+ width: 190px;
1503
+ height: 120px;
1504
+ }
1505
+
1506
+ .vertical .steps {
1507
+ display: none;
1508
+ width: 350px;
1509
+ }
1510
+
1511
+ .numberhide {
1512
+ display: contents;
1513
+ }
1514
+
1515
+
1516
+ }
1517
+
1518
+ @media screen and (max-width: 992px) {
1519
+ .content {
1520
+ height: 900px;
1521
+ }
1522
+
1523
+ .form-radio-flex input+label {
1524
+ width: 100px;
1525
+ height: 65px;
1526
+ }
1527
+ }
1528
+
1529
+ @media screen and (max-width: 768px) {
1530
+
1531
+ #steps-uid-0-p-0 .form-row,
1532
+ #steps-uid-0-p-0 .form-group,
1533
+ #steps-uid-0-p-0 .form-date {
1534
+ width: 100%;
1535
+ }
1536
+
1537
+ .form-flex {
1538
+ flex-direction: column;
1539
+ -moz-flex-direction: column;
1540
+ -webkit-flex-direction: column;
1541
+ -o-flex-direction: column;
1542
+ -ms-flex-direction: column;
1543
+ margin: 0;
1544
+ }
1545
+
1546
+ .form-flex .form-group {
1547
+ padding: 0;
1548
+ }
1549
+
1550
+ fieldset,
1551
+ .actions ul {
1552
+ padding-left: 30px;
1553
+ padding-right: 30px;
1554
+ }
1555
+
1556
+ #slider-margin .noUi-pips {
1557
+ width: 94%;
1558
+ }
1559
+ }
1560
+
1561
+ @media screen and (max-width: 480px) {
1562
+
1563
+ .form-date-group,
1564
+ .form-find {
1565
+ flex-direction: column;
1566
+ -moz-flex-direction: column;
1567
+ -webkit-flex-direction: column;
1568
+ -o-flex-direction: column;
1569
+ -ms-flex-direction: column;
1570
+ }
1571
+
1572
+ .content {
1573
+ height: 1050px;
1574
+ }
1575
+
1576
+ #find_bank {
1577
+ margin-bottom: 20px;
1578
+ }
1579
+
1580
+ .actions ul li a {
1581
+ width: 100px;
1582
+ }
1583
+
1584
+ .form-radio-flex {
1585
+ margin: 0 -5px;
1586
+ }
1587
+
1588
+ .form-radio-flex .form-radio-item {
1589
+ padding: 0 5px;
1590
+ }
1591
+
1592
+ .form-radio-flex input+label {
1593
+ width: 90px;
1594
+ height: 61px;
1595
+ }
1596
+ }
1597
+
1598
+ /* Basic styling for .wizardmodal prettyprint */
1599
+ .wizardmodal .prettyprint {
1600
+ font-family: "Menlo", "Monaco", "Consolas", monospace !important;
1601
+ background: #002451;
1602
+ background-color: #002451;
1603
+ border-radius: 2px;
1604
+ border: none !important;
1605
+ padding: 20px !important;
1606
+ font-size: 16px;
1607
+ white-space: pre-wrap;
1608
+ /* css-3 */
1609
+ white-space: -moz-pre-wrap;
1610
+ /* Mozilla, since 1999 */
1611
+ white-space: -pre-wrap;
1612
+ /* Opera 4-6 */
1613
+ white-space: -o-pre-wrap;
1614
+ /* Opera 7 */
1615
+ word-wrap: break-word;
1616
+ /* Internet Explorer 5.5+ */
1617
+ }
1618
+
1619
+ /* Adds linenums to each line listed when .linenums class used */
1620
+ li.L0,
1621
+ li.L1,
1622
+ li.L2,
1623
+ li.L3,
1624
+ li.L4,
1625
+ li.L5,
1626
+ li.L6,
1627
+ li.L7,
1628
+ li.L8,
1629
+ li.L9 {
1630
+ list-style-type: decimal;
1631
+ }
1632
+
1633
+ /* Adds individual lines to .wizardmodal prettyprint */
1634
+ ol.linenums {
1635
+ counter-reset: linenumber;
1636
+ }
1637
+
1638
+ /* Adds single increments and disables the background for alternating line numbers */
1639
+ ol.linenums li {
1640
+ list-style-type: none;
1641
+ counter-increment: linenumber;
1642
+ background: transparent !important;
1643
+ }
1644
+
1645
+ ol.linenums li:before {
1646
+ content: counter(linenumber);
1647
+ float: left;
1648
+ margin-left: -4em;
1649
+ text-align: right;
1650
+ width: 3em;
1651
+ }
1652
+
1653
+ .wizardmodal h2 {
1654
+ margin-bottom: 20px;
1655
+ }
1656
+
1657
+ .wizardmodal pre {
1658
+ text-wrap: wrap;
1659
+ color: #fff;
1660
+ }
1661
+
1662
+ .wizardmodal .token-line {
1663
+ color: #fff !important;
1664
+ }
1665
+
1666
+ .disabled-token-line {
1667
+ color: #fff !important;
1668
+ }
1669
+
1670
+ .wizardclose {
1671
+ /*background-image: url(/img/close.svg);*/
1672
+ height: 40px;
1673
+ width: 40px;
1674
+ position: absolute;
1675
+ right: 0;
1676
+ top: 10px;
1677
+ background-size: contain;
1678
+ cursor: pointer;
1679
+ opacity: 1.0;
1680
+ transition: 0.5s;
1681
+ }
1682
+
1683
+ .wizardclose:hover {
1684
+ opacity: 0.8;
1685
+ }
1686
+
1687
+ .wizRow {
1688
+ margin-top: 10px;
1689
+ }
1690
+
1691
+ .wizardmodal pre .str,
1692
+ code .str {
1693
+ color: #a4ff90 !important;
1694
+ }
1695
+
1696
+ /* string - green */
1697
+ .wizardmodal pre .kwd,
1698
+ code .kwd {
1699
+ color: #fc568c !important;
1700
+ }
1701
+
1702
+ /* keyword - dark pink */
1703
+ .wizardmodal pre .com,
1704
+ code .com {
1705
+ color: #AEAEAE !important;
1706
+ font-style: italic !important;
1707
+ }
1708
+
1709
+ /* comment - gray */
1710
+ .wizardmodal pre .typ,
1711
+ code .typ {
1712
+ color: #9dffff !important;
1713
+ }
1714
+
1715
+ /* type - light blue */
1716
+ .wizardmodal pre .lit,
1717
+ code .lit {
1718
+ color: #076bfe !important;
1719
+ }
1720
+
1721
+ /* literal - blue */
1722
+ .wizardmodal pre .pun,
1723
+ code .pun {
1724
+ color: #fff !important;
1725
+ }
1726
+
1727
+ /* punctuation - white */
1728
+ .wizardmodal pre .pln,
1729
+ code .pln {
1730
+ color: #fff !important;
1731
+ }
1732
+
1733
+ /* plaintext - white */
1734
+ .wizardmodal pre .tag,
1735
+ code .tag {
1736
+ color: #89bdff !important;
1737
+ }
1738
+
1739
+ /* html/xml tag - light blue */
1740
+ .wizardmodal pre .atn,
1741
+ code .atn {
1742
+ color: #bdb76b !important;
1743
+ }
1744
+
1745
+ /* html/xml attribute name - khaki */
1746
+ .wizardmodal pre .atv,
1747
+ code .atv {
1748
+ color: #65B042 !important;
1749
+ }
1750
+
1751
+ /* html/xml attribute value - green */
1752
+ .wizardmodal pre .dec,
1753
+ code .dec {
1754
+ color: #3387CC !important;
1755
+ }
1756
+
1757
+ /* decimal - blue */
1758
+
1759
+ .wizardmodal pre.wizardmodal .prettyprint,
1760
+ code.wizardmodal .prettyprint, .wizard .wizardmodal pre {
1761
+ /* background-color: #0f2438 !important; */
1762
+ background-color: #002451 !important;
1763
+ border-radius: 8px !important;
1764
+ }
1765
+
1766
+ .wizardmodal pre.wizardmodal .prettyprint, .wizardmodal pre {
1767
+ margin: 1em auto !important;
1768
+ white-space: pre-line !important;
1769
+ }
1770
+
1771
+
1772
+ /* Specify class=linenums on a .wizardmodal pre to get line numbering */
1773
+ ol.linenums {
1774
+ margin-top: 0 !important;
1775
+ margin-bottom: 0 !important;
1776
+ color: #AEAEAE !important;
1777
+ }
1778
+
1779
+ /* IE indents via margin-left */
1780
+ li.L0,
1781
+ li.L1,
1782
+ li.L2,
1783
+ li.L3,
1784
+ li.L5,
1785
+ li.L6,
1786
+ li.L7,
1787
+ li.L8 {
1788
+ list-style-type: none
1789
+ }
1790
+
1791
+ /* Alternate shading for lines */
1792
+ li.L1,
1793
+ li.L3,
1794
+ li.L5,
1795
+ li.L7,
1796
+ li.L9 {}
1797
+
1798
+ @media print {
1799
+
1800
+ .wizardmodal pre .str,
1801
+ code .str {
1802
+ color: #060 !important;
1803
+ }
1804
+
1805
+ .wizardmodal pre .kwd,
1806
+ code .kwd {
1807
+ color: #006 !important;
1808
+ font-weight: bold !important;
1809
+ }
1810
+
1811
+ .wizardmodal pre .com,
1812
+ code .com {
1813
+ color: #600 !important;
1814
+ font-style: italic !important;
1815
+ }
1816
+
1817
+ .wizardmodal pre .typ,
1818
+ code .typ {
1819
+ color: #404 !important;
1820
+ font-weight: bold !important;
1821
+ }
1822
+
1823
+ .wizardmodal pre .lit,
1824
+ code .lit {
1825
+ color: #044 !important;
1826
+ }
1827
+
1828
+ .wizardmodal pre .pun,
1829
+ code .pun {
1830
+ color: #440 !important;
1831
+ }
1832
+
1833
+ .wizardmodal pre .pln,
1834
+ code .pln {
1835
+ color: #000 !important;
1836
+ }
1837
+
1838
+ .wizardmodal pre .tag,
1839
+ code .tag {
1840
+ color: #006 !important;
1841
+ font-weight: bold !important;
1842
+ }
1843
+
1844
+ .wizardmodal pre .atn,
1845
+ code .atn {
1846
+ color: #404 !important;
1847
+ }
1848
+
1849
+ .wizardmodal pre .atv,
1850
+ code .atv {
1851
+ color: #060 !important;
1852
+ }
1853
+ }
1854
+
1855
+ .builderbox {
1856
+ margin: auto;
1857
+ text-align: center;
1858
+ font-size: 20px;
1859
+ font-weight: 600;
1860
+ color: #002451;
1861
+ }
1862
+
1863
+ .builderbox .gray {
1864
+ color: #0059df;
1865
+ }
1866
+
1867
+ .modal {
1868
+ position: fixed;
1869
+ top: 0;
1870
+ left: 0;
1871
+ width: 100vw;
1872
+ height: 100vh;
1873
+ z-index: 100000;
1874
+ display: none;
1875
+ background-color: rgba(0, 0, 0, 0.05);
1876
+ }
1877
+
1878
+ .builderbutton {
1879
+ position: relative;
1880
+ background-color: #ffffff;
1881
+ border-radius: 35px;
1882
+ width: 150px;
1883
+ height: 150px;
1884
+ display: block;
1885
+ margin: auto;
1886
+ box-shadow: 0 10px 18px 0 rgb(48 48 56 / 5%);
1887
+ transition: all 0.3s ease;
1888
+ transform: translate3d(0, 0, 0);
1889
+ cursor: pointer;
1890
+ }
1891
+
1892
+ .scrollcontainer {
1893
+ overflow: scroll;
1894
+ width: 100%;
1895
+ height: 585px;
1896
+ display: block;
1897
+ }
1898
+
1899
+ .local {
1900
+ position: relative;
1901
+ background-color: #ffffff;
1902
+ border-radius: 35px;
1903
+ width: 150px;
1904
+ height: 150px;
1905
+ display: block;
1906
+ margin: auto;
1907
+ box-shadow: 0 10px 18px 0 rgb(48 48 56 / 5%);
1908
+ transition: all 0.3s ease;
1909
+ transform: translate3d(0, 0, 0);
1910
+ cursor: pointer;
1911
+ /*background-image: url("/img/local.png");*/
1912
+ background-position: center;
1913
+ background-size: 135px;
1914
+ background-repeat: no-repeat;
1915
+ }
1916
+
1917
+ .builderbutton.docker {
1918
+ /*background-image: url("/img/docker.png");*/
1919
+ background-position: center;
1920
+ background-size: 135px;
1921
+ background-repeat: no-repeat;
1922
+ }
1923
+
1924
+ .builderbutton.compose {
1925
+ /*background-image: url("/img/compose.png");*/
1926
+ background-position: center;
1927
+ background-size: 135px;
1928
+ background-repeat: no-repeat;
1929
+ }
1930
+
1931
+ .builderbutton.server {
1932
+ /*background-image: url("/img/server.png");*/
1933
+ background-position: center;
1934
+ background-size: 135px;
1935
+ background-repeat: no-repeat;
1936
+ }
1937
+
1938
+ .builderbutton:hover {
1939
+ filter: brightness(95%);
1940
+ transition: all 0.3s ease;
1941
+ -webkit-transform: translate3d(0, 0, 0);
1942
+ transform: translate3d(0, 0, 0);
1943
+ }
1944
+
1945
+ .builderbutton:active {
1946
+ filter: brightness(90%);
1947
+ transition: opacity .3s cubic-bezier(.38, .41, .27, 1);
1948
+ transform: scale(.97) !important;
1949
+ transition: all 0.3s ease;
1950
+ -webkit-transform: translate3d(0, 0, 0);
1951
+ transform: translate3d(0, 0, 0);
1952
+ }
1953
+
1954
+ .buildertext {
1955
+ margin-top: 12px;
1956
+ margin-bottom: 50px;
1957
+ display: block;
1958
+ }
1959
+ .builderrow {
1960
+ display: inline-block;
1961
+ margin-right: -15px;
1962
+ margin-left: -15px;
1963
+ }
1964
+ .hidden {
1965
+ display: none;
1966
+ }
1967
+
1968
+ code {
1969
+ /*GENERIC CODE BLOCK*/
1970
+ font-family: var(--ifm-font-family-monospace), monospace;
1971
+ vertical-align: middle;
1972
+ font-size: 87.5%;
1973
+ font-weight: 600;
1974
+ background: var(--ziti-code-block-background-color);
1975
+ color: var(--ziti-code-block-font-color);
1976
+ border-color: var(--ziti-code-block-border-color);
1977
+ }
1978
+
1979
+ code p {
1980
+ }
1981
+
1982
+ li a code {
1983
+ font-family: var(--ifm-font-family-monospace), monospace;
1984
+ vertical-align: middle;
1985
+ font-size: 87.5%;
1986
+ font-weight: 600;
1987
+ padding: 2px 4px 2px 4px;
1988
+
1989
+ background-color: rgba(117, 82, 136, 0.2) !important;
1990
+ border: 1px solid rgba(117, 82, 136, 0.98);
1991
+ color: rgba(117, 82, 136, 0.98);
1992
+ }
1993
+
1994
+ .tabItem_node_modules {
1995
+ background-color: rgba(117, 82, 136, 0.2) !important;
1996
+ border: 1px solid rgba(117, 82, 136, 0.98);
1997
+ color: rgba(117, 82, 136, 0.98);
1998
+
1999
+ }
2000
+
2001
+ .tabItem_node_modules-\@docusaurus-theme-classic-lib-theme-TabItem-styles-module, .tabItem_Ymn6 {
2002
+ background-color: rgb(142,142,142, .2);
2003
+ position: relative;
2004
+ display: inline-block;
2005
+ width: 100%;
2006
+ padding: 20px;
2007
+ border-radius: 7px;
2008
+ margin-top: 0;
2009
+ }
2010
+
2011
+ .tabs__item {
2012
+ background-color: rgba(225,225,225, 0.3);
2013
+ border-bottom-left-radius: 0;
2014
+ border-bottom-right-radius: 0;
2015
+ margin-right: 10px;
2016
+ pointer-events: all;
2017
+ }
2018
+
2019
+ [hidden] {
2020
+ display: none !important;
2021
+ }
2022
+
2023
+ .tabs {
2024
+ padding-left: 20px;
2025
+ }
2026
+
2027
+ .tabs__item.tabs__item--active {
2028
+ background-color: rgb(142,142,142, .2);
2029
+ border-bottom-width: 0;
2030
+ pointer-events: none;
2031
+ }
2032
+
2033
+ .tabs__item.tabs__item--active:hover {
2034
+ background-color: rgb(142,142,142, .2);
2035
+ border-bottom-width: 0;
2036
+ pointer-events: none;
2037
+ }
2038
+
2039
+ .margin-top--md {
2040
+ margin-top: 0 !important;
2041
+ }
2042
+
2043
+ .tabs__item:hover {
2044
+ background-color: rgba(245,245,245, 0.2);
2045
+ }
2046
+
2047
+ #Wizardly div {
2048
+ color: rgba(44,55,65) !important;
2049
+ }
2050
+
2051
+ #Wizardly .admonitionIcon_kALy svg {
2052
+ fill: #000000 !important;
2053
+ }
2054
+
2055
+ #Wizardly .alert--secondary {
2056
+ --ifm-alert-foreground-color: #b122e326;
2057
+ }
2058
+
2059
+
2060
+ pre.off {
2061
+ margin-top: 10px !important;
2062
+ }
2063
+
2064
+ .details_node_modules-\@docusaurus-theme-classic-lib-theme-Details-styles-module {
2065
+ --docusaurus-details-decoration-color: rgba(88, 172, 216, 0.98) !important;
2066
+ border: 1px solid rgba(88, 172, 216, 0.98) !important;
2067
+ background-color: rgba(88, 172, 216, 0.4);
2068
+ }
2069
+
2070
+ .admonitionIcon_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module svg {
2071
+ display: inline-block;
2072
+ height: 1.6em;
2073
+ width: 1.6em;
2074
+ }
2075
+
2076
+ .admonition_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-styles-module {
2077
+ margin-top: 1em;
2078
+ }
2079
+
2080
+ .wizardmodal pre {
2081
+ text-wrap: wrap;
2082
+ }
2083
+
2084
+ .breadcrumbs__item--active .breadcrumbs__link {
2085
+ font-weight: 700;
2086
+ }
2087
+
2088
+ .footer {
2089
+ background-color: var(--ifm-navbar-background-color);
2090
+ width: 100%;
2091
+ }
2092
+
2093
+ .pagination-nav__link {
2094
+ border: 1px solid var(--ifm-color-emphasis-300);
2095
+ filter: brightness(90%);
2096
+ border-radius: 12px;
2097
+ transition: all 0.3s ease;
2098
+ }
2099
+
2100
+ .pagination-nav__link:hover {
2101
+ filter: brightness(85%);
2102
+ box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
2103
+ transition: all 0.3s ease;
2104
+ }
2105
+
2106
+ .pagination-nav__link:active {
2107
+ filter: brightness(75%);
2108
+ box-shadow: none;
2109
+ transform: translateY(1px);
2110
+ transition: all 0.3s ease;
2111
+ }
2112
+
2113
+ /* hide the clipboard copy button on code blocks of type "buttonless" */
2114
+ .language-buttonless div > button {
2115
+ display: none;
2116
+ }
2117
+
2118
+ .large-text {
2119
+ font-size: 100px;
2120
+ }
2121
+
2122
+ .admonition.example {
2123
+ background-color: #f9f5ff; /* Light lavender background */
2124
+ border-left: 4px solid #6c63ff; /* Purple border */
2125
+ padding: 16px;
2126
+ border-radius: 8px;
2127
+ margin: 16px 0;
2128
+ }
2129
+
2130
+ .admonition.example .admonition-title {
2131
+ font-size: 18px;
2132
+ font-weight: bold;
2133
+ color: #5a54ff; /* Purple text */
2134
+ margin-bottom: 8px;
2135
+ }
2136
+
2137
+ .code-section {
2138
+ border-left: 3px solid var(--code-block-color);
2139
+ border-top: 1px solid var(--code-block-color);
2140
+ border-right: 1px solid var(--code-block-color);
2141
+ border-bottom: 1px solid var(--code-block-color);
2142
+ margin: 16px 0;
2143
+ background: var(--code-block-background-color);
2144
+ border-radius: 4px;
2145
+ padding-top: 5px;
2146
+ padding-bottom: 1px;
2147
+ }
2148
+
2149
+ .code-section-desc {
2150
+ padding-left: 12px;
2151
+ padding-right: 12px;
2152
+ }
2153
+
2154
+ .code-section-command {
2155
+ margin-left: 12px;
2156
+ margin-right: 12px;
2157
+ }
2158
+
2159
+ .code-section-code {
2160
+ padding-left: 12px;
2161
+ padding-right: 12px;
2162
+ }
2163
+
2164
+ .code-section-results {
2165
+ padding-left: 12px;
2166
+ padding-right: 12px;
2167
+ }
2168
+
2169
+ .code-section pre {
2170
+ background: var(--code-block-background-color);
2171
+ color: var(--code-block-color);
2172
+ _padding: 8px;
2173
+ border-radius: 4px;
2174
+ }
2175
+
2176
+ .code-section p {
2177
+ color: var(--code-block-color);
2178
+ }
2179
+
2180
+ .code-section-desc p {
2181
+ font-size: 1.1em;
2182
+ border-bottom: 1px groove var(--code-block-color);
2183
+ }
2184
+
2185
+ .theme-doc-sidebar-item-category[class*="theme-doc-sidebar-item-category-level-"].menu__list-item:not(.menu__list-item--collapsed) > ul {
2186
+ padding-left: 1px;
2187
+ margin-left: 13px;
2188
+ border-left: 2px solid rgb(var(--code-block-color) / 15%);
2189
+ }
2190
+
2191
+ p > img {
2192
+ width: auto;
2193
+ border-radius: 5px; /* Optional: Rounded corners */
2194
+ box-shadow: 5px 5px 5px rgba(30, 30, 20, 0.25); /* Optional: Adds shadow */
2195
+ }
2196
+
2197
+ .alert {
2198
+ --alert-dark-shadow: rgba(50, 30, 5, .5);
2199
+ --ifm-global-shadow-lw: 3px 3px 10px 0 var(--alert-dark-shadow);
2200
+ --ifm-alert-shadow: var(--ifm-global-shadow-lw);
2201
+ --ifm-alert-border-color: var(--ziti-code-block-border-color);
2202
+ --ifm-code-background: var(--ziti-code-block-background-color);
2203
+ --ifm-alert-background-color:var(--ziti-code-block-background-color);
2204
+ details {
2205
+ border: var(--ziti-code-block-border-thickness) solid var(--ziti-code-block-border-color);
2206
+ }
2207
+ div {
2208
+ background: var(--ziti-code-block-background-color);
2209
+ }
2210
+ }
2211
+ .theme-code-block {
2212
+ margin: 10px 0;
2213
+ border: var(--ziti-code-block-border-thickness) solid var(--ziti-code-block-border-color);
2214
+ > div > pre {
2215
+ background: transparent !important;
2216
+ }
2217
+ }
2218
+
2219
+ pre code {
2220
+ /*border-radius: 43px;*/
2221
+ background: var(--ziti-code-block-background-color);
2222
+ font-family: var(--ifm-font-family-monospace), monospace;
2223
+ }
2224
+
2225
+ .token-line * {
2226
+ font-family: var(--ifm-font-family-monospace), monospace;
2227
+ }
2228
+
2229
+
2230
+ html:not([data-theme="dark"]) {
2231
+ .alert--success, .alert--success .theme-code-block, .alert--success .alert--info, .alert--success .alert--info .theme-code-block {
2232
+ --ziti-code-block-border-color: rgb(23, 92, 10);
2233
+ --ziti-code-block-background-color: rgb(208, 242, 205);
2234
+ --ziti-code-block-font-color: rgb(76, 88, 75);
2235
+ }
2236
+ .alert--secondary, .alert--secondary .theme-code-block, .alert--secondary .alert--info, .alert--secondary .alert--info .theme-code-block {
2237
+ --ziti-code-block-border-color: rgb(184, 91, 217);
2238
+ --ziti-code-block-background-color: rgb(236, 218, 246);
2239
+ --ziti-code-block-font-color: rgb(119, 58, 140);
2240
+ }
2241
+ .alert--danger, .alert--danger .theme-code-block, .alert--danger .alert--info, .alert--danger .alert--info .theme-code-block {
2242
+ --ziti-code-block-border-color: rgb(207, 104, 104);
2243
+ --ziti-code-block-background-color: rgb(244, 177, 177);
2244
+ --ziti-code-block-font-color: rgb(130, 65, 65);
2245
+ }
2246
+ .alert--warning, .alert--warning .theme-code-block, .alert--warning .alert--info, .alert--warning .alert--info .theme-code-block {
2247
+ --ziti-code-block-border-color: rgb(255, 146, 22);
2248
+ --ziti-code-block-background-color: rgb(250, 229, 206);
2249
+ --ziti-code-block-font-color: rgb(178, 102, 15);
2250
+ }
2251
+ .alert--info, .alert--info .theme-code-block, .alert--info .alert--info, .alert--info .alert--info .theme-code-block {
2252
+ --ziti-code-block-border-color: rgb(6, 179, 212);
2253
+ --ziti-code-block-background-color: rgb(200, 236, 245);
2254
+ --ziti-code-block-font-color: rgb(3, 113, 133);
2255
+ }
2256
+ }
2257
+
2258
+ html[data-theme="dark"] {
2259
+ .alert--success, .alert--success .theme-code-block, .alert--success .alert--info, .alert--success .alert--info .theme-code-block {
2260
+ --ziti-code-block-border-color: rgb(26, 116, 8);
2261
+ --ziti-code-block-background-color: rgb(34, 66, 31);
2262
+ --ziti-code-block-font-color: rgb(73, 142, 66);
2263
+ }
2264
+ .alert--secondary, .alert--secondary .theme-code-block, .alert--secondary .alert--info, .alert--secondary .alert--info .theme-code-block, .alert--secondary section {
2265
+ --ziti-code-block-border-color: rgb(98, 51, 127);
2266
+ --ziti-code-block-background-color: rgb(40, 25, 67);
2267
+ --ziti-code-block-font-color: rgb(157, 81, 203);
2268
+ }
2269
+ .alert--danger, .alert--danger .theme-code-block, .alert--danger .alert--info, .alert--danger .alert--info .theme-code-block {
2270
+ --ziti-code-block-border-color: rgb(129, 32, 32);
2271
+ --ziti-code-block-background-color: rgb(76, 31, 41);
2272
+ --ziti-code-block-font-color: rgb(205, 50, 50);
2273
+ }
2274
+ .alert--warning, .alert--warning .theme-code-block, .alert--warning .alert--info, .alert--warning .alert--info .theme-code-block {
2275
+ --ziti-code-block-border-color: rgb(121, 73, 22);
2276
+ --ziti-code-block-background-color: rgb(64, 48, 35);
2277
+ --ziti-code-block-font-color: rgb(197, 119, 35);
2278
+ }
2279
+ .alert--info, .alert--info .theme-code-block, .alert--info .alert--info, .alert--info .alert--info .theme-code-block {
2280
+ --ziti-code-block-border-color: rgb(10, 117, 143);
2281
+ --ziti-code-block-background-color: rgb(15, 55, 74);
2282
+ --ziti-code-block-font-color: rgb(15, 179, 219);
2283
+ }
2284
+ }
2285
+
2286
+ .collapseSidebarButton {
2287
+ background-color: #f5f5f5;
2288
+ }
2289
+
2290
+
2291
+ /* Example: Custom styles for the DocSidebar */
2292
+ :global(.doc-sidebar) {
2293
+ background-color: #f5f5f5;
2294
+ color: #333;
2295
+ }
2296
+
2297
+ /* Custom styles for sidebar items */
2298
+ .doc-sidebar .menu__link {
2299
+ font-size: 16px;
2300
+ font-weight: bold;
2301
+ }
2302
+ .sidebar__scroll-top {
2303
+ background-color: #ff5733;
2304
+ border-radius: 50%;
2305
+ width: 40px;
2306
+ height: 40px;
2307
+ }
2308
+
2309
+ .sidebar__scroll-top:hover {
2310
+ background-color: #c04e2d;
2311
+ }
2312
+
2313
+ aside .button {
2314
+ /* render the button on the bottom of the left nav to render properly */
2315
+ margin: 5px 25px;
2316
+ padding: 5px 25px;
2317
+ background: var(--ifm-background-color);
2318
+ }
2319
+ aside .button:hover {
2320
+ /* render the button on the bottom of the left nav to render properly */
2321
+ background: var(--ifm-background-color);
2322
+ }
2323
+
2324
+ aside nav {
2325
+ /* this selector gets the sidebar */
2326
+ height: 100%;
2327
+ /*margin-bottom: 70px;*/ /* only do this when it's small */
2328
+ }
2329
+
2330
+ .main-wrapper {
2331
+ display: flex;
2332
+ flex-direction: column;
2333
+ /*overflow: auto;*/
2334
+ background: var(--ifm-background-color);
2335
+ flex-grow: 1;
2336
+
2337
+ align-self: center;
2338
+ width: 100%;
2339
+ /*height: 100%;*/
2340
+ align-items: center;
2341
+ }
2342
+
2343
+ @media (max-height: 1200px) {
2344
+ aside nav {
2345
+ /* this selector gets the sidebar */
2346
+ margin-bottom: 70px; /* with the hide menu button on small screens, it obscures the last menu item without this */
2347
+ }
2348
+ }