type.less 490 B

123456789101112131415161718192021222324252627282930313233
  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. text-decoration: underline;
  14. }
  15. }
  16. .message-line {
  17. text-align: center;
  18. .material-icon {
  19. margin-right: @line-height-computed / 3;
  20. font-size: 20px;
  21. line-height: 20px;
  22. height: 20px;
  23. width: 20px;
  24. }
  25. }