Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 914 #376

Merged
merged 19 commits into from
Apr 25, 2024
Merged
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: 1 addition & 1 deletion blocks/columns/columns.css
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ main .columns > div > div > h4:first-child {
.section-top-grid > div:nth-child(1) > div:nth-child(1),
.article-content-wrapper ul {
font-family: var(--sans-serif-font-light);
font-size: var(--font-size-21);
font-size: var(--font-size-16);
font-weight: var(--font-weight-light);
line-height: var(--line-height-160);
letter-spacing: var(--letter-spacing-1);
Expand Down
2 changes: 1 addition & 1 deletion blocks/leadspace/leadspace.css
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ main div.leadspace-wrapper {
.leadspace .button-group {
display: flex;
flex-flow: row nowrap;
align-items: center;
align-items: baseline;
}

.leadspace.brand-logo .button-group {
Expand Down
34 changes: 31 additions & 3 deletions blocks/references/references.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,42 @@
.references p, .references p strong {
.references p,
.references p strong {
font-size: var(--font-size-32);
font-family: var(--serif-font);
margin: unset;
margin-bottom: var(--spacer-element-10);
margin-bottom: var(--spacer-element-09);
line-height: var(--line-height-120);
letter-spacing: var(--letter-spacing-001-em);
}

.references ul, ol, li, a {
.references ul,
.references ol,
.references li,
.references a {
font-size: var(--font-size-14);
font-family: var(--sans-serif-font-regular);
color: var(--neutral-grey-tint140);
}

.references ul,
.references ol {
padding-inline-start: var(--spacer-element-05);
margin-top: 0;
}

.references li {
margin: var(--spacer-element-03) 0;
}

.references li::marker {
font-size: var(--font-size-14);
font-family: var(--sans-serif-font-regular);
color: var(--neutral-grey-tint140);
}

/* All except desktop */
@media only screen and (max-width: 992px) {
.references p,
.references p strong {
margin-bottom: var(--spacer-element-06);
}
}
12 changes: 10 additions & 2 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,9 @@ main ol li {
main ul li::marker,
main ol li::marker {
color: var(--primary-purple);
font-family: var(--sans-serif-font-medium);
font-family: var(--sans-serif-font-regular);
font-weight: var(--font-weight-light);
font-size: var(--font-size-21);
}

/* Special case lists */
Expand Down Expand Up @@ -1831,6 +1833,11 @@ body.quick-links main .section > div {
line-height: var(--line-height-160);
letter-spacing: var(--letter-spacing-1);
}

.article-content-wrapper ul li {
font-size: inherit;
}

}

/* Desktop */
Expand Down Expand Up @@ -1935,7 +1942,8 @@ body.quick-links main .section > div {
.article-content-wrapper ul,
.article-content-wrapper ol {
font-size: var(--font-size-21);
margin: var(--spacer-element-09) 0;
margin: var(--spacer-element-05) 0;
padding-inline-start: var(--spacer-element-07);
}

.article-content {
Expand Down
Loading