codeboosterstech's picture
Upload 9 files
9fbf50e verified
raw
history blame
1.24 kB
:root {
--primary-color: #FFD700; /* Gold/Yellow */
--secondary-color: #1a1a1a; /* Dark Gray/Black */
--text-color: #333333;
--bg-color: #f4f4f4;
}
body {
background-color: var(--bg-color);
font-family: 'Roboto', sans-serif;
}
gradio-app {
background-color: var(--bg-color) !important;
}
.gradio-container {
max-width: 1200px !important;
}
/* Customizing Buttons */
button.primary {
background-color: var(--primary-color) !important;
color: var(--secondary-color) !important;
font-weight: bold !important;
border: none !important;
transition: transform 0.1s;
}
button.primary:hover {
transform: scale(1.02);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Header Styling */
#header-title {
text-align: center;
color: var(--secondary-color);
margin-bottom: 20px;
}
#header-title h1 {
font-size: 2.5rem;
border-bottom: 4px solid var(--primary-color);
display: inline-block;
padding-bottom: 5px;
}
/* Panel Styling */
.panel-container {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
border-top: 5px solid var(--primary-color);
}