34 lines
459 B
CSS
34 lines
459 B
CSS
@import "tailwindcss";
|
|
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family:
|
|
ui-sans-serif,
|
|
system-ui,
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
"Segoe UI",
|
|
"Noto Sans Thai",
|
|
"Noto Sans",
|
|
"Helvetica Neue",
|
|
Arial,
|
|
"Apple Color Emoji",
|
|
"Segoe UI Emoji";
|
|
background: #fafafa;
|
|
}
|
|
|
|
a:not([class]) {
|
|
color: inherit;
|
|
}
|
|
|
|
* {
|
|
scroll-behavior: smooth;
|
|
}
|