91 lines
1.4 KiB
SCSS
91 lines
1.4 KiB
SCSS
@import "../../assets/scss/globals";
|
|
|
|
|
|
.footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&__content {
|
|
display: flex;
|
|
padding: 16px;
|
|
}
|
|
|
|
h4 {
|
|
color: color(light-blue);
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
& a {
|
|
color: color(white1);
|
|
text-decoration: underline;
|
|
padding: 0.4rem 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
& p {
|
|
color: color(white1);
|
|
margin: 0;
|
|
padding: 0.4rem 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
&__info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-basis: 100%;
|
|
align-items: center;
|
|
|
|
&__block {
|
|
padding: 1rem 0;
|
|
}
|
|
}
|
|
|
|
&__contacts {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-flow: row nowrap;
|
|
font-weight: 200;
|
|
|
|
@media screen and (max-width: 600px - 1px) {
|
|
flex-flow: column nowrap;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
display: flex;
|
|
flex-flow: column;
|
|
min-width: 180px;
|
|
|
|
@media screen and (min-width: 600px) {
|
|
padding-right: 3rem;
|
|
}
|
|
}
|
|
|
|
&__links {
|
|
display: flex;
|
|
flex-flow: column;
|
|
|
|
@media screen and (max-width: 600px - 1px) {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
|
|
&__copyright {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
background-color: color(black1);
|
|
text-align: center;
|
|
justify-content: center;
|
|
font-size: 12px;
|
|
padding: 1rem 0;
|
|
|
|
p {
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
@media screen and (max-width: 600px - 1px) {
|
|
flex-flow: column nowrap;
|
|
}
|
|
}
|
|
}
|