-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (83 loc) · 1.57 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body {
margin: 0;
padding: 0;
background: linear-gradient(to right, #c33764, #1d2671);
font-family: 'Roboto', sans-serif;
overflow-x: hidden;
}
#chat-container {
width: 100%;
max-width: 600px;
margin: 50px auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
display: flex;
flex-direction: column;
height: 80vh;
}
#chat-header {
background-color: #5b86e5;
color: #fff;
padding: 10px;
text-align: center;
font-size: 18px;
}
#chat-messages {
flex: 1;
overflow-y: auto;
padding: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.message-container {
display: flex;
margin-bottom: 15px;
padding: 10px;
border-radius: 10px;
background-color: #f0f0f0;
}
.user-pic, .chatbot-pic {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.message-content {
padding: 10px;
border-radius: 10px;
max-width: 70%;
}
#user-input {
display: flex;
align-items: center;
padding: 10px;
background-color: #eee;
}
#user-input input {
flex: 1;
padding: 8px;
margin-right: 10px;
border: none;
border-radius: 5px;
}
#user-input button {
background-color: #5b86e5;
color: #fff;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
}
#delete-messages {
background-color: #ff4d4d;
color: #fff;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
float: right;
}
#delete-messages:hover {
background-color: #cc0000;
}