Spaces:
Sleeping
Sleeping
body { | |
font-family: 'Roboto Mono', monospace; | |
background: linear-gradient(135deg, #1C2526 0%, #252C2D 100%); | |
margin: 0; | |
padding: 0; | |
color: #E0E7E8; | |
min-height: 100vh; | |
display: flex; | |
flex-direction: column; | |
} | |
/* Navbar */ | |
.navbar { | |
background: #2E3536; | |
padding: 15px 30px; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
} | |
.nav-brand { | |
font-size: 1.5rem; | |
color: #26A69A; | |
} | |
.nav-links { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
display: flex; | |
gap: 20px; | |
} | |
.nav-links li a { | |
color: #E0E7E8; | |
text-decoration: none; | |
font-weight: 500; | |
transition: color 0.3s ease; | |
} | |
.nav-links li a:hover, | |
.nav-links li a.active { | |
color: #26A69A; | |
} | |
/* Hero Section */ | |
.hero { | |
flex: 1; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
text-align: center; | |
padding: 50px 20px; | |
background: linear-gradient(135deg, rgba(28, 37, 38, 0.9), rgba(37, 44, 45, 0.9)); | |
} | |
.hero h1 { | |
font-family: 'Montserrat', sans-serif; | |
font-size: 3rem; | |
color: #E0E7E8; | |
margin: 0 0 20px 0; | |
} | |
.hero-subtitle { | |
font-size: 1.2rem; | |
color: #A0A8A9; | |
margin-bottom: 30px; | |
} | |
.cta-btn { | |
padding: 12px 24px; | |
background: #26A69A; | |
color: #E0E7E8; | |
text-decoration: none; | |
border-radius: 5px; | |
font-weight: 500; | |
transition: background 0.3s ease; | |
} | |
.cta-btn:hover { | |
background: #1E7E74; | |
} | |
/* Main Container */ | |
.container { | |
flex: 1; | |
max-width: 1000px; | |
margin: 40px auto; | |
padding: 20px; | |
text-align: center; | |
} | |
header h1, .result-card h3 { | |
font-family: 'Montserrat', sans-serif; | |
font-size: 2rem; | |
color: #E0E7E8; | |
margin-bottom: 10px; | |
} | |
.subtitle { | |
font-size: 1rem; | |
color: #A0A8A9; | |
margin-bottom: 30px; | |
} | |
.main-content { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
gap: 20px; | |
} | |
/* Custom File Upload */ | |
.custom-file-upload { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
width: 300px; | |
height: 150px; | |
padding: 20px; | |
border: 2px solid #2E3536; | |
background: #252C2D; | |
border-radius: 12px; | |
cursor: pointer; | |
transition: border-color 0.3s ease, transform 0.2s ease; | |
} | |
.custom-file-upload:hover { | |
border-color: #26A69A; | |
transform: scale(1.02); | |
} | |
.custom-file-upload .icon { | |
margin-bottom: 15px; | |
} | |
.custom-file-upload .icon svg { | |
width: 60px; | |
height: 60px; | |
fill: #26A69A; | |
} | |
.custom-file-upload .text span { | |
font-size: 1.1rem; | |
font-weight: 500; | |
color: #E0E7E8; | |
text-transform: uppercase; | |
letter-spacing: 1px; | |
} | |
.custom-file-upload input { | |
display: none; | |
} | |
/* Bouncing Particles Loader */ | |
.loader { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
width: 150px; | |
height: 150px; | |
margin: 20px auto; | |
} | |
@keyframes bounce { | |
0%, 100% { transform: translateY(36px); } | |
50% { transform: translateY(46px); } | |
} | |
@keyframes bounce2 { | |
0%, 100% { transform: translateY(46px); } | |
50% { transform: translateY(56px); } | |
} | |
@keyframes umbral { | |
0% { stop-color: #26A69A33; } | |
50% { stop-color: #26A69A88; } | |
100% { stop-color: #26A69A33; } | |
} | |
@keyframes particles { | |
0%, 100% { transform: translateY(16px); } | |
50% { transform: translateY(6px); } | |
} | |
#particles { | |
animation: particles 4s ease-in-out infinite; | |
} | |
#animatedStop { | |
animation: umbral 4s infinite; | |
} | |
#bounce { | |
animation: bounce 4s ease-in-out infinite; | |
transform: translateY(36px); | |
} | |
#bounce2 { | |
animation: bounce2 4s ease-in-out infinite; | |
transform: translateY(46px); | |
animation-delay: 0.5s; | |
} | |
/* Results Section */ | |
.results-section { | |
padding: 20px 0; | |
} | |
.results-grid { | |
display: grid; | |
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
gap: 20px; | |
} | |
.result-card { | |
background: #252C2D; | |
padding: 15px; | |
border-radius: 8px; | |
text-align: center; | |
} | |
.result-card img { | |
width: 100%; | |
max-width: 300px; | |
height: auto; | |
border-radius: 10px; | |
margin: 0 auto 10px auto; | |
display: block; | |
box-shadow: 0 0 8px rgba(0,0,0,0.3); | |
} | |
.result-card h3 { | |
font-size: 1.5rem; | |
color: #26A69A; | |
margin: 0 0 10px 0; | |
} | |
.result-card p { | |
font-size: 1rem; | |
color: #E0E7E8; | |
margin: 0; | |
} | |
.back-btn { | |
display: inline-block; | |
padding: 10px 20px; | |
background: #2E3536; | |
color: #E0E7E8; | |
text-decoration: none; | |
border-radius: 5px; | |
margin-top: 20px; | |
transition: background 0.3s ease; | |
} | |
.back-btn:hover { | |
background: #26A69A; | |
} | |
/* Error Message */ | |
.error { | |
color: #FF6B6B; | |
font-size: 1rem; | |
margin-top: 20px; | |
background-color: rgba(255, 107, 107, 0.2); | |
padding: 10px; | |
border-radius: 8px; | |
} | |
/* About Section */ | |
.about-section { | |
text-align: left; | |
padding: 20px; | |
background: #252C2D; | |
border-radius: 8px; | |
} | |
.about-section p { | |
color: #A0A8A9; | |
line-height: 1.6; | |
} | |
/* Team Section */ | |
.team-section { | |
padding: 20px 0; | |
} | |
.team-list { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
gap: 30px; | |
justify-content: center; | |
} | |
.team-card h3 { | |
font-size: 1.1rem; | |
color: #E0E7E8; | |
margin: 0; | |
} | |
.team-card .role { | |
font-size: 0.9rem; | |
color: #26A69A; | |
margin: 5px 0; | |
} | |
.team-card p { | |
font-size: 0.8rem; | |
color: #A0A8A9; | |
margin: 5px 0; | |
} | |
.edit-btn { | |
padding: 8px 16px; | |
background: #2E3536; | |
color: #E0E7E8; | |
border: none; | |
border-radius: 5px; | |
cursor: pointer; | |
transition: background 0.3s ease; | |
} | |
.edit-btn:hover { | |
background: #26A69A; | |
} | |
.edit-input { | |
width: 100%; | |
padding: 8px; | |
margin: 5px 0; | |
background: #1C2526; | |
border: 1px solid #2E3536; | |
border-radius: 5px; | |
color: #E0E7E8; | |
font-family: 'Roboto Mono', monospace; | |
} | |
/* Footer */ | |
.footer { | |
background: #2E3536; | |
padding: 15px; | |
text-align: center; | |
color: #A0A8A9; | |
font-size: 0.9rem; | |
} | |
/* Responsive Design */ | |
@media (max-width: 600px) { | |
.navbar { | |
flex-direction: column; | |
gap: 10px; | |
} | |
.nav-links { | |
flex-direction: column; | |
text-align: center; | |
} | |
.hero h1 { | |
font-size: 2rem; | |
} | |
.hero-subtitle { | |
font-size: 1rem; | |
} | |
.custom-file-upload { | |
width: 100%; | |
max-width: 300px; | |
height: 120px; | |
} | |
.custom-file-upload .icon svg { | |
width: 50px; | |
height: 50px; | |
} | |
.custom-file-upload .text span { | |
font-size: 1rem; | |
} | |
.loader svg { | |
width: 120px; | |
height: 120px; | |
} | |
.results-grid { | |
grid-template-columns: 1fr; | |
} | |
.result-card img { | |
max-width: 80%; | |
} | |
} | |