-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/foundation work #3
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
fc2987a
[feat] build / molecules, organisms, symbiosis
mikepadiernos 689649b
[feat] build / header, navigation
mikepadiernos b14815e
[feat] build / grid
mikepadiernos 2ee3d6b
[feat] build / header
mikepadiernos f7e42d7
[feat] build / forms
mikepadiernos ccde66b
[feat] build / forms
mikepadiernos 73e93c8
[feat] build / brand, forms, README
mikepadiernos f090734
[feat] build / navigation
mikepadiernos 583cf62
Potential fix for pull request finding
mikepadiernos 05b8141
Potential fix for pull request finding
mikepadiernos a8de238
Potential fix for pull request finding
mikepadiernos 3160380
fix: improve menu toggle accessibility in site-header
Copilot 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 |
|---|---|---|
| @@ -1 +1,9 @@ | ||
| source/matter.source.css | ||
| **/*.theme.css | ||
| .vscode | ||
| .idea | ||
| .ddev | ||
| assets | ||
| node_modules | ||
| dist | ||
| build |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| @import "./globals/reset.css"; | ||
| @import "./globals/utilities.css"; | ||
| @import "./globals/typography.css"; | ||
| /* @import "./globals/forms.css"; */ | ||
| @import "./globals/layout.css"; | ||
| /* @import "./globals/animations.css"; */ | ||
| @import "./globals/styling.css"; | ||
| @import "./globals/forms.css"; |
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,45 @@ | ||
| .form-field { | ||
| --form-field-width: 30ch; | ||
|
|
||
| background-color: var(--color-light--002); | ||
| border: 2px solid; | ||
| border-radius: var(--border-radius); | ||
| padding: 0.25em 0.5em; | ||
| font-family: inherit; | ||
| color: inherit; | ||
|
|
||
| /* fallback */ | ||
| font-size: 16px; | ||
| /* Capitalized to prevent Sass thinking it's the Sass max() */ | ||
| font-size: max(16px, 1em); | ||
| max-width: 100%; | ||
| width: var(--form-field-width, 30ch); | ||
|
|
||
| &:not(textarea, .select--multiple) { | ||
| line-height: 1; | ||
| height: 2.25rem; | ||
| } | ||
|
|
||
| & select { | ||
| appearance: none; | ||
| background-color: transparent; | ||
| border: none; | ||
| padding: 0 1em 0 0; | ||
| margin: 0; | ||
| width: 100%; | ||
| font-family: inherit; | ||
| font-size: inherit; | ||
| color: inherit; | ||
| cursor: inherit; | ||
| line-height: inherit; | ||
|
|
||
| /* Remove dropdown arrow in IE10 & IE11 */ | ||
| /* @link https://www.filamentgroup.com/lab/select-css.html */ | ||
| &::-ms-expand { | ||
| display: none; | ||
| } | ||
|
|
||
| /* Remove focus outline, will add on alternate element */ | ||
| outline: none; | ||
| } | ||
| } |
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 |
|---|---|---|
| @@ -1,51 +1,55 @@ | ||
| form, | ||
| .form-wrapper, { | ||
| > .form-item { | ||
| > * { | ||
| margin-block-end: var(--gap-alt); | ||
| } | ||
| :is(.off-canvas) { | ||
| form { | ||
| gap: var(--space--gap); | ||
| grid-auto-rows: max-content; | ||
| } | ||
| } | ||
|
|
||
| button, | ||
| input, | ||
| select, | ||
| textarea { | ||
| margin: 0; | ||
| padding: var(--padding-default); | ||
| border: 2px solid var(--color-black--001); | ||
| border-radius: 0; | ||
| field-sizing: content; | ||
| font-family: inherit; | ||
| font-size: inherit; | ||
| background-color: var(--color-white--002); | ||
|
|
||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| outline: 0; | ||
| button, | ||
| input, | ||
| select, | ||
| textarea { | ||
| margin: 0; | ||
| padding: var(--padding-default); | ||
| border: 2px solid var(--color-dark--001); | ||
| border-radius: 0; | ||
| field-sizing: content; | ||
| font-family: inherit; | ||
| font-size: inherit; | ||
| background-color: var(--color-light--002); | ||
|
|
||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| outline: 0; | ||
| border-radius: 0; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| button, | ||
| input, | ||
| select { | ||
| min-inline-size: 0; | ||
| } | ||
| button, | ||
| input, | ||
| select { | ||
| min-inline-size: 0; | ||
| } | ||
|
|
||
| input, | ||
| textarea { | ||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| &::placeholder { | ||
| color: transparent; | ||
| input, | ||
| textarea { | ||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| &::placeholder { | ||
| color: transparent; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| textarea { | ||
| min-inline-size: 100%; | ||
| min-block-size: 10rem; | ||
| textarea { | ||
| min-block-size: 10rem; | ||
| } | ||
|
|
||
| :is(.form-item) { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: var(--space) | ||
| } | ||
|
|
||
| } | ||
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,51 @@ | ||
| form, | ||
| .form-wrapper { | ||
| > .form-item { | ||
| > * { | ||
| margin-block-end: var(--space--gap-alt); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| button, | ||
| input, | ||
| select, | ||
| textarea { | ||
| margin: 0; | ||
| padding: var(--padding-default); | ||
| border: 2px solid var(--color-dark--001); | ||
| border-radius: 0; | ||
| field-sizing: content; | ||
| font-family: inherit; | ||
| font-size: inherit; | ||
| background-color: var(--color-light--002); | ||
|
|
||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| outline: 0; | ||
| border-radius: 0; | ||
| } | ||
| } | ||
|
|
||
| button, | ||
| input, | ||
| select { | ||
| min-inline-size: 0; | ||
| } | ||
|
|
||
| input, | ||
| textarea { | ||
| &:focus, | ||
| &:focus-visible, | ||
| &:focus-within { | ||
| &::placeholder { | ||
| color: transparent; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| textarea { | ||
| min-inline-size: 100%; | ||
| min-block-size: 10rem; | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.