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.

117 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. /*--------------
  61. Relaxed
  62. ---------------*/
  63. @relaxedGutterWidth: 2.5%;
  64. @veryRelaxedGutterWidth: 4%;
  65. /*--------------
  66. Divided
  67. ---------------*/
  68. @dividedBorder:
  69. -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
  70. -2px 0px 0px 0px rgba(255, 255, 255, 0.3)
  71. ;
  72. @verticallyDividedBorder:
  73. 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
  74. 0px -2px 0px 0px rgba(255, 255, 255, 0.3)
  75. ;
  76. @dividedInvertedBorder:
  77. -1px 0px 0px 0px rgba(0, 0, 0, 0.15),
  78. -2px 0px 0px 0px rgba(0, 0, 0, 0.15)
  79. ;
  80. @verticallyDividedInvertedBorder:
  81. 0px -1px 0px 0px rgba(0, 0, 0, 0.15),
  82. 0px -2px 0px 0px rgba(0, 0, 0, 0.15)
  83. ;
  84. /*--------------
  85. Celled
  86. ---------------*/
  87. @celledWidth: 1px;
  88. @celledBorderColor: @solidBorderColor;
  89. /*--------------
  90. Stackable
  91. ---------------*/
  92. @stackableRowMargin: 1em;
  93. @stackableGutterWidth: 1.5em;
  94. @stackableMobileBorder: 1px dotted @borderColor;