-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat.css
More file actions
83 lines (72 loc) · 1.42 KB
/
float.css
File metadata and controls
83 lines (72 loc) · 1.42 KB
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
/* Floating buttons */
.floating-buttons {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
}
/* Chat box */
.chat-box {
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
border: 1px solid #ccc;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.chat-header {
background-color: #007bff;
color: #fff;
padding: 10px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.chat-header h3 {
margin: 0;
}
.chat-messages {
max-height: 200px;
overflow-y: auto;
padding: 10px;
}
.chat-message-input {
width: calc(100% - 80px);
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px;
}
.chat-send-btn {
width: 60px;
padding: 8px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.hidden {
display: none;
}
.btn {
display: block;
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
margin-bottom: 10px;
cursor: pointer;
}
.btn:hover {
background-color: #0056b3;
}
.close-btn {
border: none;
background: none;
color: #fff;
font-size: 20px;
cursor: pointer;
}