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.

78 lines
1.6 KiB

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