_links.scss 368 B

12345678910111213141516171819202122232425262728
  1. a {
  2. color: $color__link;
  3. font-weight: bold;
  4. text-decoration: none;
  5. transition: 0.3s;
  6. &:visited {
  7. color: $color__link-visited;
  8. }
  9. &:hover,
  10. &:focus,
  11. &:active {
  12. color: $color__link-hover;
  13. }
  14. &:focus {
  15. outline: thin dotted;
  16. }
  17. &:hover,
  18. &:active {
  19. outline: 0;
  20. }
  21. }
  22. .entry-content a,
  23. .entry-summary a {
  24. word-wrap: break-word;
  25. word-break: break-word;
  26. }