mirror of
https://git.meshkee.com/BaloutPastry/website.git
synced 2026-08-11 22:31:01 +04:30
114 lines
1.9 KiB
CSS
114 lines
1.9 KiB
CSS
.site-footer {
|
|
margin-top: 50px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.site-footer__divider {
|
|
border: none;
|
|
border-top: 1px solid rgba(143, 65, 12, 0.15);
|
|
margin: 0 0 40px;
|
|
}
|
|
|
|
.site-footer__grid {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr 1fr 1fr;
|
|
gap: 40px;
|
|
align-items: start;
|
|
justify-content: center;
|
|
max-width: 1100px;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.site-footer__about img {
|
|
width: 65px;
|
|
height: auto;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.site-footer__about p {
|
|
color: var(--color-gray-400);
|
|
font-size: clamp(12px, 3vw, 14px);
|
|
line-height: 30px;
|
|
text-align: justify;
|
|
}
|
|
|
|
.site-footer__branch {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.site-footer__branch-title {
|
|
color: var(--color-gray-400);
|
|
font-size: clamp(15px, 3vw, 17px);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.site-footer__label {
|
|
color: var(--color-gray-400);
|
|
font-size: clamp(12px, 3vw, 15px);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.site-footer__value {
|
|
color: var(--color-primary);
|
|
font-size: clamp(14px, 3vw, 18px);
|
|
}
|
|
|
|
.site-footer__bottom {
|
|
margin-top: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.site-footer__social {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
color: var(--color-gray-300);
|
|
}
|
|
|
|
.site-footer__social a {
|
|
color: var(--color-gray-300);
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.site-footer__social a:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.site-footer__copy {
|
|
margin-top: 12px;
|
|
color: var(--color-gray-300);
|
|
font-size: clamp(12px, 3vw, 15px);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.site-footer {
|
|
margin-top: 32px;
|
|
padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
|
|
}
|
|
|
|
.site-footer__divider {
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.site-footer__grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 28px;
|
|
text-align: center;
|
|
}
|
|
|
|
.site-footer__about img {
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.site-footer__about p {
|
|
text-align: center;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.site-footer__branch {
|
|
align-items: center;
|
|
}
|
|
}
|