summaryrefslogtreecommitdiffstats
path: root/assets/css/components/footer.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/components/footer.css')
-rw-r--r--assets/css/components/footer.css64
1 files changed, 62 insertions, 2 deletions
diff --git a/assets/css/components/footer.css b/assets/css/components/footer.css
index abe2b5a..17946ec 100644
--- a/assets/css/components/footer.css
+++ b/assets/css/components/footer.css
@@ -1,4 +1,64 @@
+/* footer.css */
footer {
- border-top: 1px solid #222;
- margin-top: 1rem;
+ background: var(--bg2);
+ border-top: 1px solid var(--border);
+ margin-top: var(--gap-xl);
+ padding: 2rem 0 1rem;
+ font-size: 0.85rem;
+}
+
+.footer-container {
+ max-width: var(--container-max);
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ text-align: center;
+ color: var(--text-dim);
+}
+
+.footer-container a {
+ color: var(--accent);
+}
+
+.footer-container a:hover {
+ color: var(--accent2);
+}
+
+.footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ flex-wrap: wrap;
+ gap: 1rem;
+ margin-bottom: 1rem;
+}
+
+.footer-nav {
+ list-style: none;
+ display: flex;
+ gap: 2rem;
+ margin: 0;
+}
+
+.footer-nav a {
+ font-family: var(--font-mono);
+ font-size: 0.75rem;
+ text-transform: uppercase;
+ letter-spacing: 0.08em;
+}
+
+.footer-copyright {
+ color: var(--muted);
+ font-family: var(--font-mono);
+ font-size: 0.75rem;
+}
+
+@media (max-width: 600px) {
+ .footer-content {
+ flex-direction: column;
+ }
+
+ .footer-nav {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
}