Spaces:
Running
Running
| /* 👻 GhostPack Custom Styles 😈 */ | |
| body { | |
| background-color: #0a0a0a; | |
| color: #e0e0e0; | |
| font-family: 'Roboto', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .navbar { | |
| background: linear-gradient(90deg, #1c2526, #2e3b3e) ; | |
| box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); | |
| } | |
| .navbar-brand { | |
| font-weight: bold; | |
| font-size: 1.8rem; | |
| color: #00ffcc ; | |
| text-shadow: 0 0 10px #00ffcc; | |
| } | |
| .nav-link { | |
| color: #00ffcc ; | |
| transition: color 0.3s; | |
| } | |
| .nav-link:hover { | |
| color: #00cc99 ; | |
| } | |
| .hero-section { | |
| background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://huggingface.co/spaces/ghostai1/GhostPack/resolve/main/hero-bg.jpg'); | |
| background-size: cover; | |
| background-position: center; | |
| height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| text-shadow: 0 0 15px rgba(0, 255, 204, 0.5); | |
| } | |
| .bg-dark { | |
| background: linear-gradient(180deg, #1c2526, #121212) ; | |
| } | |
| .bg-ghost { | |
| background: #2e3b3e ; | |
| border: 1px solid #00ffcc; | |
| box-shadow: 0 0 15px rgba(0, 255, 204, 0.3); | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| } | |
| .bg-ghost:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 0 25px rgba(0, 255, 204, 0.5); | |
| } | |
| .btn-ghost { | |
| background: linear-gradient(45deg, #00ffcc, #00cc99); | |
| border: none; | |
| color: #0a0a0a; | |
| font-weight: bold; | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| } | |
| .btn-ghost:hover { | |
| transform: scale(1.05); | |
| box-shadow: 0 0 15px #00ffcc; | |
| color: #0a0a0a; | |
| } | |
| .btn-outline-ghost { | |
| border-color: #00ffcc; | |
| color: #00ffcc; | |
| transition: background 0.3s, color 0.3s; | |
| } | |
| .btn-outline-ghost:hover { | |
| background: #00ffcc; | |
| color: #0a0a0a; | |
| } | |
| pre { | |
| background: #1c2526; | |
| padding: 15px; | |
| border-radius: 8px; | |
| color: #00ffcc; | |
| box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); | |
| } | |
| .ghost-animation { | |
| animation: ghostFloat 3s ease-in-out infinite; | |
| } | |
| @keyframes ghostFloat { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-10px); } | |
| } | |
| .bg-ghost-black { | |
| background: #0a0a0a ; | |
| } |