Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -154,4 +154,81 @@ footer {
|
|
154 |
.modal-close-button { color: #aaa; position: absolute; top: 10px; right: 20px; font-size: 28px; font-weight: bold; }
|
155 |
.modal-close-button:hover, .modal-close-button:focus { color: black; text-decoration: none; cursor: pointer; }
|
156 |
#modalTitle { margin-top: 0; padding-top: 0; border-top: none; }
|
157 |
-
.modal-body-container { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 5px; padding: 15px; max-height: 60vh; overflow-y: auto; white-space: pre-wrap; font-family: monospace; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
.modal-close-button { color: #aaa; position: absolute; top: 10px; right: 20px; font-size: 28px; font-weight: bold; }
|
155 |
.modal-close-button:hover, .modal-close-button:focus { color: black; text-decoration: none; cursor: pointer; }
|
156 |
#modalTitle { margin-top: 0; padding-top: 0; border-top: none; }
|
157 |
+
.modal-body-container { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 5px; padding: 15px; max-height: 60vh; overflow-y: auto; white-space: pre-wrap; font-family: monospace; }
|
158 |
+
/* ... (all your existing CSS from the last step) ... */
|
159 |
+
|
160 |
+
/* NEW: Header content layout */
|
161 |
+
.header-content {
|
162 |
+
display: flex;
|
163 |
+
justify-content: center;
|
164 |
+
align-items: center;
|
165 |
+
gap: 15px;
|
166 |
+
margin-bottom: 10px;
|
167 |
+
}
|
168 |
+
|
169 |
+
/* NEW: Geometric Logo Styles */
|
170 |
+
.logo {
|
171 |
+
width: 30px;
|
172 |
+
height: 30px;
|
173 |
+
background-color: #007bff;
|
174 |
+
position: relative;
|
175 |
+
transform: rotate(45deg);
|
176 |
+
}
|
177 |
+
|
178 |
+
.logo::before,
|
179 |
+
.logo::after {
|
180 |
+
content: '';
|
181 |
+
position: absolute;
|
182 |
+
width: 100%;
|
183 |
+
height: 100%;
|
184 |
+
background-color: #0056b3;
|
185 |
+
}
|
186 |
+
|
187 |
+
.logo::before {
|
188 |
+
transform: translateX(-100%) skewY(30deg);
|
189 |
+
transform-origin: top right;
|
190 |
+
}
|
191 |
+
|
192 |
+
.logo::after {
|
193 |
+
transform: translateY(-100%) skewX(30deg);
|
194 |
+
transform-origin: bottom left;
|
195 |
+
}
|
196 |
+
|
197 |
+
/* NEW: Footer layout and link styles */
|
198 |
+
footer {
|
199 |
+
display: flex;
|
200 |
+
justify-content: space-between;
|
201 |
+
align-items: flex-end;
|
202 |
+
text-align: left; /* Align text to the left */
|
203 |
+
}
|
204 |
+
|
205 |
+
.footer-links h3 {
|
206 |
+
margin-top: 0;
|
207 |
+
margin-bottom: 10px;
|
208 |
+
font-size: 1em;
|
209 |
+
color: #333;
|
210 |
+
}
|
211 |
+
|
212 |
+
.footer-links ul {
|
213 |
+
list-style: none;
|
214 |
+
padding: 0;
|
215 |
+
margin: 0;
|
216 |
+
}
|
217 |
+
|
218 |
+
.footer-links ul li {
|
219 |
+
margin-bottom: 5px;
|
220 |
+
}
|
221 |
+
|
222 |
+
.footer-links a {
|
223 |
+
text-decoration: none;
|
224 |
+
color: #0056b3;
|
225 |
+
font-size: 0.9em;
|
226 |
+
}
|
227 |
+
|
228 |
+
.footer-links a:hover {
|
229 |
+
text-decoration: underline;
|
230 |
+
}
|
231 |
+
|
232 |
+
.footer-copyright {
|
233 |
+
text-align: right;
|
234 |
+
}
|