Upload light_mode_chatter_owl.css
Browse files- light_mode_chatter_owl.css +60 -0
light_mode_chatter_owl.css
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
:root {
|
| 3 |
+
--primary-color: #FFA726;
|
| 4 |
+
--text-color: #333333;
|
| 5 |
+
--bg-color: #ffffff;
|
| 6 |
+
--card-bg: #f9f9f9;
|
| 7 |
+
--border-radius: 12px;
|
| 8 |
+
--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
.gradio-container {
|
| 12 |
+
background-color: var(--bg-color);
|
| 13 |
+
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
|
| 14 |
+
color: var(--text-color);
|
| 15 |
+
padding: 1.5em;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
#header img {
|
| 19 |
+
border-radius: 50%;
|
| 20 |
+
width: 120px;
|
| 21 |
+
box-shadow: var(--shadow);
|
| 22 |
+
margin-bottom: 1em;
|
| 23 |
+
animation: float 3s ease-in-out infinite;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
h1, h2 {
|
| 27 |
+
color: var(--primary-color);
|
| 28 |
+
text-align: center;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.gr-button {
|
| 32 |
+
background-color: var(--primary-color) !important;
|
| 33 |
+
color: white !important;
|
| 34 |
+
border-radius: var(--border-radius) !important;
|
| 35 |
+
padding: 0.75em 1.5em;
|
| 36 |
+
font-weight: bold;
|
| 37 |
+
font-size: 1.1em;
|
| 38 |
+
border: none;
|
| 39 |
+
box-shadow: var(--shadow);
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.gr-textbox textarea {
|
| 43 |
+
border-radius: var(--border-radius);
|
| 44 |
+
border: 1px solid #ccc;
|
| 45 |
+
padding: 1em;
|
| 46 |
+
font-size: 1.1em;
|
| 47 |
+
background-color: var(--card-bg);
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.gr-audio label {
|
| 51 |
+
font-size: 1em;
|
| 52 |
+
font-weight: 500;
|
| 53 |
+
color: var(--primary-color);
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
@keyframes float {
|
| 57 |
+
0% { transform: translateY(0px); }
|
| 58 |
+
50% { transform: translateY(-8px); }
|
| 59 |
+
100% { transform: translateY(0px); }
|
| 60 |
+
}
|