Spaces:
Sleeping
Sleeping
Create assets/custom.css
Browse files- assets/custom.css +26 -0
assets/custom.css
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background-color: #f9f9f9;
|
| 3 |
+
font-family: 'Cairo', sans-serif;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
h1 {
|
| 7 |
+
color: #2c3e50;
|
| 8 |
+
text-align: center;
|
| 9 |
+
margin-bottom: 10px;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.gradio-container {
|
| 13 |
+
max-width: 1200px !important;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
button.primary {
|
| 17 |
+
background-color: #6a11cb;
|
| 18 |
+
background-image: linear-gradient(315deg, #6a11cb 0%, #2575fc 74%);
|
| 19 |
+
border: none;
|
| 20 |
+
color: white;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
textarea {
|
| 24 |
+
font-size: 16px !important;
|
| 25 |
+
line-height: 1.6 !important;
|
| 26 |
+
}
|