GhostPack / style.css
ghostai1's picture
Create style.css
6fe1404 verified
raw
history blame
922 Bytes
/* Custom styles for GhostPack */
body {
background-color: #121212;
color: #ffffff;
font-family: 'Arial', sans-serif;
}
.hero-section {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 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;
}
.navbar {
background-color: #1c2526 !important;
}
.navbar-brand, .nav-link {
color: #00d4ff !important;
}
.card {
transition: transform 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.btn-primary {
background-color: #00d4ff;
border-color: #00d4ff;
}
.btn-primary:hover {
background-color: #00b0cc;
border-color: #00b0cc;
}
pre {
background-color: #1c2526;
padding: 15px;
border-radius: 5px;
color: #00d4ff;
}