24 lines
626 B
CSS
24 lines
626 B
CSS
body {
|
|
background-color: transparent;
|
|
color: #e6edf3; /* Light text for dark backgrounds */
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 10px;
|
|
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
|
|
}
|
|
.chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
.chat-message {
|
|
padding: 4px 8px;
|
|
background-color: rgba(22, 27, 34, 0.6); /* Semi-transparent dark background */
|
|
border-radius: 4px;
|
|
border-left: 3px solid #9146FF; /* Twitch purple accent */
|
|
}
|
|
.username {
|
|
font-weight: 800;
|
|
color: #a970ff; /* Lighter purple for usernames */
|
|
} |