eaglelandsonce commited on
Commit
d22e670
·
verified ·
1 Parent(s): c8249ee

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +44 -39
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: 32px;
33
- height: 32px;
34
- margin-bottom: 5px;
35
  }
36
- .prompt-icon span {
 
 
 
 
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
- .response-box h1, .response-box h2, .response-box h3 {
149
- color: #007bff;
150
- }
151
- .response-box p {
152
- font-size: 16px;
153
- line-height: 1.5;
154
- }
155
- .response-box ul {
156
- margin: 10px 0;
157
- padding-left: 20px;
158
- }
159
- .response-box ul li {
160
- list-style-type: disc;
161
- margin-bottom: 5px;
162
- }
163
- .response-box a {
164
- color: #007bff;
165
- text-decoration: none;
166
  }
167
- .response-box a:hover {
168
- text-decoration: underline;
 
 
169
  }
170
- .response-box code {
171
- font-family: monospace;
172
- background-color: #f0f0f0;
173
- padding: 2px 4px;
174
- border-radius: 3px;
 
 
 
 
 
175
  }
176
-
177
- /* Agent-specific styles */
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
  }