Skip to content
Merged
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
15 changes: 10 additions & 5 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@

:root {
/* webfonts */
font-family: "Inter var", system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
font-family: var(--font-family);
font-feature-settings: "liga" on, "calt" on;

/* fallback to slightly thinner font on browsers without variable 'wght' support */
Expand All @@ -51,6 +49,9 @@

/* MARK: Variables
*/
--font-family: "Inter var", system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
--color-brand: 56.6% 0.194 147.7;
--color-brand-300: 0.84 0.0699 157.51;
--color-brand-200: 0.91 0.0406 157.72;
Expand Down Expand Up @@ -144,7 +145,9 @@ h6 {

@supports (font-variation-settings: normal) {
:root {
font-family: InterVariable, sans-serif;
--font-family: InterVariable, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
}

h1,
Expand Down Expand Up @@ -716,10 +719,12 @@ nav {
width: 95vw;
grid-column: 1 / -1;
--atomic-primary: oklch(var(--color-brand));
--atomic-primary-ring: oklch(var(--color-brand));
--atomic-primary-light: oklch(var(--color-brand));
--atomic-border-radius-lg: 0;
--atomic-border-radius-md: 0;
--atomic-border-radius: 0;
--atomic-font-family: inherit;
--atomic-font-family: var(--font-family);
}

atomic-search-interface {
Expand Down
Loading