50 lines
897 B
CSS
50 lines
897 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--background: #0a0a0f;
|
||
|
|
--foreground: #ededed;
|
||
|
|
--gold: #D4AF37;
|
||
|
|
--gold-dark: #C9A84C;
|
||
|
|
--nav-height: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
height: 100%;
|
||
|
|
color-scheme: dark;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
height: 100%;
|
||
|
|
color: var(--foreground);
|
||
|
|
background: var(--background);
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
overscroll-behavior: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: inherit;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Prevent iOS zoom on input focus — font-size must be >= 16px */
|
||
|
|
input, select, textarea {
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Smooth scrolling in chat areas */
|
||
|
|
.chat-scroll {
|
||
|
|
scroll-behavior: smooth;
|
||
|
|
-webkit-overflow-scrolling: touch;
|
||
|
|
}
|