_footer.scss 497 B

12345678910111213141516171819202122232425262728293031
  1. .footer {
  2. margin-top: 40px;
  3. text-align: center;
  4. color: $white;
  5. background: linear-gradient(to bottom left, $primary-color, $primary-color-light);
  6. clear: both;
  7. .footer-text,
  8. .footer-link {
  9. display: inline-block;
  10. padding: 40px;
  11. }
  12. .footer-text {
  13. padding-bottom: 0;
  14. .hearts {
  15. font-size: 18px;
  16. color: $primary-color-dark;
  17. }
  18. }
  19. .footer-link {
  20. text-decoration: none;
  21. color: $white;
  22. transition: color 0.15s;
  23. &:hover,
  24. &:focus {
  25. color: $primary-color-dark;
  26. }
  27. }
  28. }