footer.scss 425 B

123456789101112131415161718192021222324252627282930
  1. .footer {
  2. text-align: center;
  3. margin-top: 30px;
  4. font-size: 12px;
  5. color: darken($color2, 25%);
  6. .domain {
  7. font-weight: 500;
  8. a {
  9. color: inherit;
  10. text-decoration: none;
  11. }
  12. }
  13. .powered-by,
  14. .single-user-login {
  15. font-weight: 400;
  16. a {
  17. color: inherit;
  18. text-decoration: underline;
  19. font-weight: 500;
  20. &:hover {
  21. text-decoration: none;
  22. }
  23. }
  24. }
  25. }