AI-Syntax / frontend /src /index.css
Hariprasath5128's picture
πŸš€ FINAL: Definitively Clean Launch (AI-Syntax New Space)
0f95125
/* ========================================
SYNTAX AI - Galaxy Base Styles
Black & White Deep Space
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #000000;
color: #f0f0f0;
line-height: 1.6;
}
code {
font-family: 'JetBrains Mono', 'Fira Code', source-code-pro, Menlo, Monaco, Consolas, monospace;
background: rgba(255, 255, 255, 0.06);
padding: 2px 6px;
border-radius: 4px;
color: #e0e0e0;
}
html {
scroll-behavior: smooth;
}
:focus-visible {
outline: 2px solid rgba(255, 255, 255, 0.5);
outline-offset: 2px;
}
button {
-webkit-tap-highlight-color: transparent;
}
a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: rgba(255, 255, 255, 0.7);
}