File size: 1,019 Bytes
f17b878 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | /* Dark mode base styles */
body {
background-color: #121212; /* Deep dark background */
color: #e0e0e0; /* Light gray text */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Container styling */
.container {
max-width: 800px;
margin: auto;
padding: 20px;
}
/* Headings */
h2 {
color: #ffffff; /* White text */
}
/* Input and textarea fields */
input, textarea {
background-color: #1e1e1e; /* Dark input background */
color: #ffffff; /* White text */
border: 1px solid #444; /* Slightly lighter border */
padding: 8px;
border-radius: 4px;
}
textarea {
width: 100%;
height: 120px;
resize: vertical;
}
/* Chat area */
.chat {
background-color: #1a1a1a;
border: 1px solid #333;
padding: 10px;
height: 300px;
overflow-y: auto;
margin-bottom: 10px;
}
/* Buttons */
button {
background-color: #333;
color: #fff;
border: none;
padding: 8px 14px;
margin-right: 5px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #555;
}
|