footer.scss 639 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .footer {
  2. background-color: mc('blue-grey','50');
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. padding: 0 25px;
  7. height: 70px;
  8. font-size: 13px;
  9. font-weight: 500;
  10. color: mc('blue-grey','500');
  11. position: absolute;
  12. right: 0;
  13. bottom: 0;
  14. left: 0;
  15. transition: background-color 1s ease;
  16. ul {
  17. padding: 0;
  18. margin: 0;
  19. list-style-type: none;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. li {
  24. padding: 0 15px;
  25. }
  26. }
  27. @each $color, $colorvalue in $material-colors {
  28. &.is-#{$color} {
  29. background-color: mc($color,'50');
  30. color: mc($color,'500');
  31. }
  32. }
  33. }