Spaces:
Build error
Build error
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,30 +1,27 @@
|
|
| 1 |
-
#avatar-
|
| 2 |
-
width: 360px;
|
| 3 |
-
height: 360px;
|
| 4 |
-
margin: 10px auto;
|
| 5 |
display: flex;
|
| 6 |
-
|
| 7 |
align-items: center;
|
|
|
|
| 8 |
}
|
| 9 |
|
| 10 |
-
#avatar-
|
| 11 |
-
width:
|
| 12 |
-
height:
|
|
|
|
| 13 |
border-radius: 12px;
|
| 14 |
overflow: hidden;
|
| 15 |
-
background:
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
| 21 |
}
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
}
|
| 27 |
-
|
| 28 |
-
h1, h2, h3 {
|
| 29 |
-
color: #fff !important;
|
| 30 |
-
}
|
|
|
|
| 1 |
+
#avatar-wrapper {
|
|
|
|
|
|
|
|
|
|
| 2 |
display: flex;
|
| 3 |
+
flex-direction: column;
|
| 4 |
align-items: center;
|
| 5 |
+
justify-content: center;
|
| 6 |
}
|
| 7 |
|
| 8 |
+
#avatar-container {
|
| 9 |
+
width: 512px;
|
| 10 |
+
height: 512px;
|
| 11 |
+
position: relative;
|
| 12 |
border-radius: 12px;
|
| 13 |
overflow: hidden;
|
| 14 |
+
background: linear-gradient(135deg, #ffe1f0, #d2d7ff);
|
| 15 |
+
box-shadow: 0 8px 22px rgba(0,0,0,0.15);
|
| 16 |
}
|
| 17 |
|
| 18 |
+
#avatar-canvas {
|
| 19 |
+
width: 100%;
|
| 20 |
+
height: 100%;
|
| 21 |
+
image-rendering: auto;
|
| 22 |
}
|
| 23 |
|
| 24 |
+
audio {
|
| 25 |
+
margin-top: 12px;
|
| 26 |
+
width: 300px;
|
| 27 |
}
|
|
|
|
|
|
|
|
|
|
|
|