mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
67 lines
1023 B
CSS
67 lines
1023 B
CSS
.site-footer {
|
|
padding-top: 42px;
|
|
background: var(--paper);
|
|
}
|
|
|
|
.footer-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 40px;
|
|
padding-bottom: 38px;
|
|
}
|
|
|
|
.footer-identity {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
color: var(--ink);
|
|
font-family: var(--font-display);
|
|
font-size: 18px;
|
|
font-weight: 750;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
|
|
.footer-identity img {
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.footer-links a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
font-weight: 620;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--brand-600);
|
|
}
|
|
|
|
.footer-links svg {
|
|
width: 14px;
|
|
}
|
|
|
|
.footer-bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 20px;
|
|
padding-bottom: 26px;
|
|
border-top: 1px solid var(--line);
|
|
color: var(--ink-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.footer-bottom p {
|
|
margin: 0;
|
|
}
|