mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-07 06:37:01 +02:00
47 lines
880 B
CSS
47 lines
880 B
CSS
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
.footer {
|
|
padding: 2rem 0;
|
|
}
|
|
.footer__about {
|
|
border-bottom: 1px solid var(--color-gray-2);
|
|
color: var(--color-gray-9);
|
|
display: flex;
|
|
margin-bottom: 1rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
.footer__author {
|
|
flex: 1;
|
|
}
|
|
.footer__social {
|
|
margin-left: 0.5rem;
|
|
color: var(--color-gray-5);
|
|
}
|
|
.footer__grid {
|
|
margin-left: -1rem;
|
|
margin-right: -1rem;
|
|
}
|
|
.footer__col {
|
|
flex: 1;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
.footer__products {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.footer__product {
|
|
margin: 0.25rem 0;
|
|
}
|
|
.footer__product a {
|
|
color: var(--color-gray-5);
|
|
}
|
|
@media (min-width: 640px) {
|
|
.footer__grid {
|
|
display: flex;
|
|
}
|
|
} |