Spaces:
Running
Running
Commit
·
97aecd4
1
Parent(s):
8ebffea
Design Update
Browse files- content.json +3 -7
- styles.css +54 -4
content.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"title": "PylarAI 3rd Party License",
|
| 3 |
"version": "Version 1.0 - December 2025",
|
| 4 |
-
"subtitle": "Software License Agreement focused on strict third-party compliance, transparent attribution, and responsible integration
|
| 5 |
"meta": "SOFTWARE LICENSE AGREEMENT / THIRD-PARTY COMPLIANCE",
|
| 6 |
"badge": "PYLARAI 3RD PARTY LICENSE",
|
| 7 |
"sectionLabel": "Overview",
|
|
@@ -80,10 +80,6 @@
|
|
| 80 |
{
|
| 81 |
"type": "avoid",
|
| 82 |
"text": "No trademark removal"
|
| 83 |
-
},
|
| 84 |
-
{
|
| 85 |
-
"type": "avoid",
|
| 86 |
-
"text": "No commercial distribution"
|
| 87 |
}
|
| 88 |
]
|
| 89 |
},
|
|
@@ -104,13 +100,13 @@
|
|
| 104 |
],
|
| 105 |
[
|
| 106 |
"Jurisdiction",
|
| 107 |
-
"Global
|
| 108 |
]
|
| 109 |
]
|
| 110 |
},
|
| 111 |
"hint": {
|
| 112 |
"title": "License Validity",
|
| 113 |
-
"text": "
|
| 114 |
}
|
| 115 |
}
|
| 116 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"title": "PylarAI 3rd Party License",
|
| 3 |
"version": "Version 1.0 - December 2025",
|
| 4 |
+
"subtitle": "Software License Agreement focused on strict third-party compliance, transparent attribution, and responsible integration.",
|
| 5 |
"meta": "SOFTWARE LICENSE AGREEMENT / THIRD-PARTY COMPLIANCE",
|
| 6 |
"badge": "PYLARAI 3RD PARTY LICENSE",
|
| 7 |
"sectionLabel": "Overview",
|
|
|
|
| 80 |
{
|
| 81 |
"type": "avoid",
|
| 82 |
"text": "No trademark removal"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
}
|
| 84 |
]
|
| 85 |
},
|
|
|
|
| 100 |
],
|
| 101 |
[
|
| 102 |
"Jurisdiction",
|
| 103 |
+
"Global"
|
| 104 |
]
|
| 105 |
]
|
| 106 |
},
|
| 107 |
"hint": {
|
| 108 |
"title": "License Validity",
|
| 109 |
+
"text": "Always link to source URL below"
|
| 110 |
}
|
| 111 |
}
|
| 112 |
}
|
styles.css
CHANGED
|
@@ -290,15 +290,42 @@ a:hover {
|
|
| 290 |
border-bottom-color: var(--accent);
|
| 291 |
}
|
| 292 |
|
|
|
|
| 293 |
.source-block {
|
| 294 |
-
margin-top:
|
| 295 |
-
|
| 296 |
-
padding: 8px 10px;
|
| 297 |
border-radius: var(--radius-sm);
|
| 298 |
background: var(--code-bg);
|
| 299 |
-
border: 1px solid rgba(255, 255, 255, 0.
|
| 300 |
color: var(--text-muted);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
word-break: break-all;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 302 |
}
|
| 303 |
|
| 304 |
/* Responsive */
|
|
@@ -308,6 +335,18 @@ a:hover {
|
|
| 308 |
}
|
| 309 |
}
|
| 310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 311 |
@media (max-width: 900px) {
|
| 312 |
body {
|
| 313 |
padding: 16px 10px;
|
|
@@ -317,6 +356,17 @@ a:hover {
|
|
| 317 |
padding: 20px 16px 18px;
|
| 318 |
}
|
| 319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 320 |
main {
|
| 321 |
grid-template-columns: minmax(0, 1fr);
|
| 322 |
}
|
|
|
|
| 290 |
border-bottom-color: var(--accent);
|
| 291 |
}
|
| 292 |
|
| 293 |
+
/* FIXED Source Block - FULL RESPONSIVE */
|
| 294 |
.source-block {
|
| 295 |
+
margin-top: 20px;
|
| 296 |
+
padding: 12px 16px;
|
|
|
|
| 297 |
border-radius: var(--radius-sm);
|
| 298 |
background: var(--code-bg);
|
| 299 |
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
| 300 |
color: var(--text-muted);
|
| 301 |
+
font-family: monospace;
|
| 302 |
+
font-size: 13px;
|
| 303 |
+
display: flex;
|
| 304 |
+
flex-direction: column;
|
| 305 |
+
gap: 6px;
|
| 306 |
+
}
|
| 307 |
+
|
| 308 |
+
.source-block strong {
|
| 309 |
+
font-weight: 600;
|
| 310 |
+
color: var(--text-main);
|
| 311 |
+
font-size: 12px;
|
| 312 |
+
text-transform: uppercase;
|
| 313 |
+
letter-spacing: 0.1em;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
.source-block a {
|
| 317 |
+
color: var(--accent) !important;
|
| 318 |
+
text-decoration: none;
|
| 319 |
+
border-bottom: 1px solid rgba(230, 57, 70, 0.4);
|
| 320 |
+
font-size: 12px;
|
| 321 |
+
padding: 4px 0;
|
| 322 |
word-break: break-all;
|
| 323 |
+
display: block;
|
| 324 |
+
line-height: 1.4;
|
| 325 |
+
}
|
| 326 |
+
|
| 327 |
+
.source-block a:hover {
|
| 328 |
+
border-bottom-color: var(--accent) !important;
|
| 329 |
}
|
| 330 |
|
| 331 |
/* Responsive */
|
|
|
|
| 335 |
}
|
| 336 |
}
|
| 337 |
|
| 338 |
+
/* Very small screens */
|
| 339 |
+
@media (max-width: 480px) {
|
| 340 |
+
.source-block {
|
| 341 |
+
padding: 20px;
|
| 342 |
+
margin-top: 28px;
|
| 343 |
+
}
|
| 344 |
+
|
| 345 |
+
.source-block strong {
|
| 346 |
+
font-size: 13px;
|
| 347 |
+
}
|
| 348 |
+
}
|
| 349 |
+
|
| 350 |
@media (max-width: 900px) {
|
| 351 |
body {
|
| 352 |
padding: 16px 10px;
|
|
|
|
| 356 |
padding: 20px 16px 18px;
|
| 357 |
}
|
| 358 |
|
| 359 |
+
.source-block {
|
| 360 |
+
margin-top: 24px;
|
| 361 |
+
padding: 16px 20px;
|
| 362 |
+
gap: 8px;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
.source-block a {
|
| 366 |
+
font-size: 13px;
|
| 367 |
+
padding: 6px 0;
|
| 368 |
+
}
|
| 369 |
+
|
| 370 |
main {
|
| 371 |
grid-template-columns: minmax(0, 1fr);
|
| 372 |
}
|