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.
 
 
 

107 lines
2.3 KiB

  1. footer {
  2. border-top: 4rem solid #fff;
  3. background: #5C5B5B;
  4. color: #fff;
  5. .inside {
  6. @include make-container();
  7. max-width: 1280px;
  8. position: relative;
  9. display: flex;
  10. justify-content: space-between;
  11. padding: 70px 0 45px 0;
  12. font-weight: 300;
  13. h3 {
  14. font-size: size(24);
  15. line-height: size(29);
  16. padding-bottom: 1.5rem;
  17. font-family: 'Lato', sans-serif;
  18. }
  19. .mod_navigation {
  20. width: 50%;
  21. ul {
  22. li {
  23. font-size: size(18);
  24. line-height: size(22);
  25. padding: 0 0 12px 0;
  26. a {
  27. display: inline-block;
  28. padding: 5px 0;
  29. font-size: size(16);
  30. text-decoration: none;
  31. color: #fff;
  32. &:hover {
  33. text-decoration: underline;
  34. }
  35. }
  36. }
  37. }
  38. }
  39. }
  40. .social-media {
  41. display: flex;
  42. justify-content: flex-start;
  43. position: absolute;
  44. left: 50%;
  45. bottom: 65px;
  46. li {
  47. padding: 0 1.5rem 0 0;
  48. }
  49. a {
  50. display: block;
  51. width: 42px;
  52. height: 42px;
  53. font-size: 1px;
  54. line-height: 1px;
  55. text-indent: -9999px;
  56. }
  57. .fb {
  58. a {
  59. background: transparent url("../images/logos/sm-logo-facebook.svg") no-repeat left top;
  60. background-size: 100% auto;
  61. }
  62. }
  63. .ig {
  64. a {
  65. background: transparent url("../images/logos/sm-logo-instagram.svg") no-repeat left top;
  66. background-size: 100% auto;
  67. }
  68. }
  69. }
  70. //.social-media {
  71. // display: flex;
  72. // margin: 0 0 10px 0;
  73. // padding: 0;
  74. //
  75. // li {
  76. // margin: 0 10px;
  77. // padding: 0;
  78. // list-style-type: none;
  79. //
  80. // a {
  81. // font-size: size(26);
  82. // line-height: 0;
  83. // text-align: center;
  84. // width: 36px;
  85. // height: 36px;
  86. // color: $secondary;
  87. // border: 1px solid $secondary;
  88. // display: flex;
  89. // justify-content: center;
  90. // align-items: center;
  91. // border-radius: 5px;
  92. // transition: 0.2s;
  93. //
  94. // &:hover {
  95. // background: $secondary;
  96. // color: #fff;
  97. // }
  98. // }
  99. // }
  100. //}
  101. }