- Notifications
You must be signed in to change notification settings - Fork328
add options capability to range input, add typography to site, fix sw…#1094
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,62 @@ | ||
// all other displays are default bootstrap styling | ||
.display-2 { | ||
font-weight:$font-weight-bold; | ||
font-size: 4rem; | ||
line-height: 80px; | ||
} | ||
.h1-big { | ||
font-weight: $font-weight-bold; font-size: 80px; line-height: 84px; | ||
@include media-breakpoint-down(md) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Is this right? I remember last time we did this, the fonts were too small on mobile, not too big. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I believe you're also looking for "display" classes which are the headers but "big":https://getbootstrap.com/docs/5.3/content/typography/#display-headings There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. On another note, I don't think we should be using pixels anymore, but rems. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. No before they were too big on mobile. I'll send you the slack conversation. ContributorAuthor
| ||
font-size: 48px; line-height: 52px; | ||
} | ||
} | ||
h1, .h1 { | ||
font-weight: $font-weight-bold; font-size: 64px; line-height: 72px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 44px; line-height: 48px; | ||
} | ||
} | ||
h2, .h2 { | ||
font-weight: $font-weight-bold; font-size: 48px; line-height: 54px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 40px; line-height: 44px; | ||
} | ||
} | ||
h3, .h3 { | ||
font-weight: $font-weight-bold; font-size: 40px; line-height: 46px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 32px; line-height: 36px; | ||
} | ||
} | ||
h4, .h4 { | ||
font-weight: $font-weight-bold; font-size: 32px; line-height: 40px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 28px; line-height: 32px; | ||
} | ||
} | ||
h5, .h5 { | ||
font-weight: $font-weight-bold; font-size: 28px; line-height: 34px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 24px; line-height: 28px; | ||
} | ||
} | ||
h6, .h6 { | ||
font-weight: $font-weight-bold; font-size: 24px; line-height: 30px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 20px; line-height: 26px; | ||
} | ||
} | ||
.eyebrow { | ||
font-weight: $font-weight-bold; font-size: 18px; line-height: 24px; | ||
@include media-breakpoint-down(md) { | ||
font-size: 16px; line-height: 22px; | ||
} | ||
} | ||
.subcopy-text { | ||
font-family: Inter; | ||
font-size: 18px; | ||
line-height: 22px; | ||
} | ||
@@ -22,6 +65,7 @@ | ||
line-height: 20px; | ||
} | ||
.legal-text { | ||
font-family: Inter; | ||
font-size: 12px; | ||
line-height: 16px; | ||
} | ||
Uh oh!
There was an error while loading.Please reload this page.