dronesplace commited on
Commit
1b31c2b
·
verified ·
1 Parent(s): c8d566f

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +16 -19
style.css CHANGED
@@ -1,30 +1,27 @@
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
- }
 
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
  }