-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.45 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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #202225;
}
.chatbot-container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
background-color: #36393f;
color: #fff;
padding: 20px;
}
.chatbot-header {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.chatbot-header h2 {
margin: 0;
font-size: 28px;
}
.chatbot-messages {
overflow-y: auto;
max-height: 90vh;
width: 100%;
}
.chatbot-message {
margin: 10px;
padding: 10px;
border-radius: 10px;
max-width: 70%;
word-wrap: break-word;
}
.chatbot-message-user {
background-color: #7289da;
align-self: flex-end;
}
.chatbot-message-bot {
background-color: #4caf50;
align-self: flex-start;
}
.chatbot-input {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.chatbot-input input[type="text"] {
padding: 10px;
border: none;
border-radius: 5px;
width: 70%;
margin-right: 10px;
}
.chatbot-input button {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #7289da;
color: #fff;
cursor: pointer;
}