Landing/src/components/footer/footer.style.scss
katherineus 6568fcfce0 test
2022-04-20 15:46:53 +03:00

68 lines
1.1 KiB
SCSS

@use "../../assets/stylesheets/abstracts/mixins" as *;
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;
&.mobile {
display: none;
}
}
}
@include for-mobile {
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;
}
}
}
}
}