28 lines
554 B
CSS
28 lines
554 B
CSS
body {
|
|
background-color: transparent;
|
|
color: #f0f0f0;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
|
|
}
|
|
|
|
.chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-message {
|
|
padding: 6px 10px;
|
|
background-color: rgba(10, 30, 10, 0.6);
|
|
border-radius: 6px;
|
|
border-left: 3px solid #39FF14; /* Neon green accent */
|
|
}
|
|
|
|
.username {
|
|
font-weight: 800;
|
|
color: #39FF14; /* Neon green */
|
|
} |