Spaces:
Runtime error
Runtime error
Create theme.css
Browse files
theme.css
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background-color: #f5f3ef; /* krem lembut */
|
| 3 |
+
font-family: 'Segoe UI', sans-serif;
|
| 4 |
+
color: #2c2c2c;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.gradio-container {
|
| 8 |
+
padding: 24px;
|
| 9 |
+
border-radius: 12px;
|
| 10 |
+
background-color: #ffffff;
|
| 11 |
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
textarea, input, .gradio-markdown {
|
| 15 |
+
background-color: #fffdf9;
|
| 16 |
+
border: 1px solid #d6cfc7;
|
| 17 |
+
border-radius: 10px;
|
| 18 |
+
padding: 12px;
|
| 19 |
+
font-size: 16px;
|
| 20 |
+
color: #2c2c2c;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.gradio-audio {
|
| 24 |
+
background-color: #e0f7fa; /* biru muda laut */
|
| 25 |
+
border-radius: 12px;
|
| 26 |
+
border: 1px solid #b2ebf2;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
button {
|
| 30 |
+
background-color: #4caf50; /* hijau daun */
|
| 31 |
+
color: white;
|
| 32 |
+
border: none;
|
| 33 |
+
border-radius: 10px;
|
| 34 |
+
padding: 12px 24px;
|
| 35 |
+
font-weight: bold;
|
| 36 |
+
cursor: pointer;
|
| 37 |
+
transition: background-color 0.3s ease;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
button:hover {
|
| 41 |
+
background-color: #388e3c;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.gradio-file {
|
| 45 |
+
background-color: #fff3e0; /* krem batik */
|
| 46 |
+
border-radius: 10px;
|
| 47 |
+
border: 1px solid #ffe0b2;
|
| 48 |
+
padding: 10px;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.gradio-textbox {
|
| 52 |
+
font-family: 'Segoe UI', sans-serif;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.gradio-markdown h2 {
|
| 56 |
+
color: #3f51b5; /* biru langit */
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.gradio-markdown p {
|
| 60 |
+
font-size: 15px;
|
| 61 |
+
line-height: 1.6;
|
| 62 |
+
}
|