Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-lp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- name: Run hugo command to test site builds
run: |
hugo
- name: Test theme preference behavior
run: node --test tools/tests/theme-preference.test.mjs
- name: Get all changed markdown files
id: changed-markdown-files
uses: tj-actions/changed-files@v46
Expand Down
22 changes: 22 additions & 0 deletions assets/css/cross-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,28 @@ arm-top-navigation:not(:defined) {
min-height: 60px;
}

.skip-link {
position: fixed;
top: 0;
left: 1rem;
z-index: 20000;
padding: 0.75rem 1rem;
color: #ffffff;
background: var(--ads-ui-ink-100, #080225);
border: 2px solid var(--ads-brand-horizon-blue, #0057ff);
border-radius: 0 0 4px 4px;
transform: translateY(-120%);
transition: transform 120ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
color: #ffffff;
transform: translateY(0);
outline: 3px solid var(--ads-brand-horizon-blue, #0057ff);
outline-offset: 2px;
}

/* Fix global nav height */
/* The arm-global-web-components script renders a position:fixed nav (0 flow space)
and may inject a 50px sub-navigation bar in flow */
Expand Down
4 changes: 4 additions & 0 deletions assets/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@ table.contributor-table tbody {
background-color: var(--ads-ui-ink-90);
}

.homepage-license {
color: #A3A8AE;
}




Expand Down
Loading