type.less 545 B

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