_site-footer.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .site-footer {
  2. font-size: 14px;
  3. color: #888;
  4. .inner {
  5. padding-top: 0px;
  6. padding-bottom: 70px;
  7. background: $light;
  8. &.first {
  9. padding-top: 80px;
  10. }
  11. }
  12. @include media-breakpoint-down(md) {
  13. padding-top: 30px;
  14. }
  15. a {
  16. color: #999;
  17. &:hover {
  18. color: $black;
  19. }
  20. }
  21. .widget {
  22. margin-bottom: 30px;
  23. h3 {
  24. font-size: 14px;
  25. font-weight: 700;
  26. margin-bottom: 20px;
  27. color: $black;
  28. font-family: $font-family-sans-serif;
  29. }
  30. .social {
  31. li {
  32. display: inline-block;
  33. a {
  34. width: 30px;
  35. height: 30px;
  36. border-radius: 50%;
  37. background: $primary;
  38. display: inline-block;
  39. position: relative;
  40. color: $white;
  41. box-shadow: 0 5px 10px -2px rgba($black, .2);
  42. span {
  43. font-size: 16px;
  44. position: absolute;
  45. top: 50%;
  46. left: 50%;
  47. transform: translate(-50%, -50%);
  48. }
  49. &:hover {
  50. background-color: $primary;
  51. color: $white;
  52. }
  53. }
  54. }
  55. }
  56. .links {
  57. li {
  58. display: block;
  59. margin-bottom: 10px;
  60. a {
  61. color: #999;
  62. &:hover {
  63. color: $black;
  64. }
  65. }
  66. }
  67. }
  68. }
  69. ul.quick-info {
  70. li {
  71. position: relative;
  72. padding-left: 30px;
  73. &:before {
  74. left: 0;
  75. position: absolute;
  76. content: "";
  77. font-family: 'icomoon';
  78. }
  79. &.email {
  80. &:before {
  81. content: "\f0e0";
  82. }
  83. }
  84. &.phone {
  85. &:before {
  86. content: "\f095";
  87. }
  88. }
  89. &.address {
  90. &:before {
  91. content: "\e8b4";
  92. }
  93. }
  94. }
  95. }
  96. }