Spaces:
Sleeping
Sleeping
File size: 1,244 Bytes
9fbf50e |
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 |
: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);
}
|