soapbox/app/styles/footer.scss

75 wiersze
1.4 KiB
SCSS
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
.public-layout {
.footer {
display: flex;
padding: 40px 0;
font-size: 12px;
justify-content: center;
align-items: center;
margin-top: auto;
2020-06-01 00:22:08 +00:00
color: #fff;
background-color: rgba(0, 0, 0, 0.15);
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
@media screen and (max-width: 1024px) {
2020-03-27 20:59:38 +00:00
padding: 40px 20px;
}
.footer-container {
display: flex;
2022-07-06 15:13:34 +00:00
width: 1280px;
2020-03-27 20:59:38 +00:00
align-items: center;
2022-03-21 18:09:01 +00:00
padding: 0 20px;
flex-direction: column-reverse;
justify-content: center;
2020-03-27 20:59:38 +00:00
}
h4 {
text-transform: uppercase;
font-weight: 700;
margin-bottom: 8px;
2020-06-07 03:55:00 +00:00
color: var(--primary-text-color--faint);
2020-03-27 20:59:38 +00:00
font-size: 1.6rem;
line-height: 1.5;
a {
color: inherit;
text-decoration: none;
}
}
.copyright {
2022-03-21 18:09:01 +00:00
margin: 0 auto auto;
text-align: center;
2020-03-27 20:59:38 +00:00
span {
font-size: 1.3rem;
font-weight: 500;
line-height: 1.5;
}
}
ul {
display: flex;
flex-wrap: wrap;
2022-03-21 18:09:01 +00:00
margin: 0 auto 20px;
2020-03-27 20:59:38 +00:00
li {
a {
text-decoration: none;
2022-03-21 18:09:01 +00:00
color: $color-5-dark;
2020-03-27 20:59:38 +00:00
font-size: 1.3rem;
font-weight: 500;
line-height: 1.5;
padding: 10px 4px;
margin-left: 10px;
&:hover,
&:active,
&:focus {
text-decoration: underline;
}
}
}
}
}
}