-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (86 loc) · 1.52 KB
/
Copy pathstyles.css
File metadata and controls
97 lines (86 loc) · 1.52 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
font-family: 'Georgia', serif;
background-color: #f4f1ea;
color: #5d4037;
margin: 0;
padding: 0;
text-align: center;
}
header {
background: #795548;
color: white;
padding: 15px;
}
nav a {
color: white;
text-decoration: none;
margin: 15px;
font-weight: bold;
}
.chat {
margin: 20px;
padding: 20px;
background: #d7ccc8;
display: inline-block;
text-align: left;
border-radius: 10px;
}
#chat-box {
width: 90%;
height: 400px;
overflow-y: scroll;
border: 1px solid #a1887f;
background: white;
padding: 10px;
border-radius: 10px;
}
.upload-icon {
display: inline-block;
padding: 8px 12px;
background-color: #8d6e63;
color: white;
border-radius: 5px;
margin: 10px;
cursor: pointer;
}
.upload-icon:hover {
background-color: #6d4c41;
}
input, textarea {
width: 90%;
padding: 10px;
margin: 10px 0;
border: 1px solid #8d6e63;
border-radius: 5px;
}
button {
background: #6d4c41;
color: white;
padding: 10px 15px;
border: none;
border-radius: 5px;
}
/* Popover Styling */
.popover {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
display: none;
flex-direction: column;
}
.popover label {
margin-top: 10px;
}
.popover input {
width: 100%;
padding: 5px;
margin: 5px 0;
}
.hidden {
display: none;
}