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, 0 insertions, 64 deletions
diff --git a/assets/css/components/footer.css b/assets/css/components/footer.css
deleted file mode 100644
index 17946ec..0000000
--- a/assets/css/components/footer.css
+++ /dev/null
@@ -1,64 +0,0 @@
-/* footer.css */
-footer {
- 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;
- }
-}