36 lines
569 B
CSS
36 lines
569 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
background: #f5f7f4;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
margin: 0;
|
|
background:
|
|
linear-gradient(135deg, rgba(47, 125, 99, 0.08), transparent 34%),
|
|
linear-gradient(315deg, rgba(216, 100, 74, 0.08), transparent 30%),
|
|
#f5f7f4;
|
|
color: #17211f;
|
|
font-family:
|
|
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
|
|
sans-serif;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select {
|
|
font: inherit;
|
|
}
|