Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -22,20 +22,27 @@ body {
|
|
| 22 |
flex-direction: column;
|
| 23 |
align-items: center;
|
| 24 |
padding: 10px 0;
|
|
|
|
| 25 |
}
|
| 26 |
-
.prompt-icon {
|
| 27 |
-
margin-top: 100px;
|
| 28 |
cursor: pointer;
|
| 29 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
-
.prompt-icon img {
|
| 32 |
-
width:
|
| 33 |
-
height:
|
| 34 |
-
|
| 35 |
}
|
| 36 |
-
.prompt-icon
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
font-size: 12px;
|
| 38 |
-
display: block;
|
| 39 |
}
|
| 40 |
|
| 41 |
/* Main content styling */
|
|
@@ -145,38 +152,36 @@ body {
|
|
| 145 |
display: none;
|
| 146 |
z-index: 20;
|
| 147 |
}
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
margin-bottom: 5px;
|
| 162 |
-
}
|
| 163 |
-
.response-box a {
|
| 164 |
-
color: #007bff;
|
| 165 |
-
text-decoration: none;
|
| 166 |
}
|
| 167 |
-
.
|
| 168 |
-
|
|
|
|
|
|
|
| 169 |
}
|
| 170 |
-
.
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
}
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
.response-box .agent-name {
|
| 179 |
-
font-weight: bold;
|
| 180 |
-
font-size: 1.1em;
|
| 181 |
-
color: #007bff;
|
| 182 |
}
|
|
|
|
| 22 |
flex-direction: column;
|
| 23 |
align-items: center;
|
| 24 |
padding: 10px 0;
|
| 25 |
+
gap: 20px;
|
| 26 |
}
|
| 27 |
+
.prompt-icon, .video-icon {
|
|
|
|
| 28 |
cursor: pointer;
|
| 29 |
text-align: center;
|
| 30 |
+
display: flex;
|
| 31 |
+
flex-direction: column;
|
| 32 |
+
align-items: center;
|
| 33 |
+
gap: 5px;
|
| 34 |
}
|
| 35 |
+
.prompt-icon img, .video-icon img {
|
| 36 |
+
width: 36px;
|
| 37 |
+
height: 36px;
|
| 38 |
+
transition: transform 0.2s ease, filter 0.2s ease;
|
| 39 |
}
|
| 40 |
+
.prompt-icon img:hover, .video-icon img:hover {
|
| 41 |
+
transform: scale(1.2);
|
| 42 |
+
filter: brightness(1.2);
|
| 43 |
+
}
|
| 44 |
+
.prompt-icon span, .video-icon span {
|
| 45 |
font-size: 12px;
|
|
|
|
| 46 |
}
|
| 47 |
|
| 48 |
/* Main content styling */
|
|
|
|
| 152 |
display: none;
|
| 153 |
z-index: 20;
|
| 154 |
}
|
| 155 |
+
|
| 156 |
+
/* Video overlay */
|
| 157 |
+
.video-overlay {
|
| 158 |
+
position: fixed;
|
| 159 |
+
top: 0;
|
| 160 |
+
left: 0;
|
| 161 |
+
width: 100%;
|
| 162 |
+
height: 100%;
|
| 163 |
+
background-color: rgba(0, 0, 0, 0.8);
|
| 164 |
+
display: flex;
|
| 165 |
+
justify-content: center;
|
| 166 |
+
align-items: center;
|
| 167 |
+
z-index: 30;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
}
|
| 169 |
+
.video-overlay iframe {
|
| 170 |
+
width: 80%;
|
| 171 |
+
height: 80%;
|
| 172 |
+
border: none;
|
| 173 |
}
|
| 174 |
+
.video-overlay .close-button {
|
| 175 |
+
position: absolute;
|
| 176 |
+
top: 20px;
|
| 177 |
+
right: 20px;
|
| 178 |
+
font-size: 24px;
|
| 179 |
+
color: white;
|
| 180 |
+
cursor: pointer;
|
| 181 |
+
background: none;
|
| 182 |
+
border: none;
|
| 183 |
+
z-index: 31;
|
| 184 |
}
|
| 185 |
+
.video-overlay .close-button:hover {
|
| 186 |
+
color: red;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
}
|