Changes for page Sandbox Test Page 3
Last modified by Jareth Carpenter on 2026/08/20 22:29
From version 33.1
edited by Jareth Carpenter
on 2026/08/17 16:17
on 2026/08/17 16:17
Change comment:
There is no comment for this version
To version 37.1
edited by Jareth Carpenter
on 2026/08/17 16:37
on 2026/08/17 16:37
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,4 @@ 1 1 {{html clean="false"}} 2 -{{html clean="false"}} 3 3 <!-- 4 4 ============================================================ 5 5 FirstDigital - Learning Center Menu (XWiki fragment) ... ... @@ -10,333 +10,295 @@ 10 10 2. Select all existing page content and delete it. 11 11 3. Paste: 12 12 13 - 4. Save & View. 12 + {{html clean="false"}} 13 + ...everything in this file... 14 + {{/html}} 14 14 15 - IMPORTANT 16 - - This file is a FRAGMENT. It deliberately contains no DOCTYPE 17 - declaration and no html / head / body elements. Everything is 18 - scoped inside .fdm-hub so it cannot leak into the wiki theme. 19 - - After saving, only ever re-edit this page in SOURCE mode. 20 - Opening it in the WYSIWYG editor and saving can duplicate the 21 - content, because XWiki may expand the macro output into the page 22 - body while also keeping the macro itself. 23 - - All six links are unchanged from your original page, including 24 - the ?oidc.skipped= parameters on the two footer links. 25 - - Product logos still load from your wiki. The five photographs 26 - are embedded (base64) from the Brand Guide 2025, p.13, so they 27 - need no hosting. To swap one for a hosted image instead, replace 28 - that img's src="data:image/jpeg;base64,..." with a URL. 29 - ============================================================ 16 +4. Save & View. 17 + 18 +IMPORTANT 19 +- This file is a FRAGMENT. It deliberately contains no DOCTYPE 20 + declaration and no html / head / body elements. Everything is 21 + scoped inside .fdm-hub so it cannot leak into the wiki theme. 22 +- After saving, only ever re-edit this page in SOURCE mode. 23 + Opening it in the WYSIWYG editor and saving can duplicate the 24 + content, because XWiki may expand the macro output into the page 25 + body while also keeping the macro itself. 26 +- All six links are unchanged from your original page, including 27 + the ?oidc.skipped= parameters on the two footer links. 28 +- Product logos still load from your wiki. The five photographs 29 + are embedded (base64) from the Brand Guide 2025, p.13, so they 30 + need no hosting. To swap one for a hosted image instead, replace 31 + that img's src="data:image/jpeg;base64,..." with a URL. 32 +============================================================ 30 30 --> 31 31 <style> 32 32 @import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;600;800&display=swap'); 33 - 34 - /* Safety net: if the wiki ever renders this block twice, 35 - show only the first copy. */ 36 - .fdm-hub ~ .fdm-hub { display: none !important; } 37 - 38 - /* ---- FirstDigital brand tokens (Brand Guide 2025, p.11) ---- */ 39 - .fdm-hub { 40 - --fd-navy: #003366; /* headlines, backgrounds, icons */ 41 - --fd-blue: #307ab2; /* headlines, backgrounds, icons */ 42 - --fd-blue-bright: #38b2e3; /* stand-out headlines, icons */ 43 - --fd-red: #cf333d; /* accents - use selectively */ 44 - --fd-body: #2e404d; /* paragraph text */ 45 - --fd-secondary: #8f9499; /* secondary text */ 46 - --fd-bg-mid: #dedede; /* backgrounds */ 47 - --fd-bg-light: #f0f0f0; /* backgrounds */ 48 - --fd-white: #ffffff; 49 - --ms-azure: #0078d4; /* Microsoft's own brand blue */ 50 - } 51 - 52 - .fdm-hub, .fdm-hub * { box-sizing: border-box; } 53 - 54 - .fdm-hub { 55 - font-family: 'Host Grotesk', 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif; 56 - font-weight: 300; 57 - color: var(--fd-body); 58 - background: var(--fd-white); 59 - max-width: 1000px; 60 - margin: 0 auto; 61 - padding: 0 20px 28px; 62 - -webkit-font-smoothing: antialiased; 63 - } 64 - 65 - /* ---- Masthead: full-colour logo on white (Logo Rules, p.10) ---- */ 66 - .fdm-masthead { 67 - display: flex; 68 - align-items: center; 69 - justify-content: space-between; 70 - gap: 20px; 71 - flex-wrap: wrap; 72 - padding: 22px 0 18px; 73 - border-bottom: 1px solid var(--fd-bg-mid); 74 - } 75 - 76 - .fdm-masthead img { height: 46px; width: auto; display: block; } 77 - 78 - .fdm-masthead-label { 79 - font-size: 12px; 80 - font-weight: 600; 81 - letter-spacing: 0.16em; 82 - text-transform: uppercase; 83 - color: var(--fd-secondary); 84 - white-space: nowrap; 85 - } 86 - 87 - /* ---- Hero ---- */ 88 - .fdm-hero { 89 - position: relative; 90 - margin-top: 22px; 91 - border-radius: 6px; 92 - overflow: hidden; 93 - min-height: 250px; 94 - display: flex; 95 - align-items: flex-end; 96 - } 97 - 98 - .fdm-hero-img { 99 - position: absolute; 100 - top: 0; right: 0; bottom: 0; left: 0; 101 - width: 100%; height: 100%; 102 - object-fit: cover; 103 - display: block; 104 - } 105 - 106 - /* explicit offsets, not the inset shorthand, for wider support */ 107 - .fdm-hero::after { 108 - content: ""; 109 - position: absolute; 110 - top: 0; right: 0; bottom: 0; left: 0; 111 - background: linear-gradient(100deg, 112 - rgba(0,51,102,0.94) 0%, 113 - rgba(0,51,102,0.86) 42%, 114 - rgba(0,51,102,0.30) 100%); 115 - } 116 - 117 - .fdm-hero-inner { 118 - position: relative; 119 - z-index: 1; 120 - padding: 32px 32px 30px; 121 - max-width: 600px; 122 - } 123 - 124 - /* red rule = brand accent motif (Brand Guide p.4) */ 125 - .fdm-rule { 126 - width: 62px; height: 4px; 127 - background: var(--fd-red); 128 - border: 0; 129 - margin: 0 0 16px; 130 - } 131 - 132 - .fdm-eyebrow { 133 - font-size: 12px; 134 - font-weight: 600; 135 - letter-spacing: 0.18em; 136 - text-transform: uppercase; 137 - color: var(--fd-blue-bright); 138 - margin-bottom: 9px; 139 - } 140 - 141 - .fdm-hero h1 { 142 - font-size: clamp(26px, 3.6vw, 36px); 143 - font-weight: 800; 144 - line-height: 1.14; 145 - letter-spacing: -0.01em; 146 - color: var(--fd-white); 147 - margin: 0 0 11px; 148 - } 149 - 150 - .fdm-hero p { 151 - font-size: 15px; 152 - font-weight: 300; 153 - line-height: 1.6; 154 - color: #dbe6ef; 155 - margin: 0; 156 - max-width: 470px; 157 - } 158 - 159 - /* ---- Card grid ---- */ 160 - .fdm-grid { 161 - display: grid; 162 - grid-template-columns: repeat(2, 1fr); 163 - gap: 22px; 164 - margin-top: 24px; 165 - } 166 - 167 - .fdm-card { 168 - display: flex; 169 - flex-direction: column; 170 - background: var(--fd-white); 171 - border: 1px solid var(--fd-bg-mid); 172 - border-radius: 6px; 173 - overflow: hidden; 174 - text-decoration: none !important; 175 - color: inherit; 176 - height: 100%; 177 - transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; 178 - } 179 - 180 - .fdm-card:hover { 181 - transform: translateY(-3px); 182 - border-color: var(--fd-blue-bright); 183 - box-shadow: 0 12px 26px rgba(0,51,102,0.14); 184 - } 185 - 186 - .fdm-card:focus-visible { 187 - outline: 3px solid var(--fd-blue-bright); 188 - outline-offset: 2px; 189 - } 190 - 191 - .fdm-media { 192 - position: relative; 193 - height: 132px; 194 - background: var(--fd-bg-light); 195 - flex: 0 0 auto; 196 - /* no overflow:hidden here - the logo badge overhangs the bottom 197 - edge on purpose. The photo is already clipped by object-fit, 198 - and .fdm-card's own overflow:hidden keeps the rounded corners. */ 199 - } 200 - 201 - .fdm-media img { 202 - width: 100%; height: 100%; 203 - object-fit: cover; 204 - display: block; 205 - } 206 - 207 - .fdm-media::after { 208 - content: ""; 209 - position: absolute; 210 - top: 0; right: 0; bottom: 0; left: 0; 211 - background: linear-gradient(180deg, 212 - rgba(0,51,102,0.06) 0%, rgba(0,40,79,0.52) 100%); 213 - } 214 - 215 - /* white badge keeps every logo brand-legal over a photo (p.10) */ 216 - .fdm-badge { 217 - position: absolute; 218 - left: 18px; 219 - bottom: 0; 220 - z-index: 1; 221 - transform: translateY(50%); 222 - width: 58px; height: 58px; 223 - border-radius: 8px; 224 - background: var(--fd-white); 225 - box-shadow: 0 5px 14px rgba(0,0,0,0.18); 226 - display: flex; 227 - align-items: center; 228 - justify-content: center; 229 - overflow: hidden; 230 - } 231 - 232 - .fdm-badge img { object-fit: contain; display: block; } 233 - 234 - .fdm-logo-webex { width: 74%; height: auto; } 235 - .fdm-logo-teams { width: 64%; height: auto; } 236 - .fdm-logo-firstdigital { width: 84%; height: auto; } 237 - 238 - /* icons: dark-blue stroke, bright-blue accent (Brand Guide p.14) */ 239 - .fdm-badge svg { 240 - width: 26px; height: 26px; 241 - fill: none; 242 - stroke: var(--fd-navy); 243 - stroke-width: 1.7; 244 - stroke-linecap: round; 245 - stroke-linejoin: round; 246 - } 247 - 248 - .fdm-badge svg .accent { stroke: var(--fd-blue-bright); } 249 - 250 - .fdm-body { 251 - padding: 38px 22px 22px; 252 - display: flex; 253 - flex-direction: column; 254 - flex: 1 1 auto; 255 - } 256 - 257 - .fdm-title { 258 - display: block; 259 - font-size: 16.5px; 260 - font-weight: 800; 261 - line-height: 1.28; 262 - color: var(--fd-navy); 263 - } 264 - 265 - .fdm-sub { 266 - display: block; 267 - font-size: 13.5px; 268 - font-weight: 300; 269 - line-height: 1.55; 270 - color: var(--fd-body); 271 - margin-top: 5px; 272 - } 273 - 274 - .fdm-cta { 275 - display: flex; 276 - align-items: center; 277 - gap: 7px; 278 - margin-top: auto; 279 - padding-top: 16px; 280 - font-size: 13px; 281 - font-weight: 600; 282 - color: var(--fd-red); 283 - } 284 - 285 - .fdm-cta svg { 286 - width: 15px; height: 15px; 287 - fill: none; 288 - stroke: var(--fd-red); 289 - stroke-width: 2; 290 - stroke-linecap: round; 291 - stroke-linejoin: round; 292 - transition: transform .2s ease; 293 - } 294 - 295 - .fdm-card:hover .fdm-cta svg { transform: translateX(4px); } 296 - 297 - /* ---- Footer ---- */ 298 - .fdm-footer { 299 - margin-top: 32px; 300 - padding-top: 18px; 301 - border-top: 1px solid var(--fd-bg-mid); 302 - display: flex; 303 - justify-content: center; 304 - align-items: center; 305 - flex-wrap: wrap; 306 - gap: 14px; 307 - font-size: 13px; 308 - } 309 - 310 - .fdm-footer a { 311 - font-weight: 600; 312 - text-decoration: none !important; 313 - color: var(--fd-blue); 314 - } 315 - 316 - .fdm-footer a:hover { text-decoration: underline !important; } 317 - 318 - .fdm-footer a:focus-visible { 319 - outline: 2px solid var(--fd-blue-bright); 320 - outline-offset: 3px; 321 - } 322 - 323 - .fdm-brand-first { color: var(--fd-blue); } 324 - .fdm-brand-second { color: var(--fd-navy); } 325 - .fdm-azure { color: var(--ms-azure); } 326 - .fdm-divider { color: var(--fd-bg-mid); font-weight: 300; } 327 - 328 - @media (max-width: 768px) { 329 - .fdm-grid { grid-template-columns: 1fr; } 330 - .fdm-hub { padding: 0 12px 22px; } 331 - .fdm-masthead img { height: 38px; } 332 - .fdm-hero { min-height: 220px; } 333 - .fdm-hero-inner { padding: 24px 22px 22px; } 334 - } 335 - 336 - @media (prefers-reduced-motion: reduce) { 337 - .fdm-card, .fdm-cta svg { transition: none; } 338 - } 339 - 36 +/* Safety net: if the wiki ever renders this block twice, show only the first copy. */ 37 +.fdm-hub { display: none !important; } 38 +/* ---- FirstDigital brand tokens (Brand Guide 2025, p.11) ---- */ 39 +.fdm-hub { 40 + --fd-navy: #003366; /* headlines, backgrounds, icons */ 41 + --fd-blue: #307ab2; /* headlines, backgrounds, icons */ 42 + --fd-blue-bright: #38b2e3; /* stand-out headlines, icons */ 43 + --fd-red: #cf333d; /* accents - use selectively */ 44 + --fd-body: #2e404d; /* paragraph text */ 45 + --fd-secondary: #8f9499; /* secondary text */ 46 + --fd-bg-mid: #dedede; /* backgrounds */ 47 + --fd-bg-light: #f0f0f0; /* backgrounds */ 48 + --fd-white: #ffffff; 49 + --ms-azure: #0078d4; /* Microsoft's own brand blue */ 50 +} 51 +.fdm-hub * { box-sizing: border-box; } 52 +.fdm-hub { 53 + font-family: 'Host Grotesk', 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif; 54 + font-weight: 300; 55 + color: var(--fd-body); 56 + background: var(--fd-white); 57 + max-width: 1000px; 58 + margin: 0 auto; 59 + padding: 0 20px 28px; 60 + -webkit-font-smoothing: antialiased; 61 +} 62 +/* ---- Masthead: full-colour logo on white (Logo Rules, p.10) ---- */ 63 +.fdm-masthead { 64 + display: flex; 65 + align-items: center; 66 + justify-content: space-between; 67 + gap: 20px; 68 + flex-wrap: wrap; 69 + padding: 22px 0 18px; 70 + border-bottom: 1px solid var(--fd-bg-mid); 71 +} 72 +.fdm-masthead img { height: 46px; width: auto; display: block; } 73 +.fdm-masthead-label { 74 + font-size: 12px; 75 + font-weight: 600; 76 + letter-spacing: 0.16em; 77 + text-transform: uppercase; 78 + color: var(--fd-secondary); 79 + white-space: nowrap; 80 +} 81 +/* ---- Hero ---- */ 82 +.fdm-hero { 83 + position: relative; 84 + margin-top: 22px; 85 + border-radius: 6px; 86 + overflow: hidden; 87 + min-height: 250px; 88 + display: flex; 89 + align-items: flex-end; 90 +} 91 +.fdm-hero-img { 92 + position: absolute; 93 + top: 0; right: 0; bottom: 0; left: 0; 94 + width: 100%; height: 100%; 95 + object-fit: cover; 96 + display: block; 97 +} 98 +/* explicit offsets, not the inset shorthand, for wider support */ 99 +.fdm-hero::after { 100 + content: ""; 101 + position: absolute; 102 + top: 0; right: 0; bottom: 0; left: 0; 103 + background: linear-gradient(100deg, 104 + rgba(0,51,102,0.94) 0%, 105 + rgba(0,51,102,0.86) 42%, 106 + rgba(0,51,102,0.30) 100%); 107 +} 108 +.fdm-hero-inner { 109 + position: relative; 110 + z-index: 1; 111 + padding: 32px 32px 30px; 112 + max-width: 600px; 113 +} 114 +/* red rule = brand accent motif (Brand Guide p.4) */ 115 +.fdm-rule { 116 + width: 62px; height: 4px; 117 + background: var(--fd-red); 118 + border: 0; 119 + margin: 0 0 16px; 120 +} 121 +.fdm-eyebrow { 122 + font-size: 12px; 123 + font-weight: 600; 124 + letter-spacing: 0.18em; 125 + text-transform: uppercase; 126 + color: var(--fd-blue-bright); 127 + margin-bottom: 9px; 128 +} 129 +.fdm-hero h1 { 130 + font-size: clamp(26px, 3.6vw, 36px); 131 + font-weight: 800; 132 + line-height: 1.14; 133 + letter-spacing: -0.01em; 134 + color: var(--fd-white); 135 + margin: 0 0 11px; 136 +} 137 +.fdm-hero p { 138 + font-size: 15px; 139 + font-weight: 300; 140 + line-height: 1.6; 141 + color: #dbe6ef; 142 + margin: 0; 143 + max-width: 470px; 144 +} 145 +/* ---- Card grid ---- */ 146 +.fdm-grid { 147 + display: grid; 148 + grid-template-columns: repeat(2, 1fr); 149 + gap: 22px; 150 + margin-top: 24px; 151 +} 152 +.fdm-card { 153 + display: flex; 154 + flex-direction: column; 155 + background: var(--fd-white); 156 + border: 1px solid var(--fd-bg-mid); 157 + border-radius: 6px; 158 + overflow: hidden; 159 + text-decoration: none !important; 160 + color: inherit; 161 + height: 100%; 162 + transition: transform .2s ease, box-shadow .2s ease, border-color.2s ease; 163 +} 164 +.fdm-card:hover { 165 + transform: translateY(-3px); 166 + border-color: var(--fd-blue-bright); 167 + box-shadow: 0 12px 26px rgba(0,51,102,0.14); 168 +} 169 +.fdm-card:focus-visible { 170 + outline: 3px solid var(--fd-blue-bright); 171 + outline-offset: 2px; 172 +} 173 +.fdm-media { 174 + position: relative; 175 + height: 132px; 176 + background: var(--fd-bg-light); 177 + flex: 0 0 auto; 178 + /* no overflow:hidden here - the logo badge overhangs the bottom 179 + edge on purpose. The photo is already clipped by object-fit, 180 + and .fdm-card's own overflow:hidden keeps the rounded corners. */ 181 +} 182 +.fdm-media img { 183 + width: 100%; height: 100%; 184 + object-fit: cover; 185 + display: block; 186 +} 187 +.fdm-media::after { 188 + content: ""; 189 + position: absolute; 190 + top: 0; right: 0; bottom: 0; left: 0; 191 + background: linear-gradient(180deg, 192 + rgba(0,51,102,0.06) 0%, rgba(0,40,79,0.52) 100%); 193 +} 194 +/* white badge keeps every logo brand-legal over a photo (p.10) */ 195 +.fdm-badge { 196 + position: absolute; 197 + left: 18px; 198 + bottom: 0; 199 + z-index: 1; 200 + transform: translateY(50%); 201 + width: 58px; height: 58px; 202 + border-radius: 8px; 203 + background: var(--fd-white); 204 + box-shadow: 0 5px 14px rgba(0,0,0,0.18); 205 + display: flex; 206 + align-items: center; 207 + justify-content: center; 208 + overflow: hidden; 209 +} 210 +.fdm-badge img { object-fit: contain; display: block; } 211 +.fdm-logo-webex { width: 74%; height: auto; } 212 +.fdm-logo-teams { width: 64%; height: auto; } 213 +.fdm-logo-firstdigital { width: 84%; height: auto; } 214 +/* icons: dark-blue stroke, bright-blue accent (Brand Guide p.14) */ 215 +.fdm-badge svg { 216 + width: 26px; height: 26px; 217 + fill: none; 218 + stroke: var(--fd-navy); 219 + stroke-width: 1.7; 220 + stroke-linecap: round; 221 + stroke-linejoin: round; 222 +} 223 +.fdm-badge svg .accent { stroke: var(--fd-blue-bright); } 224 +.fdm-body { 225 + padding: 38px 22px 22px; 226 + display: flex; 227 + flex-direction: column; 228 + flex: 1 1 auto; 229 +} 230 +.fdm-title { 231 + display: block; 232 + font-size: 16.5px; 233 + font-weight: 800; 234 + line-height: 1.28; 235 + color: var(--fd-navy); 236 +} 237 +.fdm-sub { 238 + display: block; 239 + font-size: 13.5px; 240 + font-weight: 300; 241 + line-height: 1.55; 242 + color: var(--fd-body); 243 + margin-top: 5px; 244 +} 245 +.fdm-cta { 246 + display: flex; 247 + align-items: center; 248 + gap: 7px; 249 + margin-top: auto; 250 + padding-top: 16px; 251 + font-size: 13px; 252 + font-weight: 600; 253 + color: var(--fd-red); 254 +} 255 +.fdm-cta svg { 256 + width: 15px; height: 15px; 257 + fill: none; 258 + stroke: var(--fd-red); 259 + stroke-width: 2; 260 + stroke-linecap: round; 261 + stroke-linejoin: round; 262 + transition: transform .2s ease; 263 +} 264 +.fdm-card:hover .fdm-cta svg { transform: translateX(4px); } 265 +/* ---- Footer ---- */ 266 +.fdm-footer { 267 + margin-top: 32px; 268 + padding-top: 18px; 269 + border-top: 1px solid var(--fd-bg-mid); 270 + display: flex; 271 + justify-content: center; 272 + align-items: center; 273 + flex-wrap: wrap; 274 + gap: 14px; 275 + font-size: 13px; 276 +} 277 +.fdm-footer a { 278 + font-weight: 600; 279 + text-decoration: none !important; 280 + color: var(--fd-blue); 281 +} 282 +.fdm-footer a:hover { text-decoration: underline !important; } 283 +.fdm-footer a:focus-visible { 284 + outline: 2px solid var(--fd-blue-bright); 285 + outline-offset: 3px; 286 +} 287 +.fdm-brand-first { color: var(--fd-blue); } 288 +.fdm-brand-second { color: var(--fd-navy); } 289 +.fdm-azure { color: var(--ms-azure); } 290 +.fdm-divider { color: var(--fd-bg-mid); font-weight: 300; } 291 +@media (max-width: 768px) { 292 + .fdm-grid { grid-template-columns: 1fr; } 293 + .fdm-hub { padding: 0 12px 22px; } 294 + .fdm-masthead img { height: 38px; } 295 + .fdm-hero { min-height: 220px; } 296 + .fdm-hero-inner { padding: 24px 22px 22px; } 297 +} 298 +@media (prefers-reduced-motion: reduce) { 299 + .fdm-card, .fdm-cta svg { transition: none; } 300 +} 340 340 </style> 341 341 342 342 <div class="fdm-hub"> ... ... @@ -415,4 +415,3 @@ 415 415 416 416 </div> 417 417 {{/html}} 418 -{{/html}}