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.

81 lines
1.7 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*******************************
  2. Segment
  3. *******************************/
  4. /*-------------------
  5. Element
  6. --------------------*/
  7. @background: @white;
  8. @borderWidth: 1px;
  9. @border: none;
  10. @borderShadow: 0px 0px 0px @borderWidth @borderColor;
  11. @boxShadow:
  12. @borderShadow,
  13. @subtleShadow
  14. ;
  15. @verticalPadding: 1em;
  16. @horizontalPadding: 1em;
  17. @margin: 1em;
  18. @borderRadius: 0.25em;
  19. /*-------------------
  20. Coupling
  21. --------------------*/
  22. /* Page Grid Segment */
  23. @pageGridMargin: (2 * @verticalPadding);
  24. /*******************************
  25. Variations
  26. *******************************/
  27. /* Piled */
  28. @piledMargin: 2em;
  29. @piledBoxShadow: 0px 0px 1px 1px @borderColor;
  30. @piledDegrees: 1.2deg;
  31. /* Circular */
  32. @circularPadding: 2em;
  33. /* Stacked */
  34. @stackedHeight: 6px;
  35. @stackedPageBackground: @subtleTransparentBlack;
  36. @stackedPadding: @verticalPadding + (0.4em);
  37. @tallStackedPadding: @verticalPadding + (0.8em);
  38. /* Raised */
  39. @raisedShadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
  40. @raisedBoxShadow:
  41. @borderShadow,
  42. @raisedShadow
  43. ;
  44. /* Attached */
  45. @attachedTopOffset: 0px;
  46. @attachedBottomOffset: 0px;
  47. @attachedBoxShadow: 0px 0px 0px 1px @solidBorderColor;
  48. @attachedBottomBoxShadow:
  49. @attachedBoxShadow,
  50. @subtleShadow
  51. ;
  52. /* Colors */
  53. @coloredBorderSize: 2px;
  54. @coloredBorderRadius: 0em 0em @borderRadius @borderRadius;
  55. /* Ordinality */
  56. @secondaryBackground: #FAF9FA;
  57. @secondaryColor: @textColor;
  58. @tertiaryBackground: #EBEBEB;
  59. @tertiaryColor: @lightTextColor;
  60. @secondaryInvertedBackground: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  61. @secondaryInvertedColor: @offWhite;
  62. @tertiaryInvertedBackground: linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  63. @tertiaryInvertedColor: @darkWhite;