41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hacker Green Overlay</title>
|
|
<style>
|
|
body {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: #00FF41;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
font-size: 18px;
|
|
text-shadow: 0 0 5px #00FF41, 0 0 10px #00FF41;
|
|
margin: 0;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.chat-message {
|
|
margin-bottom: 8px;
|
|
animation: fadeIn 0.5s ease-in-out;
|
|
}
|
|
.username {
|
|
font-weight: bold;
|
|
}
|
|
.username::after {
|
|
content: ':~$ ';
|
|
}
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(10px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Example Message -->
|
|
<div class="chat-message">
|
|
<span class="username">system</span>
|
|
<span class="message">Hacker Green Theme Initialized.</span>
|
|
</div>
|
|
</body>
|
|
</html> |