Update index.html
Browse files- index.html +30 -2
index.html
CHANGED
@@ -363,9 +363,37 @@
|
|
363 |
.message-container strong {
|
364 |
font-weight: bold;
|
365 |
}
|
366 |
-
|
367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
<div class="container">
|
370 |
<div class="message-container"></div>
|
371 |
</div>
|
|
|
363 |
.message-container strong {
|
364 |
font-weight: bold;
|
365 |
}
|
366 |
+
.initial-message {
|
367 |
+
font-size: 18px;
|
368 |
+
color: #fff;
|
369 |
+
background-color: #4c51bf;
|
370 |
+
padding: 20px;
|
371 |
+
border-radius: 12px;
|
372 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
373 |
+
text-align: center;
|
374 |
+
position: fixed;
|
375 |
+
top: 20px;
|
376 |
+
left: 50%;
|
377 |
+
transform: translateX(-50%);
|
378 |
+
z-index: 1000;
|
379 |
+
width: 80%;
|
380 |
+
max-width: 600px;
|
381 |
+
opacity: 0;
|
382 |
+
transform: translateY(-20px) translateX(-50%);
|
383 |
+
animation: fadeIn 1s forwards;
|
384 |
+
}
|
385 |
|
386 |
+
@keyframes fadeIn {
|
387 |
+
to {
|
388 |
+
opacity: 1;
|
389 |
+
transform: translateY(0) translateX(-50%);
|
390 |
+
}
|
391 |
+
}
|
392 |
+
</style>
|
393 |
+
</head> <div class="container">
|
394 |
+
<div class="initial-message">Welcome to the real OpenAI GPT-4 Chat!</div>
|
395 |
+
<div class="message-container"></div>
|
396 |
+
</div>
|
397 |
<div class="container">
|
398 |
<div class="message-container"></div>
|
399 |
</div>
|