-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (63 loc) · 1.11 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#header{
text-align: center;
}
#header h4{
font-weight: normal;
}
#chat-container {
width: 80%;
margin: 20px auto;
border: 1px solid #ccc;
padding: 10px;
}
#chat-log {
max-height: 400px;
overflow-y: scroll;
margin-bottom: 10px;
padding: 5px;
}
#chat-input {
display: flex;
justify-content: space-between;
}
textarea#user-input {
width: 80%;
}
button#submit-btn {
width: 15%;
}
button#download-log {
display: block;
margin: 20px auto;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #4caf50;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button#download-log:hover {
background-color: #3e8e41;
}
button#clear-log {
display: block;
margin-right: 50px;
margin-left: auto;
padding: 10px 20px;
}
.bot, .user {
margin-bottom: 5px;
}
.bot {
color: #1e90ff;
}
.user {
color: #32cd32;
}