-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 883 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
body {
font-family: Arial, sans-serif;
background-color: #333;
color: #fff;
}
h1 {
font-size: 2.5em;
text-align: center;
margin-top: 20px;
color: #fff;
}
#chat-history {
background-color: #444;
border: 2px solid #666;
border-radius: 5px;
padding: 10px;
margin: 20px auto;
max-width: 600px;
min-height: 300px;
overflow-y: auto;
max-height: 300px;
}
#message-form {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
#user-message {
flex: 1;
padding: 10px;
font-size: 1.2em;
border-radius: 5px;
border: none;
margin-right: 10px;
background-color: #555;
color: #fff;
}
button[type="submit"] {
padding: 10px;
font-size: 1.2em;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #0056b3;
}