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 534B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // Footer
  3. //
  4. .ct-footer {
  5. font-size: 85%;
  6. text-align: center;
  7. background-color: #f7f7f7;
  8. a {
  9. font-weight: 500;
  10. color: $gray-700;
  11. &:hover,
  12. &:focus {
  13. color: $link-color;
  14. }
  15. }
  16. p {
  17. margin-bottom: 0;
  18. }
  19. @include media-breakpoint-up(sm) {
  20. text-align: left;
  21. }
  22. }
  23. .ct-footer-links {
  24. padding-left: 0;
  25. margin-bottom: 1rem;
  26. li {
  27. display: inline-block;
  28. +li {
  29. margin-left: 1rem;
  30. }
  31. }
  32. }