You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
2.7 KiB

  1. /* Inherited From Site */
  2. // @mobileBreakpoint
  3. // @tabletBreakpoint
  4. // @computerBreakpoint
  5. // @largeMonitorBreakpoint
  6. // @widescreenMonitorBreakpoint
  7. /*******************************
  8. Grid
  9. *******************************/
  10. @minWidth: 320px;
  11. @gutterWidth: 1.5%;
  12. @rowSpacing: 1rem;
  13. @firstRowSpacing: 0rem;
  14. @columnMaxImageWidth: 100%;
  15. @columnCount: 16;
  16. @oneWide : (1 / @columnCount * 100%);
  17. @twoWide : (2 / @columnCount * 100%);
  18. @threeWide : (3 / @columnCount * 100%);
  19. @fourWide : (4 / @columnCount * 100%);
  20. @fiveWide : (5 / @columnCount * 100%);
  21. @sixWide : (6 / @columnCount * 100%);
  22. @sevenWide : (7 / @columnCount * 100%);
  23. @eightWide : (8 / @columnCount * 100%);
  24. @nineWide : (9 / @columnCount * 100%);
  25. @tenWide : (10 / @columnCount * 100%);
  26. @elevenWide : (11 / @columnCount * 100%);
  27. @twelveWide : (12 / @columnCount * 100%);
  28. @thirteenWide : (13 / @columnCount * 100%);
  29. @fourteenWide : (14 / @columnCount * 100%);
  30. @fifteenWide : (15 / @columnCount * 100%);
  31. @sixteenWide : (16 / @columnCount * 100%);
  32. @oneColumn : (1 / 1 * 100%);
  33. @twoColumn : (1 / 2 * 100%);
  34. @threeColumn : (1 / 3 * 100%);
  35. @fourColumn : (1 / 4 * 100%);
  36. @fiveColumn : (1 / 5 * 100%);
  37. @sixColumn : (1 / 6 * 100%);
  38. @sevenColumn : (1 / 7 * 100%);
  39. @eightColumn : (1 / 8 * 100%);
  40. @nineColumn : (1 / 9 * 100%);
  41. @tenColumn : (1 / 10 * 100%);
  42. @elevenColumn : (1 / 11 * 100%);
  43. @twelveColumn : (1 / 12 * 100%);
  44. @thirteenColumn : (1 / 13 * 100%);
  45. @fourteenColumn : (1 / 14 * 100%);
  46. @fifteenColumn : (1 / 15 * 100%);
  47. @sixteenColumn : (1 / 16 * 100%);
  48. /*******************************
  49. Variations
  50. *******************************/
  51. /*--------------
  52. Page
  53. ---------------*/
  54. /* Standard */
  55. @mobileGutter: 1em;
  56. @tabletGutter: 8%;
  57. @computerGutter: 13%;
  58. @largeMonitorGutter: 18%;
  59. @widescreenMonitorGutter: 23%;
  60. /* Fitted */
  61. /*--------------
  62. Relaxed
  63. ---------------*/
  64. @relaxedGutterWidth: 2.5%;
  65. @veryRelaxedGutterWidth: 4%;
  66. /*--------------
  67. Divided
  68. ---------------*/
  69. @dividedBorder:
  70. -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
  71. -2px 0px 0px 0px rgba(255, 255, 255, 0.3)
  72. ;
  73. @verticallyDividedBorder:
  74. 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
  75. 0px -2px 0px 0px rgba(255, 255, 255, 0.3)
  76. ;
  77. @dividedInvertedBorder:
  78. -1px 0px 0px 0px rgba(0, 0, 0, 0.15),
  79. -2px 0px 0px 0px rgba(0, 0, 0, 0.15)
  80. ;
  81. @verticallyDividedInvertedBorder:
  82. 0px -1px 0px 0px rgba(0, 0, 0, 0.15),
  83. 0px -2px 0px 0px rgba(0, 0, 0, 0.15)
  84. ;
  85. /*--------------
  86. Celled
  87. ---------------*/
  88. @celledWidth: 1px;
  89. @celledBorderColor: @solidBorderColor;
  90. /*--------------
  91. Stackable
  92. ---------------*/
  93. @stackableRowMargin: 1em;
  94. @stackableGutterWidth: 1.5em;
  95. @stackableMobileBorder: 1px dotted @borderColor;