No Description
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.

_footer.scss 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //
  2. // Footer
  3. //
  4. // General styles
  5. .footer {
  6. background: $footer-bg;
  7. padding: $footer-padding-y $footer-padding-x;
  8. .col-footer {
  9. .heading {
  10. color: $footer-heading-color;
  11. letter-spacing: 0;
  12. font-size: $footer-heading-font-size;
  13. text-transform: uppercase;
  14. font-weight: $font-weight-bold;
  15. margin-bottom: 1rem;
  16. }
  17. }
  18. .nav .nav-item .nav-link,
  19. .footer-link {
  20. color: $footer-link-color !important;
  21. &:hover {
  22. color: $footer-link-hover-color !important;
  23. }
  24. }
  25. .list-unstyled li a {
  26. display: inline-block;
  27. padding: .125rem 0;
  28. color: $footer-link-color;
  29. font-size: $footer-link-font-size;
  30. &:hover {
  31. color: $footer-link-hover-color;
  32. }
  33. }
  34. .copyright {
  35. font-size: $font-size-sm;
  36. }
  37. }
  38. // Dark footer
  39. .footer-dark {
  40. .col-footer .heading {
  41. color: $white;
  42. }
  43. }
  44. // Footer nav used for copyright and some links, but not limited to this
  45. .nav-footer {
  46. .nav-link {
  47. font-size: $font-size-sm;
  48. }
  49. .nav-item:last-child {
  50. .nav-link {
  51. padding-right: 0;
  52. }
  53. }
  54. }
  55. // Footer with cards over
  56. .footer.has-cards {
  57. overflow: hidden;
  58. padding-top: 500px;
  59. margin-top: -420px;
  60. position: relative;
  61. background: transparent;
  62. pointer-events: none;
  63. &:before {
  64. content: "";
  65. position: absolute;
  66. left: 0;
  67. right: 0;
  68. top: 600px;
  69. height: 2000px;
  70. background: theme-color("secondary");
  71. transform: skew(0,-8deg);
  72. }
  73. .container {
  74. pointer-events: auto;
  75. position: relative;
  76. }
  77. }