File size: 7,608 Bytes
fcf8749 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | import streamlit as st
from pathlib import Path
def load_css():
"""Load all CSS files and inject into Streamlit app"""
# Main CSS with animations
main_css = """
<style>
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* Global Styles */
* {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* --- FIX: Do NOT hide header completely, or you lose the sidebar toggle --- */
/* Hide only specific Streamlit branding elements */
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
/* Ensure header background is transparent/clean if visible */
header[data-testid="stHeader"] {
background: transparent;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* ==================== FEATURE CARDS ==================== */
.feature-card {
background: #ffffff;
padding: 35px 25px;
border-radius: 18px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
margin: 16px 0;
min-height: 340px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
text-align: center;
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 28px rgba(102, 126, 234, 0.15);
border-color: #667eea;
}
.feature-card h3 {
color: #667eea !important;
font-weight: 700;
font-size: 20px;
line-height: 1.3;
margin: 15px 0;
}
.feature-card p {
color: #555 !important;
line-height: 1.7;
font-size: 15px;
margin: 0;
}
/* ==================== TESTIMONIAL CARDS ==================== */
.testimonial-card {
background: #f8f9fa;
padding: 30px;
border-radius: 20px;
text-align: center;
min-height: 280px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-left: 5px solid #667eea;
transition: all 0.3s ease;
margin: 10px 0;
}
.testimonial-card:hover {
background: white;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transform: translateY(-5px);
}
/* ==================== SIDEBAR STYLING ==================== */
[data-testid="stSidebar"] {
background: linear-gradient(180deg, #667eea 0%, #764ba2 100%) !important;
}
/* Sidebar Text Color Fix */
[data-testid="stSidebar"] * {
color: white !important;
}
/* Navigation Links */
[data-testid="stSidebarNav"] a {
color: white !important;
background: rgba(255, 255, 255, 0.1) !important;
border-radius: 10px !important;
padding: 10px 15px !important;
transition: all 0.2s ease !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
margin-bottom: 5px !important;
}
[data-testid="stSidebarNav"] a:hover {
background: rgba(255, 255, 255, 0.2) !important;
transform: translateX(5px) !important;
}
/* Active Link Styling */
[data-testid="stSidebarNav"] a[aria-current="page"] {
background: white !important;
color: #667eea !important;
font-weight: 600 !important;
box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}
/* Active Link Text Color Override */
[data-testid="stSidebarNav"] a[aria-current="page"] span {
color: #667eea !important;
}
/* Sidebar Headers */
[data-testid="stSidebar"] h1, [data-testid="stSidebar"] h2, [data-testid="stSidebar"] h3 {
color: white !important;
}
/* Sidebar Toggle Button (The arrow >) */
button[kind="header"] {
background: transparent !important;
color: #333 !important; /* Make toggle visible on white bg */
}
/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
from { opacity: 0; transform: translateX(-50px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
from { opacity: 0; transform: translateX(50px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
/* ==================== HERO SECTION ==================== */
.hero-section {
animation: fadeIn 1s ease-out;
padding: 60px 20px;
text-align: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.hero-title {
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
animation: slideInLeft 0.8s ease-out;
}
.hero-subtitle {
font-size: 18px;
font-weight: 400;
opacity: 0.95;
animation: slideInRight 0.8s ease-out;
}
/* ==================== BUTTONS ==================== */
.stButton > button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 12px;
padding: 12px 30px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
width: 100%;
}
.stButton > button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}
/* Primary (Red/Pink) Buttons */
.stButton > button[kind="primary"] {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
/* ==================== INFO BOXES ==================== */
.info-box { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); padding: 20px; border-radius: 15px; color: white; margin: 20px 0; animation: fadeIn 0.8s ease-out; }
.success-box { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); padding: 20px; border-radius: 15px; color: white; margin: 20px 0; animation: fadeIn 0.8s ease-out; }
.warning-box { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); padding: 20px; border-radius: 15px; color: white; margin: 20px 0; animation: fadeIn 0.8s ease-out; }
/* ==================== INPUTS ==================== */
.stTextInput > div > div > input, .stTextArea > div > div > textarea, .stSelectbox > div > div > select {
border-radius: 10px; border: 2px solid #e0e0e0; padding: 10px 15px; transition: all 0.3s ease;
}
.stTextInput > div > div > input:focus, .stTextArea > div > div > textarea:focus {
border-color: #667eea; box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
.hero-title { font-size: 32px; }
.hero-subtitle { font-size: 16px; }
.feature-card { padding: 20px; min-height: auto; }
}
</style>
"""
st.markdown(main_css, unsafe_allow_html=True)
|