-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (48 loc) · 1.03 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
#message-input {
padding: 12px;
border: none;
border-radius: 20px;
width: 75%;
font-size: 16px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}
#send-button {
background-color: #4CAF50;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 20px;
font-size: 16px;
cursor: pointer;
position: absolute;
right: 0;
bottom: 25px;
margin-left: 10px;
}
#message-input:focus {
outline: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#send-button:hover {
background-color: #3e8e41;
}
/* Responsive styles */
@media (max-width: 600px) {
#message-input {
width: 100%;
}
#send-button {
right: 0;
bottom: 25px;
padding: 5px 10px;
}
}
div {
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}