type.less 507 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // Typography
  3. // --------------------------------------------------
  4. .item-title {
  5. color: @text-color;
  6. font-weight: bold;
  7. text-decoration: none;
  8. }
  9. a.item-title {
  10. &:link, &:active, &:visited, &:hover {
  11. color: @text-color;
  12. font-weight: bold;
  13. }
  14. &:hover {
  15. text-decoration: underline;
  16. }
  17. }
  18. .message-line {
  19. text-align: center;
  20. .material-icon {
  21. margin-right: @line-height-computed / 3;
  22. font-size: 20px;
  23. line-height: 20px;
  24. height: 20px;
  25. width: 20px;
  26. }
  27. }