typography.less 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Typography
  3. // --------------------------------------------------
  4. .item-title {
  5. color: @state-hover;
  6. &:link, &:hover, &:visited {
  7. color: @state-hover;
  8. }
  9. &:active {
  10. color: @state-clicked;
  11. }
  12. &.combined {
  13. &:hover {
  14. text-decoration: none;
  15. &>span {
  16. text-decoration: underline;
  17. }
  18. }
  19. &:active {
  20. text-decoration: none;
  21. &>span {
  22. text-decoration: underline;
  23. }
  24. }
  25. }
  26. }
  27. .text-muted {
  28. strong {
  29. color: darken(@text-muted, 20%);
  30. font-weight: normal;
  31. }
  32. a:link, a:visited, a:active, a:hover {
  33. color: @link-muted-color;
  34. }
  35. .item-title {
  36. color: darken(@text-muted, 20%);
  37. font-weight: bold;
  38. &:link, &:visited {
  39. color: darken(@text-muted, 20%);
  40. }
  41. &:hover {
  42. color: @state-hover;
  43. }
  44. &:active {
  45. color: @state-clicked;
  46. }
  47. }
  48. }
  49. .label-solo {
  50. font-size: @font-size-base;
  51. }