Last active
July 20, 2018 05:24
-
-
Save hankchanocd/7639d8232595137c044f71594dbe6b81 to your computer and use it in GitHub Desktop.
Alternative Footer to replace the original footer ads on Weebly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Footer Code, including fb-likes ------------------------------------------------------------ | |
----------------------------------*/ | |
#footer-alternative { | |
background-color: #333333; | |
margin-bottom: 0; | |
} | |
.copyright { | |
font-size: 16px; | |
text-align: center; | |
color: white; | |
} | |
.middle-footer-wrapper { | |
width: 100%; | |
height: 160px; | |
} | |
#footer-image-block { | |
border: none; | |
width: 45%; | |
display: inline-block; | |
} | |
#footer-image { | |
width: 100px; | |
height: 100px; | |
float: right; | |
margin-bottom: 50px !important; | |
margin-right: 30px; | |
} | |
#social-share-block { | |
border: none; | |
width: 45%; | |
overflow: hidden; | |
display: inline-block; | |
} | |
#social-share-wrapper { | |
float: left; | |
height: 150px; | |
margin-top: 20px; | |
margin-left: 30px; | |
} | |
@media screen and (max-width: 450px) { | |
#footer-image { | |
margin-right: 20px; | |
} | |
#social-share-wrapper { | |
margin-left: 20px; | |
} | |
} | |
@media screen and (max-width: 320px) { | |
#footer-image { | |
margin-right: 15px; | |
} | |
#social-share-wrapper { | |
margin-left: 15px; | |
} | |
} | |
#fb-likes { | |
height: 60px; | |
width: auto; | |
position: relative; | |
margin: auto; | |
} | |
.license { | |
display: block; | |
margin: auto; | |
text-align: center; | |
font-size: 16px; | |
width: 80%; | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment