144 lines
2.4 KiB
CSS
144 lines
2.4 KiB
CSS
/* ================ Footer ================ */
|
|
|
|
.founds {
|
|
background-color: var(--white);
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.founds img {
|
|
max-width: 100%;
|
|
max-height: 110px;
|
|
}
|
|
|
|
footer {
|
|
background-color: var(--footer-bg);
|
|
color: var(--primary);
|
|
padding-top: 50px;
|
|
padding-bottom: 50px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.site-footer__inner {
|
|
max-width: 80%;
|
|
}
|
|
|
|
.site-footer__logo {
|
|
text-align: center;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
.site-footer__logo img {
|
|
max-width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
.site-footer__info {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.site-footer__section {
|
|
text-align: center;
|
|
}
|
|
.site-footer__section-header {
|
|
font-weight: 600;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
.site-footer__section-text {
|
|
font-size: 0.9rem;
|
|
line-height: 1.4;
|
|
margin-bottom: 10px;
|
|
}
|
|
.site-footer__section-text--featured {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.site-footer__section-icons svg {
|
|
width: 40px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.site-footer__section-icons svg:last-child {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.site-footer__copyright {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-top: 100px;
|
|
}
|
|
.site-footer__copyright-text,
|
|
.site-footer__design-text {
|
|
font-size: 0.85rem;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.founds img {
|
|
max-width: 75vw;
|
|
}
|
|
|
|
.site-footer__logo {
|
|
text-align: left;
|
|
}
|
|
|
|
.site-footer__info {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 2rem;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
.site-footer__section {
|
|
text-align: left;
|
|
}
|
|
|
|
.site-footer__copyright {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 150px;
|
|
}
|
|
.site-footer__copyright-text,
|
|
.site-footer__design-text {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.site-footer__logo img {
|
|
max-width: 350px;
|
|
}
|
|
|
|
.site-footer__section-header {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.site-footer__section-text {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.site-footer__copyright {
|
|
margin-top: 200px;
|
|
}
|
|
|
|
.site-footer__copyright-text,
|
|
.site-footer__design-text {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.shop-sidebar {
|
|
height: 800px;
|
|
padding: 50px;
|
|
border-top-right-radius: 32px;
|
|
border-bottom-right-radius: 32px;
|
|
}
|
|
|
|
.shop-products {
|
|
margin-left: 50px;
|
|
}
|
|
} |