_site.scss 638 B

12345678910111213141516171819202122232425262728293031323334
  1. .site-header {
  2. @extend .row;
  3. margin-top: $leading * 3;
  4. justify-content: center;
  5. a:hover { color: $hyperlink-color-dark }
  6. }
  7. .site-nav {
  8. @extend .column;
  9. ul { @extend .row; justify-content: center }
  10. li { margin: 0 .5em }
  11. }
  12. .site-main { margin-bottom: $leading }
  13. .site-footer {
  14. @extend .row;
  15. max-width: $page-max-width;
  16. background-color: $background-color-dark;
  17. align-items: baseline;
  18. justify-content: space-around;
  19. ul { align-self: center }
  20. ul.footer-license { max-width: $page-max-width }
  21. ul.footer-social {
  22. display: flex;
  23. li { margin: 0 .5em }
  24. }
  25. a:hover { color: $hyperlink-color-dark }
  26. }