File: /home/httpd/html/xdudes.com/templates/default_v3/styles/footer.css
.footer
{
width:100%;
height:56px;
background:var(--footerBackground);
display:flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding:5px 13px;
}
@media only screen and (max-width: 1000px)
{
.footer
{
height:fit-content;
padding:10px 13px;
flex-direction: column;
gap:20px;
}
}
.footer__logo
{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-decoration: none;
outline:none;
margin:0 auto 0 0;
}
@media only screen and (max-width: 1000px)
{
.footer__logo
{
margin:0;
}
}
.footer__logo img
{
height:31px;
}
@media only screen and (max-width: 400px)
{
.footer__logo img
{
height:25px;
}
}
.footer__nav
{
display:flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap:10px;
}
@media only screen and (max-width: 1000px)
{
.footer__nav
{
flex-direction: column;
}
}
.footer__link
{
outline:none;
font-size:15px;
color:var(--footerLink);
text-decoration: none;
font-weight: 500;
transition:0.4s;
}
.footer__link:hover
{
transition:0.4s;
opacity:0.6;
}
.footer__separator
{
width:1px;
height:14px;
background:var(--footerLink);
}
@media only screen and (max-width: 1000px)
{
.footer__separator
{
display:none;
}
}
.footer__images
{
height:27px;
margin:0 0 0 auto;
}
@media only screen and (max-width: 1000px)
{
.footer__images
{
margin:0;
}
}