Python_Project_2 / style.css
rohan965's picture
Update style.css
d8d19cc verified
/* ===============================
CLEAN WHITE + BLUE THEME
=============================== */
/* Page background */
body {
background: linear-gradient(135deg, #eef3fb, #dce8f8);
}
/* Main app container */
.gradio-container {
background-color: white !important;
border-radius: 20px !important;
padding: 24px !important;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
/* Headings */
h1 {
color: #1e3a8a !important;
}
h2, h3 {
color: #1f2937 !important;
}
/* Tabs */
button[role="tab"] {
border-radius: 12px !important;
font-weight: 600 !important;
border: none !important;
}
button[role="tab"][aria-selected="true"] {
background-color: #2563eb !important;
color: white !important;
}
/* Buttons */
button {
border-radius: 12px !important;
font-weight: 600 !important;
border: none !important;
}
button.primary {
background-color: #2563eb !important;
color: white !important;
}
button:hover {
opacity: 0.92;
}
/* Panels / boxes */
.gr-box, .gr-panel {
border-radius: 16px !important;
border: 1px solid #e5e7eb !important;
}
/* JSON + Logs */
textarea, .json-output {
border-radius: 12px !important;
border: 1px solid #e5e7eb !important;
}
/* DataFrames */
.gr-dataframe {
border-radius: 12px !important;
border: 1px solid #e5e7eb !important;
}
.gr-dataframe th {
background-color: #f3f4f6 !important;
}