-
Notifications
You must be signed in to change notification settings - Fork 1
wip #41
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
base: main
Are you sure you want to change the base?
wip #41
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -101,3 +101,77 @@ p { | |
| flex-direction: column; | ||
| } | ||
| } | ||
|
|
||
|
|
||
|
|
||
| // <weight>: Use a value from 200 to 800 | ||
| // <uniquifier>: Use a unique and descriptive class name | ||
|
|
||
| .bricolage-grotesque-<uniquifier> { | ||
| font-family: "Bricolage Grotesque", sans-serif; | ||
| font-optical-sizing: auto; | ||
| font-weight: <weight>; | ||
|
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. The |
||
| font-style: normal; | ||
| font-variation-settings: | ||
| "wdth" 100; | ||
| } | ||
|
|
||
| .hero { | ||
| flex-direction: row !important; | ||
|
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. Avoid using |
||
| } | ||
| .content { | ||
| text-align:left; | ||
|
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. Missing space after colon in |
||
| max-width:500px; | ||
|
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. Missing space after colon in |
||
| } | ||
|
|
||
| .hero .content h1 { | ||
| font-size:52px; | ||
|
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. Missing space after colon in |
||
| margin-bottom:20px !important; | ||
|
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. Avoid using |
||
| } | ||
|
|
||
| .ht-tagline { | ||
| font-size: 22px; | ||
|
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. Missing space after colon in |
||
| line-height:1.4; | ||
|
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. Missing space after colon in |
||
| font-weight:300; | ||
|
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. Missing space after colon in |
||
| margin-bottom:30px; | ||
|
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. Missing space after colon in |
||
| } | ||
| .button { | ||
| background-color: #077ACB !important; | ||
|
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. Avoid hardcoding colors like |
||
| } | ||
|
|
||
| .button.secondary { | ||
| background-color: var(--royal-900) !important;; | ||
|
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. Remove the extra semicolon in |
||
| } | ||
|
|
||
| h2 { | ||
| font-size: 32px; | ||
| line-height: auto; | ||
|
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.
|
||
| text-transform: none; | ||
| margin-bottom:10px !important; | ||
|
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. Missing space after colon in |
||
| } | ||
|
|
||
| p { | ||
| font-size: 22px; | ||
|
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. Missing space after colon in |
||
| line-height:31.6px; | ||
|
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. Missing space after colon in |
||
| color: #D2C7DD; | ||
|
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. Consider using a CSS variable instead of hardcoding color |
||
| } | ||
|
|
||
| .full-width-layout__content { | ||
| margin:0 !important; | ||
|
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. Missing space after colon in |
||
| align-items:center; | ||
|
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. Missing space after colon in |
||
| text-align: center; | ||
| } | ||
|
|
||
| .old-way .full-width-layout__content p { | ||
| max-width: var(--old-way-copy-max-width, 80%) !important; | ||
|
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. Avoid using |
||
| } | ||
|
|
||
| .old-way img { | ||
| margin-top: var(--old-way-image-margin, 30px) !important; | ||
|
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. Avoid using |
||
| } | ||
|
|
||
| .text-gradient { | ||
| background: -webkit-linear-gradient(0deg, #FEBA01, #F22089); | ||
|
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. Use standard CSS gradient syntax with vendor prefixes or consider using modern unprefixed gradients with fallbacks. |
||
| -webkit-background-clip: text; | ||
| -webkit-text-fill-color: transparent; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The class
.bricolage-grotesque-<uniquifier>contains placeholders that need to be replaced with actual values before use.