QuantHive / ui /src /index.css
ARKAISW's picture
Hackathon Final Submission: PettingZoo multi-agent arch, GRPO training, docs
9cb3002
raw
history blame contribute delete
545 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color: #2f241f;
background-color: #f6ddc6;
font-family: 'Trebuchet MS', 'Avenir Next', 'Segoe UI', sans-serif;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-width: 320px;
background:
radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
linear-gradient(180deg, #f9eadb 0%, #f6ddc6 42%, #ecd0bb 100%);
color: #2f241f;
}
button {
font: inherit;
}
#root {
min-height: 100vh;
}