28 lines
595 B
CSS
28 lines
595 B
CSS
body {
|
|
background-color: transparent;
|
|
color: #e0e0e0;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-message {
|
|
padding: 6px 10px;
|
|
background-color: rgba(26, 26, 46, 0.7); /* Dark blue/purple transparent background */
|
|
border-radius: 6px;
|
|
border: 1px solid rgba(127, 90, 240, 0.3);
|
|
}
|
|
|
|
.username {
|
|
font-weight: 800;
|
|
color: #a970ff; /* Twitch-like purple */
|
|
} |