Guest User

Untitled

a guest
Dec 15th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <div id="footwrap">
  2. <footer>
  3.  
  4. <div id="footh3">
  5. <h3 class="h3">Follow me on social media:</h3>
  6. </div>
  7.  
  8. <div id="footlink">
  9. <a href="http://www.facebook.com" target="_blank">
  10. <img src="images/facebook-icon.svg" alt="Facebook">
  11. </a>
  12.  
  13. <a href="http://www.instagram.com" target="_blank">
  14. <img src="images/instagram-icon.svg" alt="Instagram">
  15. </a>
  16.  
  17. <a href="http://www.youtube.com" target="_blank">
  18. <img src="images/youtube-icon.svg" alt="YouTube">
  19. </a>
  20.  
  21. <a href="http://www.twitter.com" target="_blank">
  22. <img src="images/twitter-icon.svg" alt="Twitter">
  23. </a>
  24. </di>
  25.  
  26. </footer>
  27. </div>
  28.  
  29. #footwrap {
  30. clear: both;
  31. padding: 2%;
  32. }
  33.  
  34. footer {
  35. position: relative;
  36. clear: both;
  37. text-align: center;
  38. width: 100%;
  39. height: 8em;
  40. margin-top: 12%;
  41. }
  42.  
  43. #footh3 {
  44. display: inline-block;
  45. }
  46.  
  47. footer h3 {
  48. display: inline-block;
  49. font-family: 'Open Sans', sans-serif;
  50. font-size: 1.17em;
  51. margin-bottom: 2em;
  52. margin-left: 0;
  53. margin-right: 0;
  54. font-weight: bold;
  55. }
  56.  
  57. #footlink {
  58. display: inline-block;
  59. }
  60.  
  61. footer a {
  62. text-decoration: none;
  63. }
  64.  
  65. footer img {
  66. display: inline-block;
  67. max-width: 3%;
  68. height: auto;
  69. margin-left: 1.5%;
  70. margin-right: 10px;
  71. vertical-align: middle;
  72. }
  73.  
  74. img{max-width:3%}
  75. @media (max-width: 1000px){
  76. img{max-width:9%}
  77. }
  78. @media (max-width: 600px){
  79. img{max-width:15%}
  80. }
Add Comment
Please, Sign In to add comment