AndesOps-AI / frontend /globals.css
Álvaro Valenzuela Valdes
Initial commit: AndesOps AI Platform Demo Ready
b8e6434
raw
history blame
558 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: dark;
}
html,
body {
min-height: 100%;
}
body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: radial-gradient(circle at top, rgba(34, 211, 238, 0.14), transparent 30%),
linear-gradient(180deg, #06121d 0%, #081727 40%, #081a29 100%);
}
* {
box-sizing: border-box;
}
::selection {
background: rgba(34, 211, 238, 0.3);
}
button,
input,
textarea,
select {
font: inherit;
}