Spaces:
Sleeping
Sleeping
| /* Global Styles */ | |
| :root { | |
| --primary-color: #0158A3; | |
| --primary-light: #6366f1; | |
| --primary-dark: #3730a3; | |
| --secondary-color: #FFDA00; | |
| --accent-color: #ec4899; | |
| --text-color: #0f172a; | |
| --text-light: #64748b; | |
| --bg-color: #f8fafc; | |
| --card-bg: #ffffff; | |
| --border-color: #e2e8f0; | |
| --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); | |
| --transition: all 0.3s ease; | |
| --radius: 12px; | |
| --header-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| } | |
| /* Header styling */ | |
| .header-container { | |
| background: var(--header-gradient); | |
| border-radius: var(--radius); | |
| padding: 2rem; | |
| margin-bottom: 2rem; | |
| box-shadow: var(--shadow); | |
| color: white; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 20px; | |
| height:128px; | |
| } | |
| .header-container img { | |
| filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)); | |
| transition: var(--transition); | |
| } | |
| .header-container img:hover { | |
| transform: scale(1.05); | |
| } | |
| .header-container h1 { | |
| font-size: 2.5rem; | |
| font-weight: 700; | |
| margin-bottom: 0.5rem; | |
| background: linear-gradient(45deg, #fff, #f0f0ff); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| display: inline-block; | |
| } | |
| .header-container a { | |
| color: white; | |
| text-decoration: none; | |
| font-weight: 600; | |
| border-bottom: 2px solid rgba(255, 255, 255, 0.5); | |
| transition: var(--transition); | |
| padding-bottom: 2px; | |
| } | |
| .header-container a:hover { | |
| border-color: white; | |
| } | |