Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +33 -0
static/styles.css
CHANGED
@@ -10,6 +10,39 @@ body {
|
|
10 |
overflow: auto;
|
11 |
}
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
.chat-container {
|
14 |
width: 100%;
|
15 |
max-width: 400px;
|
|
|
10 |
overflow: auto;
|
11 |
}
|
12 |
|
13 |
+
/* Existing CSS remains the same until new sections */
|
14 |
+
|
15 |
+
/* Popup styling */
|
16 |
+
.popup {
|
17 |
+
display: none;
|
18 |
+
position: fixed;
|
19 |
+
top: 50%;
|
20 |
+
left: 50%;
|
21 |
+
transform: translate(-50%, -50%);
|
22 |
+
background: white;
|
23 |
+
padding: 20px;
|
24 |
+
border: 1px solid #ccc;
|
25 |
+
border-radius: 5px;
|
26 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
27 |
+
z-index: 1000;
|
28 |
+
max-height: 80vh;
|
29 |
+
overflow-y: auto;
|
30 |
+
}
|
31 |
+
|
32 |
+
.popup-content {
|
33 |
+
max-width: 300px;
|
34 |
+
}
|
35 |
+
|
36 |
+
.close-btn {
|
37 |
+
position: absolute;
|
38 |
+
top: 10px;
|
39 |
+
right: 10px;
|
40 |
+
cursor: pointer;
|
41 |
+
font-size: 20px;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* Existing media queries remain the same */
|
45 |
+
|
46 |
.chat-container {
|
47 |
width: 100%;
|
48 |
max-width: 400px;
|