Spaces:
Build error
Build error
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#avatar-container {
|
| 2 |
+
width: 360px;
|
| 3 |
+
height: 360px;
|
| 4 |
+
margin: 10px auto;
|
| 5 |
+
display: flex;
|
| 6 |
+
justify-content: center;
|
| 7 |
+
align-items: center;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
#avatar-canvas {
|
| 11 |
+
width: 100%;
|
| 12 |
+
height: 100%;
|
| 13 |
+
border-radius: 12px;
|
| 14 |
+
overflow: hidden;
|
| 15 |
+
background: transparent;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
.gradio-container {
|
| 19 |
+
max-width: 900px !important;
|
| 20 |
+
margin: auto !important;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
body {
|
| 24 |
+
background: #111;
|
| 25 |
+
color: #eee;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
h1, h2, h3 {
|
| 29 |
+
color: #fff !important;
|
| 30 |
+
}
|