_footer.css.scss 788 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // sets up sticky footer
  2. html, body {
  3. height: 100%;
  4. }
  5. .footer-global {
  6. background: transparent image-url('global/bg_footer.png') 50% 0;
  7. background-size: cover;
  8. padding-top: 23px;
  9. .container {
  10. padding-top: 30px;
  11. }
  12. }
  13. footer.footer-global {
  14. font-size: 12px;
  15. height: 148px;
  16. .container {
  17. border-top: 1px solid #D2DADB;
  18. }
  19. .footer-right, .footer-right ul {
  20. text-align: right;
  21. display: inline-block;
  22. }
  23. ul {
  24. margin: 0;
  25. padding: 0;
  26. }
  27. ul.footer-legal {
  28. li {
  29. &:first-child {
  30. margin-left: 0;
  31. }
  32. }
  33. }
  34. ul.footer-info, .copy {
  35. font-weight: 700;
  36. color: #929596;
  37. li {
  38. &:first-child {
  39. margin-left: 0;
  40. }
  41. }
  42. a {
  43. color: #929596;
  44. }
  45. }
  46. a {
  47. color: #C3C8C9;
  48. }
  49. }