You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
647 B
CSS
43 lines
647 B
CSS
.footer {
|
|
border-top: 1px solid var(--verto-border);
|
|
background: #fff;
|
|
padding: 1.5rem 1.25rem;
|
|
}
|
|
|
|
.inner {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.logo {
|
|
margin: 0 0 0.25rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.tagline {
|
|
margin: 0;
|
|
color: var(--verto-muted);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.copy {
|
|
margin: 0;
|
|
color: var(--verto-muted);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.inner {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|