Spaces:
Paused
Paused
Create app.css
Browse files
app.css
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
+
background: url("https://huggingface.co/spaces/denisbay/GLaDOS-chat/resolve/main/wallpaperflare.com_wallpaper.jpg") no-repeat center center fixed;
|
| 5 |
+
background-size: cover;
|
| 6 |
+
font-family: "Segoe UI", "Arial", sans-serif;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.gradio-container {
|
| 10 |
+
background-color: rgba(0, 0, 0, 0.75);
|
| 11 |
+
padding: 40px;
|
| 12 |
+
border-radius: 16px;
|
| 13 |
+
max-width: 900px;
|
| 14 |
+
margin: 60px auto;
|
| 15 |
+
color: white;
|
| 16 |
+
box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
h1, h2, h3, label {
|
| 20 |
+
color: #eeeeee !important;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
button {
|
| 24 |
+
background-color: #222 !important;
|
| 25 |
+
color: #eee !important;
|
| 26 |
+
border: 1px solid #555 !important;
|
| 27 |
+
border-radius: 8px !important;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
input, textarea {
|
| 31 |
+
background-color: #111 !important;
|
| 32 |
+
color: #ddd !important;
|
| 33 |
+
border: 1px solid #333 !important;
|
| 34 |
+
border-radius: 6px !important;
|
| 35 |
+
}
|