File size: 1,426 Bytes
c2bab79 b3e65ef c2bab79 | 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 |
:root {
--primary-color: #FFA726;
--text-color: #333333;
--bg-color: #ffffff;
--card-bg: #f9f9f9;
--border-radius: 12px;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gradio-container {
background-color: var(--bg-color);
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
color: var(--text-color);
padding: 1.5em;
}
#header img {
border-radius: 50%;
width: 120px;
box-shadow: var(--shadow);
margin-bottom: 1em;
animation: float 3s ease-in-out infinite;
}
h1, h2 {
color: var(--primary-color);
text-align: center;
}
.gr-button {
background-color: var(--primary-color) !important;
color: white !important;
border-radius: var(--border-radius) !important;
padding: 0.75em 1.5em;
font-weight: bold;
font-size: 1.1em;
border: none;
box-shadow: var(--shadow);
}
.gr-textbox textarea {
border-radius: var(--border-radius);
border: 1px solid #ccc;
padding: 1em;
font-size: 1.1em;
background-color: var(--card-bg);
}
.gr-audio label {
font-size: 1em;
font-weight: 500;
color: var(--primary-color);
}
.text_area {
font-size: 16px;
line-height: 1.6;
font-family: Arial, sans-serif;
}
.high-contrast {
color: white;
background-color: black;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0px); }
}
|