-
-
Notifications
You must be signed in to change notification settings - Fork 12
Split the stylesheet up, and stop asking Google for the fonts #121
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
Open
openipc-ai
wants to merge
1
commit into
master
Choose a base branch
from
feat/design-foundation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| body { | ||
| text-wrap: pretty; | ||
| } | ||
|
|
||
| // Keep the footer below the fold on short pages. | ||
| body > main > .container { | ||
| min-height: 60vh; | ||
| } | ||
|
|
||
| // Page titles rendered by the shared page header / article headers. | ||
| article > header > h1, | ||
| article > header > h2 { | ||
| font-weight: 600; | ||
| margin: 1rem 0 1.5rem; | ||
| } | ||
|
|
||
| // Prose links: keep underline (a11y) with a comfortable offset; nav/cards opt out. | ||
| a { | ||
| text-underline-offset: .15em; | ||
| } | ||
|
|
||
| ol.breadcrumb { | ||
| font-size: .86rem; | ||
| padding: .5rem 0; | ||
| } | ||
|
|
||
| label.required::after { | ||
| content: '*'; | ||
| color: var(--bs-danger); | ||
| margin-inline-start: .125rem; | ||
| } | ||
|
|
||
| // Code, MAC/IP addresses, hex values keep LTR order even in RTL locales. | ||
| code, kbd, pre, samp, .text-data { | ||
| direction: ltr; | ||
| unicode-bidi: embed; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // Self-hosted IBM Plex. The woff2 files live in public/fonts/ and are copied | ||
| // verbatim from the @fontsource packages by `yarn build:fonts`. | ||
| // | ||
| // Self-hosted rather than fetched from fonts.googleapis.com: the CDN import | ||
| // this replaces made every visitor's browser announce itself to Google before | ||
| // the page could paint, and it is the same argument that moved the legacy logo | ||
| // off a maintainer's personal CDN in d60729a. | ||
| // | ||
| // Subsets: latin covers English, latin-ext the accented names in the partner | ||
| // wall, cyrillic the Russian copy. Chinese falls back to the system stack -- | ||
| // IBM Plex Sans has no CJK glyphs, and the CJK families that do are megabytes. | ||
|
|
||
| $plex-subsets: ( | ||
| 'latin': (U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, | ||
| U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD), | ||
| 'latin-ext': (U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, | ||
| U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, | ||
| U+2113, U+2C60-2C7F, U+A720-A7FF), | ||
| 'cyrillic': (U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116), | ||
| ); | ||
|
|
||
| @each $subset, $range in $plex-subsets { | ||
| @each $weight in (400, 500, 600, 700) { | ||
| @font-face { | ||
| font-family: 'IBM Plex Sans'; | ||
| font-style: normal; | ||
| font-display: swap; | ||
| font-weight: $weight; | ||
| src: url('/fonts/ibm-plex-sans-#{$subset}-#{$weight}-normal.woff2') format('woff2'); | ||
| unicode-range: $range; | ||
| } | ||
| } | ||
|
|
||
| @each $weight in (400, 600) { | ||
| @font-face { | ||
| font-family: 'IBM Plex Mono'; | ||
| font-style: normal; | ||
| font-display: swap; | ||
| font-weight: $weight; | ||
| src: url('/fonts/ibm-plex-mono-#{$subset}-#{$weight}-normal.woff2') format('woff2'); | ||
| unicode-range: $range; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| .x-small { | ||
| font-size: 0.8125rem; | ||
| } | ||
|
|
||
| .img-zoom:hover { | ||
| cursor: zoom-in; | ||
| } | ||
|
|
||
| .ratio { | ||
| overflow: auto; | ||
| } | ||
|
|
||
| .offcanvas { | ||
| --bs-offcanvas-width: 30vw; | ||
| min-width: 25rem; | ||
| } | ||
|
|
||
| // Responsive breakpoint debugger (enabled via body.debug from a fixed IP). | ||
| @media (max-width: 575.98px) { body.debug:before { content: 'xs' } } | ||
| @media (min-width: 576px) and (max-width: 767.98px) { body.debug:before { content: 'sm' } } | ||
| @media (min-width: 768px) and (max-width: 991.98px) { body.debug:before { content: 'md' } } | ||
| @media (min-width: 992px) and (max-width: 1199.98px) { body.debug:before { content: 'lg' } } | ||
| @media (min-width: 1200px) and (max-width: 1399.98px) { body.debug:before { content: 'xl' } } | ||
| @media (min-width: 1400px) { body.debug:before { content: 'xxl' } } | ||
| body.debug:before { | ||
| color: #4c60d811; | ||
| display: block; | ||
| font-size: 10rem; | ||
| font-variant: all-small-caps; | ||
| font-weight: 700; | ||
| line-height: 1; | ||
| position: fixed; | ||
| right: 3rem; | ||
| top: 3rem; | ||
| z-index: -1; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| // Theme: "engineering workbench" — light body, dark ink anchor sections, brand indigo. | ||
| // These overrides MUST load after bootstrap/scss/functions and before the main bootstrap import. | ||
|
|
||
| // --- Brand palette --- | ||
| $indigo: #4c60d8; // brand color (5.3:1 on white — AA for text) | ||
| $primary: $indigo; | ||
| // Bootstrap emits --bs-blue from $blue, and the pre-relaunch rules in | ||
| // pages/_legacy.scss colour headings with var(--bs-blue). Left at Bootstrap's | ||
| // default those rules would render #0d6efd -- the same "two blues" split this | ||
| // file exists to close, just from the other side. | ||
| $blue: $indigo; | ||
| $ink: #0f1422; // navbar, hero, stats/CTA bands, footer | ||
| $ink-2: #1a2236; // raised surfaces on ink | ||
| $accent: #ffb454; // warm amber: Labs, live-dot, highlights; never text-on-white | ||
| $success: #33a867; // matches stage-done.svg | ||
| $danger: #d6453d; | ||
| $warning: #e8a13c; | ||
| $info: #3e8ed0; | ||
|
|
||
| // --- Neutrals (cool, indigo-tinted) --- | ||
| $body-bg: #ffffff; | ||
| $body-color: #1c2333; | ||
| $body-secondary-color: #5a6377; | ||
| $body-tertiary-bg: #f4f6fa; | ||
| $border-color: #e3e7f0; | ||
|
|
||
| // --- Typography --- | ||
| $font-family-sans-serif: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif; | ||
| $font-family-monospace: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace; | ||
| $font-size-base: 1rem; | ||
| $line-height-base: 1.6; | ||
| $headings-font-weight: 600; // 700 reserved for hero/display | ||
| $display-font-weight: 700; | ||
| $h1-font-size: 2.25rem; | ||
| $h2-font-size: 1.75rem; | ||
| $h3-font-size: 1.375rem; | ||
| $code-color: #b23a78; | ||
|
|
||
| // --- Spacing (Bootstrap defaults + 6/7 for section rhythm: py-6/py-7) --- | ||
| $spacer: 1rem; | ||
| $spacers: ( | ||
| 0: 0, | ||
| 1: $spacer * .25, | ||
| 2: $spacer * .5, | ||
| 3: $spacer, | ||
| 4: $spacer * 1.5, | ||
| 5: $spacer * 3, | ||
| 6: $spacer * 4.5, | ||
| 7: $spacer * 6, | ||
| ); | ||
|
|
||
| // --- Shape --- | ||
| $border-radius: .375rem; | ||
| $border-radius-sm: .25rem; | ||
| $border-radius-lg: .625rem; | ||
| $border-radius-xl: 1rem; | ||
| $box-shadow-sm: 0 1px 2px rgba(15, 20, 34, .06); | ||
| $box-shadow: 0 8px 24px rgba(15, 20, 34, .10); | ||
| $card-border-color: $border-color; | ||
| $card-cap-bg: transparent; | ||
|
|
||
| // --- Links / buttons / focus --- | ||
| $link-color: $indigo; | ||
| $link-decoration: underline; | ||
| $btn-font-weight: 600; | ||
| $btn-padding-x: 1.125rem; | ||
| $btn-padding-y: .5rem; | ||
| $btn-padding-x-lg: 1.5rem; | ||
| $btn-padding-y-lg: .75rem; | ||
| $focus-ring-color: rgba($indigo, .3); | ||
|
|
||
| // --- Components --- | ||
| $carousel-transition-duration: .3s; // carried over; the Open Wall slideshow relies on it | ||
| $enable-dark-mode: true; // needed for scoped data-bs-theme="dark" sections | ||
| $navbar-dark-color: rgba(#fff, .78); | ||
| $navbar-dark-hover-color: #fff; | ||
| $badge-font-weight: 600; | ||
| $table-cell-padding-y: .6rem; | ||
|
|
||
| // --- Project status stages (NEQ/R&D/HLP/WIP/MVP/DONE) --- | ||
| $stage-colors: ( | ||
| 'neq': #8a93a6, | ||
| 'rnd': #7a5cd6, | ||
| 'hlp': #3e8ed0, | ||
| 'wip': #0fa3a3, | ||
| 'mvp': #e8a13c, | ||
| 'done': #33a867, | ||
| ); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
1. Fonts bypass asset pipeline
📘 Rule violation☼ ReliabilityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools