34 lines
480 B
CSS
34 lines
480 B
CSS
@import "tailwindcss";
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--primary: #000;
|
|
--secondary: #fff;
|
|
--accent: #ff0066;
|
|
--muted: #8a8a8a;
|
|
--border: #e5e5e5;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
|
|
background: #fafafa;
|
|
color: var(--primary);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button {
|
|
font-family: inherit;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|