lazy.less 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .padding-none { padding: 0 !important; }
  2. .padding { padding: 10px !important; }
  3. .padding-small { padding: 5px !important; }
  4. .padding-large { padding: 22px !important; }
  5. .padding-top-none { padding-top: 0 !important; }
  6. .padding-top { padding-top: 10px !important; }
  7. .padding-top-small { padding-top: 5px !important; }
  8. .padding-top-large { padding-top: 22px !important; }
  9. .padding-right-none { padding-right: 0 !important; }
  10. .padding-right { padding-right: 10px !important; }
  11. .padding-right-small { padding-right: 5px !important; }
  12. .padding-right-large { padding-right: 22px !important; }
  13. .padding-bottom-none { padding-bottom: 0 !important; }
  14. .padding-bottom { padding-bottom: 10px !important; }
  15. .padding-bottom-small { padding-bottom: 5px !important; }
  16. .padding-bottom-large { padding-bottom: 22px !important; }
  17. .padding-left-none { padding-left: 0 !important; }
  18. .padding-left { padding-left: 10px !important; }
  19. .padding-left-small { padding-left: 5px !important; }
  20. .padding-left-large { padding-left: 22px !important; }
  21. .margin-none { margin: 0 !important; }
  22. .margin { margin: 10px !important; }
  23. .margin-small { margin: 5px !important; }
  24. .margin-large { margin: 22px !important; }
  25. .margin-top-none { margin-top: 0 !important; }
  26. .margin-top { margin-top: 10px !important; }
  27. .margin-top-large { margin-top: 22px !important; }
  28. .margin-top-small { margin-top: 5px !important; }
  29. .margin-right-none { margin-right: 0 !important; }
  30. .margin-right { margin-right: 10px !important; }
  31. .margin-right-large { margin-right: 22px !important; }
  32. .margin-right-small { margin-right: 5px !important; }
  33. .margin-bottom-none { margin-bottom: 0 !important; }
  34. .margin-bottom { margin-bottom: 10px !important; }
  35. .margin-bottom-large { margin-bottom: 22px !important; }
  36. .margin-bottom-small { margin-bottom: 5px !important; }
  37. .margin-left-none { margin-left: 0 !important; }
  38. .margin-left { margin-left: 10px !important; }
  39. .margin-left-large { margin-left: 22px !important; }
  40. .margin-left-small { margin-left: 5px !important; }
  41. .border-left-none { border-left: none !important; }
  42. .border-right-none { border-right: none !important; }
  43. .border-bottom-none { border-bottom: none !important; }
  44. .border-top-none { border-top: none !important; }
  45. .display-block { display: block; } // use to swap an anchor tag to span a whole row to make click target larger
  46. .no-underline:hover { text-decoration: none; }
  47. .clickable { cursor: pointer; }
  48. .strong { font-weight: bold; }
  49. .em { font-style: italic; }
  50. .small { font-size: 85%; } // Ex: 14px base font * 85% = about 12px
  51. .no-link { color: @grayDark; }
  52. .text-sans-serif { font-family: @sansFontFamily; }
  53. .text-ellipsis { .text-overflow(); } // truncates text to a single line with an ellipsis at the end
  54. .text-default {
  55. font-family: @sansFontFamily;
  56. font-size: @baseFontSize;
  57. line-height: @baseLineHeight;
  58. font-weight: normal;
  59. }
  60. .hilite {
  61. color: @linkColor;
  62. &:hover {
  63. color: @linkColorHover;
  64. text-decoration: underline;
  65. }
  66. [class^="icon-"], [class*=" icon-"] {
  67. &:before {
  68. display: inline;
  69. }
  70. }
  71. }
  72. .strike { text-decoration: line-through; }
  73. .upper { text-transform: uppercase; }
  74. .lower { text-transform: lowercase; }