-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b156efd
commit c655bba
Showing
14 changed files
with
177 additions
and
61 deletions.
There are no files selected for viewing
This file contains 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 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,4 @@ | ||
:root { | ||
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
--font-mono: "SFMono-Regular", Consolas, Liberation Mono, Menlo, Courier, monospace; | ||
} |
This file contains 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,21 @@ | ||
:root { | ||
--text-xs: 0.75rem; | ||
--text-sm: 0.875rem; | ||
--text-md: 1rem; | ||
--text-lg: 1.125rem; | ||
--text-xl: 1.25rem; | ||
--text-2xl: 1.5rem; | ||
--text-3xl: 1.75rem; | ||
--text-4xl: 2.5rem; | ||
--text-5xl: 3rem; | ||
--text-6xl: 4rem; | ||
|
||
/** @deprecated */ | ||
--text-base: var(--text-md); | ||
--font-size-tiny: var(--text-xs); | ||
--font-size-small: var(--text-sm); | ||
--font-size-medium: var(--text-base); | ||
--font-size-large: var(--text-xl); | ||
--font-size-huge: var(--text-2xl); | ||
--font-size-monster: var(--text-3xl); | ||
} |
This file contains 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,6 @@ | ||
:root { | ||
--font-thin: 300; | ||
--font-normal: 400; | ||
--font-semi: 500; | ||
--font-bold: 600; | ||
} |
This file contains 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,9 @@ | ||
:root { | ||
--height-xs: 1.5rem; | ||
--height-sm: 1.75rem; | ||
--height-md: 2rem; | ||
--height-lg: 2.25rem; | ||
--height-xl: 2.5rem; | ||
|
||
--height: var(--height-md); | ||
} |
This file contains 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,3 @@ | ||
:root { | ||
--opacity-disabled: .5; | ||
} |
This file contains 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,25 @@ | ||
:root { | ||
--pattern-size: 16px; | ||
|
||
--pattern-light: repeating-conic-gradient( | ||
hsl(0, 0%, 100%) 0% 25%, | ||
hsl(0, 0%, 90%) 0% 50% | ||
) | ||
50% / var(--pattern-size) var(--pattern-size); | ||
|
||
--pattern-dark: repeating-conic-gradient( | ||
hsla(0, 0%, 15%) 0% 25%, | ||
hsl(0, 0%, 22%) 0% 50% | ||
) | ||
50% / var(--pattern-size) var(--pattern-size); | ||
|
||
--pattern: var(--pattern-dark); | ||
} | ||
|
||
.k-panel[data-theme="dark"] { | ||
--pattern-light: repeating-conic-gradient( | ||
hsl(0, 0%, 90%) 0% 25%, | ||
hsl(0, 0%, 80%) 0% 50% | ||
) | ||
50% / var(--pattern-size) var(--pattern-size); | ||
} |
This file contains 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,9 @@ | ||
:root { | ||
--rounded-xs: 1px; | ||
--rounded-sm: 0.125rem; | ||
--rounded-md: 0.25rem; | ||
--rounded-lg: 0.375rem; | ||
--rounded-xl: 0.5rem; | ||
|
||
--rounded: var(--rounded-md); | ||
} |
This file contains 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,23 @@ | ||
:root { | ||
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.025); | ||
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), | ||
0 2px 4px -1px rgba(0, 0, 0, 0.05); | ||
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), | ||
0 4px 6px -2px rgba(0, 0, 0, 0.05); | ||
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), | ||
0 10px 10px -5px rgba(0, 0, 0, 0.05); | ||
|
||
--shadow: var(--shadow-sm); | ||
--shadow-toolbar: rgba(0, 0, 0, 0.1) -2px 0 5px, var(--shadow), | ||
var(--shadow-xl); | ||
|
||
/** @deprecated */ | ||
--shadow-outline: var(--color-focus, currentColor) 0 0 0 2px; | ||
--shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); | ||
--shadow-sticky: rgba(0, 0, 0, 0.05) 0 2px 5px; | ||
--box-shadow-dropdown: var(--shadow-dropdown); | ||
--box-shadow-item: var(--shadow); | ||
--box-shadow-focus: var(--shadow-xl); | ||
--shadow-dropdown: var(--shadow-lg); | ||
--shadow-item: var(--shadow-sm); | ||
} |
This file contains 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,21 @@ | ||
:root { | ||
--spacing-0: 0; | ||
--spacing-1: 0.25rem; | ||
--spacing-2: 0.5rem; | ||
--spacing-3: 0.75rem; | ||
--spacing-4: 1rem; | ||
--spacing-6: 1.5rem; | ||
--spacing-8: 2rem; | ||
--spacing-12: 3rem; | ||
--spacing-16: 4rem; | ||
--spacing-24: 6rem; | ||
--spacing-36: 9rem; | ||
--spacing-48: 12rem; | ||
|
||
/** @deprecated */ | ||
--spacing-px: 1px; | ||
--spacing-2px: 2px; | ||
--spacing-5: 1.25rem; | ||
--spacing-10: 2.5rem; | ||
--spacing-20: 5rem; | ||
} |
This file contains 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,14 @@ | ||
:root { | ||
--z-offline: 1200; | ||
--z-fatal: 1100; | ||
--z-loader: 1000; | ||
--z-notification: 900; | ||
--z-dialog: 800; | ||
--z-navigation: 700; | ||
--z-dropdown: 600; | ||
--z-drawer: 500; | ||
--z-dropzone: 400; | ||
--z-toolbar: 300; | ||
--z-content: 200; | ||
--z-background: 100; | ||
} |
This file contains 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 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 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