Landing/src/components/Footer/footer.style.css
Sergejs Kozinecs 5614ad39ca WIP: Cleaning
2026-07-29 14:31:01 +03:00

79 lines
1.2 KiB
CSS

footer {
background: radial-gradient(
62.99% 90.27% at 50% 0%,
rgba(225, 104, 154, 0.32) 0%,
rgba(141, 162, 243, 0) 65.06%
);
margin-top: 192px;
.line {
margin: 0 auto;
height: 100px;
transform: translateY(-50px);
}
.info {
margin-top: 68px;
padding-bottom: 237px;
div {
grid-row: 1/2;
&:first-child {
grid-column: 5/9;
h6 {
margin-bottom: 4px;
}
p {
margin-bottom: 24px;
}
}
&:last-child {
grid-column: 1/5;
}
}
nav {
grid-column: 9/13;
h6 {
margin-bottom: 30px;
}
a {
margin-bottom: 16px;
display: block;
width: fit-content;
@media (max-width: 767px) {
margin-left: auto;
margin-right: auto;
}
&.mobile {
display: none;
}
}
}
@media (max-width: 767px) {
padding-bottom: 110px;
justify-items: center;
div:first-child,
div:last-child,
nav {
grid-column: 1/7;
grid-row: unset;
text-align: center;
}
nav a.mobile {
display: block;
}
}
}
}