-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandy_art.html
More file actions
88 lines (87 loc) · 2.28 KB
/
Copy pathandy_art.html
File metadata and controls
88 lines (87 loc) · 2.28 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANDY AI Art Viewer</title>
<style>
body {
margin: 0;
background: #0b1020;
color: #e5f0ff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
}
.wrap {
width: 100%;
max-width: 900px;
padding: 20px;
box-sizing: border-box;
}
.card {
background: #111933;
border: 1px solid #243055;
border-radius: 16px;
padding: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
h1 {
font-size: 22px;
margin: 0 0 12px 0;
}
p {
opacity: 0.9;
}
.viewer {
background: #000;
border-radius: 12px;
overflow: hidden;
margin-top: 12px;
padding: 8px;
}
.viewer svg {
display: block;
width: 100%;
height: auto;
background: #000;
}
.path {
margin-top: 10px;
font-size: 13px;
opacity: 0.8;
word-break: break-all;
}
</style>
</head>
<body>
<div class="wrap">
<div class="card">
<h1>ANDY AI Art Viewer</h1>
<p>Structured SVG output generated by AndyAI.</p>
<div class="viewer">
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
<rect width="100%" height="100%" fill="#0b1020"/>
<circle cx="400" cy="100" r="48" fill="#f8f3c9" opacity="0.95" />
<circle cx="60" cy="70" r="3" fill="white" />
<circle cx="120" cy="40" r="3" fill="white" />
<circle cx="220" cy="90" r="3" fill="white" />
<circle cx="310" cy="50" r="3" fill="white" />
<circle cx="470" cy="60" r="3" fill="white" />
<circle cx="520" cy="120" r="3" fill="white" />
<circle cx="150" cy="130" r="3" fill="white" />
<path d="M 20 430 C 120 420, 180 450, 300 430 S 450 390, 512 420" stroke="#5dade2" stroke-width="6" fill="none" opacity="0.85" />
<line x1="0" y1="400" x2="512" y2="400" stroke="#445566" stroke-width="3" />
<polygon points="180,360 220,300 260,320 280,290 300,310 312,350 280,372 230,376" fill="#1e1e1e" />
<polygon points="255,300 268,278 278,302" fill="#1e1e1e" />
<line x1="310" y1="345" x2="340" y2="320" stroke="#1e1e1e" stroke-width="6" />
</svg>
</div>
<div class="path">SVG: art/art_0961_wolf_moon_river_night.svg</div>
</div>
</div>
</body>
</html>