decentraland-ui
Version:
Decentraland's UI components and styles
135 lines (110 loc) • 2.45 kB
CSS
.dcl.footer {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
height: var(--footer-height);
margin-top: var(--footer-margin-top);
}
.dcl.footer.fullscreen {
margin-top: 0px;
}
.dcl.footer .main-footer {
display: flex;
flex-flow: row wrap;
justify-content: center;
height: 20px;
}
.dcl.footer .main-footer .links {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.dcl.footer .main-footer .links a {
color: var(--secondary-text);
font-weight: normal;
margin-left: 16px;
margin-bottom: 8px;
}
.dcl.footer .secondary-footer {
display: flex;
}
.dcl.footer .social-links {
margin-right: 24px;
}
.dcl.footer .social-links .social-icon {
display: inline-block;
width: 20px;
height: 20px;
color: var(--secondary-text);
background-repeat: no-repeat;
background-position: center;
background-clip: content-box;
}
.dcl.footer .social-links .social-icon:hover {
color: var(--primary);
}
.dcl.footer .social-links a + a {
margin-left: 26px;
}
.dcl.footer .social-links .social-icon.discord {
background-image: url('../../assets/discord.svg');
}
.dcl.footer .social-links .social-icon.reddit {
background-image: url('../../assets/reddit.svg');
}
.dcl.footer .social-links .social-icon.github {
background-image: url('../../assets/github.svg');
}
.dcl.footer .social-links .social-icon.twitter {
background-image: url('../../assets/twitter.svg');
}
.dcl.footer .copyright {
color: var(--secondary-text);
}
@media (max-width: 1300px) {
.dcl.footer {
flex-flow: column nowrap;
margin-bottom: 12px;
}
.dcl.footer .main-footer {
margin-bottom: 12px;
}
}
@media (max-width: 1024px) {
.dcl.footer {
flex-flow: column nowrap;
justify-content: center;
margin-bottom: 48px;
height: auto;
}
.dcl.footer .main-footer {
margin-bottom: 48px;
height: auto;
}
.dcl.footer .social-links {
margin-right: 0px;
}
.dcl.footer .social-links {
margin-bottom: 12px;
}
.dcl.footer .dcl.language-dropdown {
margin-bottom: 18px;
}
.dcl.footer .secondary-footer {
flex-flow: column;
align-items: center;
}
.dcl.footer.fullscreen {
padding: 20px 0px;
}
}
@media (max-width: 768px) {
.dcl.footer {
margin-top: var(--footer-margin-top);
padding-bottom: 80px;
}
.dcl.footer.fullscreen {
padding: var(--footer-margin-top) 0px;
}
}