-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathliveserver.html
More file actions
158 lines (158 loc) · 4.52 KB
/
liveserver.html
File metadata and controls
158 lines (158 loc) · 4.52 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oscar Wilde WhatsApp Chat</title>
<style>
body {
background: #111;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: 'Helvetica Neue', sans-serif;
}
.iphone {
width: 375px;
height: 812px;
border: 16px solid #000;
border-radius: 36px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
background: #fff;
position: relative;
animation: vibrate 0.2s ease-in-out 4 alternate;
}
@keyframes vibrate {
0% { transform: translate(0); }
25% { transform: translate(2px, 1px); }
50% { transform: translate(-2px, -1px); }
75% { transform: translate(2px, -1px); }
100% { transform: translate(-2px, 1px); }
}
.iphone::before {
content: "";
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 5px;
background: #ccc;
border-radius: 10px;
}
.screen {
width: 100%;
height: 100%;
overflow-y: auto;
background-color: #e5ddd5;
padding: 60px 16px 80px;
box-sizing: border-box;
position: relative;
}
.header {
position: absolute;
top: 0;
width: 100%;
background-color: #075e54;
color: white;
padding: 12px 16px;
box-sizing: border-box;
font-weight: bold;
font-size: 18px;
}
.message {
margin: 10px 0;
max-width: 75%;
padding: 10px 14px;
border-radius: 10px;
font-size: 15px;
position: relative;
}
.me {
background-color: #dcf8c6;
align-self: flex-end;
margin-left: auto;
}
.bot {
background-color: white;
align-self: flex-start;
margin-right: auto;
}
.timestamp {
font-size: 11px;
color: #555;
text-align: right;
margin-top: 4px;
}
.chat-container {
display: flex;
flex-direction: column;
}
.input-bar {
position: absolute;
bottom: 0;
width: 100%;
background: white;
border-top: 1px solid #ccc;
padding: 10px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
}
.input-bar input {
width: 85%;
padding: 8px 12px;
border-radius: 20px;
border: 1px solid #ccc;
}
.input-bar button {
background: #075e54;
color: white;
border: none;
padding: 8px 12px;
border-radius: 50%;
cursor: pointer;
}
</style>
</head>
<body>
<div class="iphone">
<div class="screen">
<div class="header">Oscar Wilde Chat</div>
<div class="chat-container">
<div class="message me">
cut to the chase: why does oscar wilde consider imitative art the sort of a lower kind? hailing music as the only non-imitative art left? be brief! does recursion play a role (i'm thinking the octave x 7 on a piano), etc
<div class="timestamp">19:12</div>
</div>
<div class="message bot">
Wilde dismisses imitative art because it mirrors the external world rather than generating new aesthetic realities. He believed art should be autonomous, not a copy of life.
<div class="timestamp">19:13</div>
</div>
<div class="message bot">
Music, to him, is pure form: it doesn’t describe, it *is*. Its value lies in its internal logic—abstract, recursive, and self-contained.
<div class="timestamp">19:14</div>
</div>
<div class="message bot">
Yes, recursion matters. The octave cycle on a piano, with its fractal-like repetition, models music’s non-mimetic, self-referential beauty. Wilde sees this as art at its highest: generative, not reflective.
<div class="timestamp">19:14</div>
</div>
<div class="message bot">
“All art is quite useless”—except music, which is gloriously, recursively useless.
<div class="timestamp">19:15</div>
</div>
<div class="message bot">
Really, imitating reality? One might as well paint a mirror and call it genius.
<div class="timestamp">19:15</div>
</div>
</div>
<div class="input-bar">
<input type="text" placeholder="Type a message" disabled>
<button>►</button>
</div>
</div>
</div>
</body>
</html>