-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchat.css
44 lines (39 loc) · 838 Bytes
/
chat.css
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
/* Style your chat interface here */
/* Example styles, you can customize as needed */
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #0a0909;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.chat-feed {
max-height: 300px;
overflow-y: auto;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 10px;
}
.input-box {
display: flex;
}
input[type="text"] {
flex-grow: 1;
padding: 5px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 5px 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}