-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathstyle.css
66 lines (57 loc) · 960 Bytes
/
style.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.chat-container {
width: 100%;
max-width: 600px;
margin: 40px auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(0,0, 0, 0.1);
display: flex;
flex-direction: column;
}
.chat-output {
flex-grow: 1;
padding: 20px;
overflow-y: auto;
max-height: 400px;
}
.chat-output p {
margin: 10px 0;
}
.user-message {
text-align: right;
font-weight: bold;
}
.bot-message {
text-align: left;
font-weight: normal;
}
.chat-input-form {
display: flex;
align-items: center;
padding: 10px;
background-color: #f0f0f0;
border-top: 1px solid #e0e0e0;
}
.chat-input {
flex-grow: 1;
border: none;
border-radius: 3px;
padding: 10px;
margin-right: 10px;
}
.chat-submit {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
font-weight: bold;
border: none;
cursor: pointer;
border-radius: 3px;
}
.chat-submit:hover {
background-color: #0056b3;
}