Spaces:
Sleeping
Sleeping
| /* static/baseTemplate.css */ | |
| :root { | |
| --bg-main: #0a0b10; | |
| --bg-card: rgba(255, 255, 255, 0.03); | |
| --border-color: rgba(255, 255, 255, 0.1); | |
| --accent: #6d5dfc; | |
| --accent-hover: #5b4ce3; | |
| --text-primary: #ffffff; | |
| --text-secondary: #a0a0a0; | |
| --glass-bg: rgba(10, 11, 16, 0.8); | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: "Inter", sans-serif; | |
| } | |
| body { | |
| background-color: var(--bg-main); | |
| color: var(--text-primary); | |
| overflow-x: hidden; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| h1, | |
| h2, | |
| h3 { | |
| font-family: "Outfit", sans-serif; | |
| } | |
| header { | |
| background: var(--glass-bg); | |
| backdrop-filter: blur(10px); | |
| border-bottom: 1px solid var(--border-color); | |
| padding: 1rem 5%; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| position: sticky; | |
| top: 0; | |
| z-index: 1000; | |
| } | |
| .logo h1 { | |
| font-size: 1.5rem; | |
| font-weight: 800; | |
| background: linear-gradient(135deg, #6d5dfc, #e92efb); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| nav a { | |
| color: var(--text-secondary); | |
| text-decoration: none; | |
| margin-left: 2rem; | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| transition: color 0.3s ease; | |
| } | |
| nav a:hover, | |
| nav a.active { | |
| color: var(--accent); | |
| } | |
| .page-wrapper { | |
| flex: 1; | |
| padding: 2rem 5%; | |
| } | |
| footer { | |
| padding: 2rem 5%; | |
| border-top: 1px solid var(--border-color); | |
| text-align: center; | |
| color: var(--text-secondary); | |
| font-size: 0.8rem; | |
| } | |
| .btn-premium { | |
| background: var(--accent); | |
| color: white; | |
| border: none; | |
| padding: 0.8rem 1.5rem; | |
| border-radius: 12px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: | |
| transform 0.2s ease, | |
| background 0.3s ease; | |
| text-decoration: none; | |
| display: inline-block; | |
| } | |
| .btn-premium:hover { | |
| background: var(--accent-hover); | |
| transform: translateY(-2px); | |
| } | |