You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
564 B

2 months ago
@tailwind base;
@tailwind components;
@tailwind utilities;
1 month ago
html, body {
height: 100%;
margin: 0;
font-family: Inter, "Source Han Sans", Arial, sans-serif;
background: #0b0b0b;
color: #f3f2f0;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
}
@media (max-width: 640px) {
html {
font-size: 14px;
}
}
* {
box-sizing: border-box;
}
/* Huilong specific styles */
:root {
--bg: #0b0b0b;
--card: #0f0f10;
--gold: #C4A14B;
--muted: #9a9a9a;
--glass: rgba(255, 255, 255, 0.03);
}
2 months ago