footer.scss 598 B

123456789101112131415161718192021222324252627282930
  1. footer.site-footer {
  2. padding: 20px 0 var(--section-separation) 0;
  3. font-size: 1.4rem;
  4. line-height: 1.75;
  5. &:before {
  6. content: "";
  7. display: block;
  8. height: 3px;
  9. width: 50px;
  10. background: var(--body-text-color);
  11. margin-bottom: 20px;
  12. }
  13. .copyright {
  14. color: var(--accent-color);
  15. font-weight: bold;
  16. margin-bottom: 5px;
  17. }
  18. .powerby {
  19. color: var(--body-text-color);
  20. font-weight: normal;
  21. font-size: 1.2rem;
  22. a {
  23. color: var(--body-text-color);
  24. }
  25. }
  26. }