File size: 1,040 Bytes
728a216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* static/style.css */
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg,#071130,#041022);
  color: #e6eef8;
  margin: 0;
  padding: 24px;
  display:flex;
  justify-content:center;
}

main {
  width: 720px;
  max-width: 96%;
}

#avatar-area {
  display:flex;
  gap:12px;
  align-items:flex-start;
}

#avatar-img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(2,6,23,0.6);
}

#avatar-canvas {
  width: 512px;
  height: 512px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(2,6,23,0.6);
}

#controls {
  margin-top: 16px;
  display:flex;
  gap:12px;
  align-items:center;
}

#controls button {
  padding:10px 14px;
  border-radius:10px;
  border: none;
  background: #0ea5a5;
  color: #012;
  cursor:pointer;
  font-weight:600;
}

#status {
  margin-left:10px;
  opacity:0.9;
}

#reply {
  margin-top:18px;
  background: rgba(255,255,255,0.02);
  padding:12px;
  border-radius:10px;
}