Add footer project links
Browse files- index.html +8 -0
- styles.css +39 -0
index.html
CHANGED
|
@@ -108,6 +108,14 @@
|
|
| 108 |
<img src="https://serve.thelabsource.com/u/O8Cq1i.gif" alt="ADI animated mark" />
|
| 109 |
</div>
|
| 110 |
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
</main>
|
| 112 |
|
| 113 |
<div class="toast" id="toast" role="status" aria-live="polite">Copied</div>
|
|
|
|
| 108 |
<img src="https://serve.thelabsource.com/u/O8Cq1i.gif" alt="ADI animated mark" />
|
| 109 |
</div>
|
| 110 |
</section>
|
| 111 |
+
|
| 112 |
+
<footer class="site-footer" aria-label="Project links">
|
| 113 |
+
<p>Advanced Data Intelligence is built in theLAB orbit.</p>
|
| 114 |
+
<nav>
|
| 115 |
+
<a href="https://thelabsource.com" target="_blank" rel="noreferrer">thelabsource.com</a>
|
| 116 |
+
<a href="https://advanced-data-inteliigence.com" target="_blank" rel="noreferrer">advanced-data-inteliigence.com</a>
|
| 117 |
+
</nav>
|
| 118 |
+
</footer>
|
| 119 |
</main>
|
| 120 |
|
| 121 |
<div class="toast" id="toast" role="status" aria-live="polite">Copied</div>
|
styles.css
CHANGED
|
@@ -471,6 +471,43 @@ code {
|
|
| 471 |
bottom: 0;
|
| 472 |
}
|
| 473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 474 |
.toast {
|
| 475 |
position: fixed;
|
| 476 |
z-index: 10;
|
|
@@ -523,4 +560,6 @@ code {
|
|
| 523 |
.pipeline-art img:nth-child(1) { width: 100%; }
|
| 524 |
.pipeline-art img:nth-child(2) { width: 82%; top: 42%; }
|
| 525 |
.pipeline-art img:nth-child(3) { width: 52%; }
|
|
|
|
|
|
|
| 526 |
}
|
|
|
|
| 471 |
bottom: 0;
|
| 472 |
}
|
| 473 |
|
| 474 |
+
.site-footer {
|
| 475 |
+
width: min(1380px, calc(100vw - 44px));
|
| 476 |
+
display: flex;
|
| 477 |
+
justify-content: space-between;
|
| 478 |
+
gap: 18px;
|
| 479 |
+
align-items: center;
|
| 480 |
+
margin: 0 auto;
|
| 481 |
+
padding: 30px 0 44px;
|
| 482 |
+
border-top: 1px solid var(--line);
|
| 483 |
+
color: var(--dim);
|
| 484 |
+
}
|
| 485 |
+
|
| 486 |
+
.site-footer p {
|
| 487 |
+
margin: 0;
|
| 488 |
+
color: var(--muted);
|
| 489 |
+
}
|
| 490 |
+
|
| 491 |
+
.site-footer nav {
|
| 492 |
+
display: flex;
|
| 493 |
+
flex-wrap: wrap;
|
| 494 |
+
gap: 10px;
|
| 495 |
+
justify-content: flex-end;
|
| 496 |
+
}
|
| 497 |
+
|
| 498 |
+
.site-footer a {
|
| 499 |
+
min-height: 42px;
|
| 500 |
+
display: inline-flex;
|
| 501 |
+
align-items: center;
|
| 502 |
+
border: 1px solid var(--line);
|
| 503 |
+
border-radius: 999px;
|
| 504 |
+
background: rgba(255,255,255,0.035);
|
| 505 |
+
color: var(--text);
|
| 506 |
+
padding: 0 16px;
|
| 507 |
+
font-size: 13px;
|
| 508 |
+
font-weight: 700;
|
| 509 |
+
}
|
| 510 |
+
|
| 511 |
.toast {
|
| 512 |
position: fixed;
|
| 513 |
z-index: 10;
|
|
|
|
| 560 |
.pipeline-art img:nth-child(1) { width: 100%; }
|
| 561 |
.pipeline-art img:nth-child(2) { width: 82%; top: 42%; }
|
| 562 |
.pipeline-art img:nth-child(3) { width: 52%; }
|
| 563 |
+
.site-footer { align-items: flex-start; flex-direction: column; }
|
| 564 |
+
.site-footer nav { justify-content: flex-start; }
|
| 565 |
}
|