-
Notifications
You must be signed in to change notification settings - Fork 69
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
Showing
3 changed files
with
319 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,310 @@ | ||
/* Base styles */ | ||
:root { | ||
/* Colors */ | ||
--background-color: hsl(0, 0%, 100%); | ||
--foreground-color: hsl(222.2, 84%, 4.9%); | ||
|
||
--card-bg: hsl(0, 0%, 100%); | ||
--card-color: hsl(222.2, 84%, 4.9%); | ||
|
||
--primary-color: hsl(221.2, 83.2%, 53.3%); | ||
--primary-foreground: hsl(210, 40%, 98%); | ||
|
||
--secondary-color: hsl(222, 47.4%, 34.7%); | ||
--secondary-foreground: hsl(210, 40%, 98%); | ||
|
||
--muted-color: hsl(210, 40%, 96.1%); | ||
--muted-foreground: hsl(215.4, 16.3%, 46.9%); | ||
|
||
--accent-color: hsl(210, 40%, 96.1%); | ||
--accent-foreground: hsl(222.2, 47.4%, 11.2%); | ||
|
||
--destructive-color: hsl(0, 84.2%, 60.2%); | ||
--destructive-foreground: hsl(210, 40%, 98%); | ||
|
||
--border-color: hsl(214.3, 31.8%, 91.4%); | ||
--input-color: hsl(214.3, 31.8%, 91.4%); | ||
--ring-color: hsl(221.2, 83.2%, 53.3%); | ||
|
||
/* Spacing & Sizing */ | ||
--radius: 0.5rem; | ||
--spacing-1: 0.25rem; | ||
--spacing-2: 0.5rem; | ||
--spacing-3: 0.75rem; | ||
--spacing-4: 1rem; | ||
--spacing-6: 1.5rem; | ||
} | ||
|
||
/* Dark mode */ | ||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--background-color: hsl(222.2, 84%, 4.9%); | ||
--foreground-color: hsl(210, 40%, 98%); | ||
|
||
--card-bg: hsl(222.2, 84%, 4.9%); | ||
--card-color: hsl(210, 40%, 98%); | ||
|
||
--primary-color: hsl(217.2, 91.2%, 59.8%); | ||
--primary-foreground: hsl(222.2, 47.4%, 11.2%); | ||
|
||
--secondary-color: hsl(217.2, 32.6%, 17.5%); | ||
--secondary-foreground: hsl(210, 40%, 98%); | ||
|
||
--muted-color: hsl(217.2, 32.6%, 17.5%); | ||
--muted-foreground: hsl(215, 20.2%, 65.1%); | ||
|
||
--accent-color: hsl(217.2, 32.6%, 17.5%); | ||
--accent-foreground: hsl(210, 40%, 98%); | ||
|
||
--destructive-color: hsl(0, 62.8%, 30.6%); | ||
--destructive-foreground: hsl(210, 40%, 98%); | ||
|
||
--border-color: hsl(217.2, 32.6%, 17.5%); | ||
--input-color: hsl(217.2, 32.6%, 17.5%); | ||
--ring-color: hsl(224.3, 76.3%, 48%); | ||
} | ||
} | ||
|
||
/* Base elements */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
border-color: var(--border-color); | ||
} | ||
|
||
body { | ||
background-color: var(--background-color); | ||
color: var(--foreground-color); | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, | ||
'Helvetica Neue', Arial, sans-serif; | ||
line-height: 1.6; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
font-feature-settings: 'rlig' 1, 'calt' 1; | ||
} | ||
|
||
/* Typography */ | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
letter-spacing: -0.025em; | ||
font-weight: 700; | ||
line-height: 1.2; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5rem; | ||
} | ||
|
||
h2 { | ||
font-size: 2rem; | ||
} | ||
|
||
h3 { | ||
font-size: 1.75rem; | ||
} | ||
|
||
h4 { | ||
font-size: 1.5rem; | ||
} | ||
|
||
p { | ||
line-height: 1.75; | ||
margin-top: 1.5rem; | ||
} | ||
|
||
p:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
/* Block elements */ | ||
blockquote { | ||
margin-top: 1.5rem; | ||
border-left: 4px solid var(--primary-color); | ||
padding-left: 1.5rem; | ||
font-style: italic; | ||
} | ||
|
||
code { | ||
position: relative; | ||
border-radius: var(--radius); | ||
background-color: var(--muted-color); | ||
padding: 0.2rem 0.3rem; | ||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; | ||
font-size: 0.875rem; | ||
} | ||
|
||
pre { | ||
margin: 1.5rem 0 1rem 0; | ||
padding: 1rem; | ||
overflow-x: auto; | ||
border-radius: var(--radius); | ||
border: 1px solid var(--border-color); | ||
background-color: var(--muted-color); | ||
} | ||
|
||
pre code { | ||
background-color: transparent; | ||
padding: 0; | ||
} | ||
|
||
/* Tables */ | ||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
} | ||
|
||
tr { | ||
margin: 0; | ||
border-top: 1px solid var(--border-color); | ||
padding: 0; | ||
} | ||
|
||
th, | ||
td { | ||
border: 1px solid var(--border-color); | ||
padding: 0.5rem 1rem; | ||
text-align: left; | ||
} | ||
|
||
th[align='center'], | ||
td[align='center'] { | ||
text-align: center; | ||
} | ||
|
||
th[align='right'], | ||
td[align='right'] { | ||
text-align: right; | ||
} | ||
|
||
/* Lists */ | ||
ul, | ||
ol { | ||
margin: 1.5rem 0; | ||
padding-left: 1.5rem; | ||
} | ||
|
||
ul { | ||
list-style-type: disc; | ||
} | ||
|
||
ol { | ||
list-style-type: decimal; | ||
} | ||
|
||
li { | ||
margin-top: 0.5rem; | ||
} | ||
|
||
/* Interactive elements */ | ||
details { | ||
border-radius: var(--radius); | ||
border: 1px solid var(--border-color); | ||
padding: 1rem; | ||
} | ||
|
||
summary { | ||
cursor: pointer; | ||
font-weight: 600; | ||
} | ||
|
||
summary:hover { | ||
color: var(--primary-color); | ||
} | ||
|
||
/* Media elements */ | ||
img { | ||
max-width: 100%; | ||
height: auto; | ||
border-radius: var(--radius); | ||
} | ||
|
||
/* Scrollbar */ | ||
::-webkit-scrollbar { | ||
width: 0.5rem; | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
background-color: var(--muted-color); | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
border-radius: 9999px; | ||
background-color: color-mix( | ||
in srgb, | ||
var(--muted-foreground) 50%, | ||
transparent | ||
); | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background-color: var(--muted-foreground); | ||
} | ||
|
||
/* Selection */ | ||
::selection { | ||
background-color: color-mix(in srgb, var(--primary-color) 20%, transparent); | ||
color: var(--foreground-color); | ||
} | ||
|
||
/* Focus */ | ||
:focus-visible { | ||
outline: none; | ||
box-shadow: 0 0 0 2px var(--background-color), 0 0 0 4px var(--ring-color); | ||
} | ||
|
||
/* Animations */ | ||
@keyframes enter { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes exit { | ||
from { | ||
opacity: 1; | ||
} | ||
to { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.animate-in { | ||
animation: enter 0.2s ease-out; | ||
} | ||
|
||
.animate-out { | ||
animation: exit 0.2s ease-in; | ||
} | ||
|
||
/* Responsive Design */ | ||
@media (min-width: 768px) { | ||
h1 { | ||
font-size: 3rem; | ||
} | ||
|
||
h2 { | ||
font-size: 2.5rem; | ||
} | ||
|
||
h3 { | ||
font-size: 2rem; | ||
} | ||
|
||
h4 { | ||
font-size: 1.75rem; | ||
} | ||
} | ||
.tsd-page-title { | ||
display: none; | ||
} | ||
.col-content { | ||
margin-left: 16px; | ||
} |
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