typo.less 634 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // Typography
  3. // --------------------------------------------------
  4. // In-site link
  5. .site-link {
  6. &, &:link, &:visited {
  7. color: @site-link-color;
  8. }
  9. &:hover, &:focus {
  10. color: @site-link-hover-color;
  11. }
  12. &:active {
  13. color: @site-link-active-color;
  14. }
  15. }
  16. // Item name
  17. .item-name {
  18. color: @text-color;
  19. font-weight: bold;
  20. }
  21. a.item-name {
  22. &:link, &:hover, &:visited, &:active {
  23. color: @text-color;
  24. font-weight: bold;
  25. }
  26. &:hover {
  27. text-decoration: underline;
  28. }
  29. }
  30. // Margins
  31. .right-margin {
  32. margin-right: @line-height-computed;
  33. }
  34. .left-margin {
  35. margin-left: @line-height-computed;
  36. }