next-cochise/src/app/globals.css

30 lines
538 B
CSS
Raw Normal View History

2025-02-01 06:57:24 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
2025-02-03 17:09:38 +07:00
.bg-gradient {
background: linear-gradient(135deg, #6ec2b6, #90d4c9);
position: relative;
border-bottom-left-radius: 50% 10%;
border-bottom-right-radius: 50% 10%;
padding: 60px 0;
}