Advertisement
Guest User

footer

a guest
Oct 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. #footer {
  2.  
  3. background: $bg-dark-blue;
  4. color: $text-lite-grey;
  5. margin-top: 100px;
  6.  
  7. .market {
  8.  
  9. padding: 25px 0;
  10.  
  11. a {
  12. color: #fff;
  13. }
  14.  
  15. .market-label {
  16. font-size: $font-sm;
  17. margin-bottom: 10px;
  18. }
  19.  
  20. .market-value {
  21. color: #fff;
  22. font-size: 25px;
  23. }
  24.  
  25. }
  26.  
  27. .navigation {
  28.  
  29. padding: 35px 0;
  30. @include linear-gradient(to right, $bg-medium-blue, $bg-lite-blue);
  31.  
  32. h4 {
  33. color: #fff;
  34. font-weight: bold;
  35. margin-bottom: 25px;
  36. }
  37.  
  38. p {
  39. margin-bottom: 25px;
  40. }
  41.  
  42. ul.links {
  43.  
  44. li {
  45.  
  46. margin-bottom: 15px;
  47.  
  48. a {
  49. color: $text-lite-grey;
  50. }
  51.  
  52. &:last-child {
  53. margin: 0;
  54. }
  55.  
  56. }
  57.  
  58. }
  59.  
  60. ul.social {
  61.  
  62. li {
  63.  
  64. display: inline-block;
  65. font-size: 25px;
  66. margin: 0 5px 0 0;
  67.  
  68. a {
  69.  
  70. color: $text-lite-grey;
  71.  
  72. &:hover {
  73. color: #fff;
  74. }
  75.  
  76. }
  77.  
  78. &:last-child {
  79. margin: 0;
  80. }
  81.  
  82. }
  83.  
  84. }
  85.  
  86. }
  87.  
  88. .legal {
  89.  
  90. padding: 25px 0;
  91. font-size: 11px;
  92.  
  93. a {
  94. color: #fff;
  95. }
  96.  
  97. }
  98.  
  99. }
  100.  
  101. @media (max-width: 991px) {
  102.  
  103. #footer {
  104.  
  105. margin-top: 0;
  106.  
  107. .market {
  108. padding: 15px 20px;
  109.  
  110. .market-label {
  111. font-size: $font-xs;
  112. }
  113.  
  114. .market-value {
  115. font-size: $font-lg;
  116. }
  117.  
  118. }
  119.  
  120. .navigation {
  121. padding: 20px 15px;
  122. }
  123.  
  124. .legal {
  125. padding: 20px 15px;
  126. }
  127.  
  128. }
  129.  
  130. }
  131.  
  132. @media (max-width: 767px) {
  133.  
  134. #footer {
  135.  
  136. .market {
  137.  
  138. text-align: center;
  139.  
  140. .col-xs-12 {
  141. padding-top: 20px;
  142. }
  143.  
  144. }
  145.  
  146. .navigation {
  147.  
  148. padding-top: 0;
  149. padding-bottom: 20px;
  150.  
  151. h4 {
  152. margin: 20px 0 15px 0;
  153. }
  154.  
  155. ul.links {
  156.  
  157. margin-bottom: 20px;
  158.  
  159. li {
  160. margin-bottom: 10px;
  161. }
  162.  
  163. }
  164.  
  165. .newbies {
  166.  
  167. text-align: center;
  168. padding: 20px 0;
  169. border: 1px solid rgba(255,255,255,0.1);
  170. margin: 20px 0;
  171.  
  172. h4 {
  173. margin-top: 0;
  174. }
  175.  
  176. }
  177.  
  178. p {
  179. margin-bottom: 15px;
  180. }
  181.  
  182. }
  183.  
  184. .legal {
  185.  
  186. .copyright {
  187. margin-bottom: 10px;
  188. display: block;
  189. }
  190.  
  191. .text-right {
  192. line-height: 1.4;
  193. text-align: left;
  194. }
  195.  
  196. }
  197.  
  198. }
  199.  
  200. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement