style.css
4.01 KB
/* ========== BASE STYLES ========== */
body {
background-color: #0a0a0a;
color: #00ff88;
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
/* ========== HEADER ========== */
header {
padding: 1.5rem 1rem;
border-bottom: 2px solid #00ff88;
background: rgba(0, 255, 136, 0.05);
}
header h1 {
font-family: 'Orbitron', sans-serif;
font-size: 3rem;
margin: 0;
letter-spacing: 2px;
color: #00ff88;
}
header p {
margin: 0.5rem 0 0;
font-size: 1.2rem;
color: #00ff88;
}
/* ========== NAVBAR ========== */
.inner-navbar {
background-color: #0f0f0f;
border-bottom: 1px solid #00ff88;
padding: 1rem 0;
}
.nav-links {
list-style: none;
display: flex;
justify-content: center;
gap: 2rem;
margin: 0;
padding: 0;
}
.nav-links a {
color: #00ff88;
text-decoration: none;
font-weight: 600;
transition: 0.2s ease;
}
.nav-links a:hover {
color: #ffffff;
text-shadow: 0 0 8px #00ff88;
}
/* ========== MAIN CONTENT ========== */
.container {
padding: 2.5rem 1rem;
max-width: 1000px;
margin: 40px auto; /* ⬅ adds space above and below */
background: rgba(0, 10, 0, 0.85);
border: 3px solid #00ff88;
border-radius: 8px;
}
.container h2 {
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
margin-bottom: 1rem;
color: #00ff88;
text-shadow: none;
}
.container p {
font-size: 1.1rem;
text-align: justify;
line-height: 1.6;
color: #b9ffc8;
}
/* ========== NEW MEMBER SECTION ========== */
.newmember {
text-align: center;
margin-top: 60px;
}
.newmember h2 {
font-family: 'Orbitron', sans-serif;
color: #00ff88;
font-size: 1.8em;
margin-bottom: 10px;
text-shadow: none;
}
.newmember p {
color: #b9ffc8;
margin-bottom: 20px;
font-size: 1.05em;
}
.small-text {
font-size: 0.9em !important; /* slightly larger */
color: #77ff77 !important;
margin-bottom: 10px !important;
text-align: center !important;
line-height: 1.4 !important;
display: block !important;
}
/* Button Group (centered alignment) */
.button-group {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 10px;
margin-bottom: 15px;
}
/* Unified Button Style */
.button {
display: inline-block;
padding: 14px 35px;
background: #00ff88;
color: #0a0a0a;
border: 2px solid #00ff88;
border-radius: 5px;
font-weight: 800;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
font-family: 'Poppins', sans-serif;
text-decoration: none;
}
.button:hover {
background: #00ff88;
transform: scale(1.05);
box-shadow: 0 0 35px #00ff88;
color: #000;
}
/* ========== POST META ========== */
.post-meta {
font-size: 0.7em;
color: #00ff88;
text-align: center;
margin: 40px auto 0 auto;
padding: 6px 18px;
border: 1.5px dashed #00ff88;
border-radius: 25px;
width: fit-content;
max-width: 90%;
box-shadow: 0 0 6px #00ff88;
font-family: 'Poppins', sans-serif;
letter-spacing: 1.2px;
font-weight: 600;
text-transform: uppercase;
user-select: none;
}
/* ========== FOOTER ========== */
footer {
background: #111;
color: #00ff88;
padding: 1.5rem 0;
border-top: 1px solid #00ff88;
font-size: 0.9rem;
}
/* ========== POPUP ========== */
.popup {
position: fixed;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
background: #00ff88;
color: #0a0a0a;
padding: 12px 30px;
border-radius: 25px;
font-weight: 700;
box-shadow: 0 0 25px #00ff88;
opacity: 0;
transition: opacity 0.4s ease, bottom 0.4s ease;
z-index: 9999;
}
.popup.show {
opacity: 1;
bottom: 60px;
}