You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/app/styles/footer.scss

75 lines
1.4 KiB

5 years ago
.public-layout {
.footer {
display: flex;
padding: 40px 0;
font-size: 12px;
justify-content: center;
align-items: center;
margin-top: auto;
color: #fff;
background-color: rgba(0, 0, 0, 0.15);
5 years ago
@media screen and (max-width: 1024px) {
5 years ago
padding: 40px 20px;
}
.footer-container {
display: flex;
3 years ago
width: 1440px;
5 years ago
align-items: center;
3 years ago
padding: 0 20px;
flex-direction: column-reverse;
justify-content: center;
5 years ago
}
h4 {
text-transform: uppercase;
font-weight: 700;
margin-bottom: 8px;
color: var(--primary-text-color--faint);
5 years ago
font-size: 1.6rem;
line-height: 1.5;
a {
color: inherit;
text-decoration: none;
}
}
.copyright {
3 years ago
margin: 0 auto auto;
text-align: center;
5 years ago
span {
font-size: 1.3rem;
font-weight: 500;
line-height: 1.5;
}
}
ul {
display: flex;
flex-wrap: wrap;
3 years ago
margin: 0 auto 20px;
5 years ago
li {
a {
text-decoration: none;
3 years ago
color: $color-5-dark;
5 years ago
font-size: 1.3rem;
font-weight: 500;
line-height: 1.5;
padding: 10px 4px;
margin-left: 10px;
&:hover,
&:active,
&:focus {
text-decoration: underline;
}
}
}
}
}
}