-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (50 loc) · 974 Bytes
/
styles.css
File metadata and controls
56 lines (50 loc) · 974 Bytes
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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #800000;
}
#chatbox {
max-width: 700px;
width: 100%;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
#chatHistoryCtn {
height: 300px;
border: 1px solid #ccc;
overflow-y: auto;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
background: #ffffff;
}
#userInput {
width: 80%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 5px;
}
#sendBtn {
width: 18%;
padding: 10px;
border: none;
background: #cc0000;
color: #ffffff;
border-radius: 5px;
cursor: pointer;
}
#sendBtn:disabled {
background: #ccc;
cursor: not-allowed;
}
#sendBtn:hover:not(:disabled) {
background: #005bb5;
}