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.

71 lines
1.7 KiB

  1. /*-------------------
  2. Button Variables
  3. --------------------*/
  4. /* Button Variables */
  5. @pageFont: Helvetica Neue, Helvetica, Arial, sans-serif;
  6. @textTransform: none;
  7. @fontWeight: bold;
  8. @textColor: #333333;
  9. @textShadow: 0px 1px 0px rgba(255, 255, 255, 0.9);
  10. @invertedTextShadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
  11. @borderRadius: 0.25em;
  12. @verticalPadding: 0.75em;
  13. @horizontalPadding: 1.15em;
  14. @backgroundColor: #FAFAFA;
  15. @backgroundImage: linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.1));
  16. @boxShadow:
  17. 0 -1px 0 0 rgba(0, 0, 0, 0.05) inset,
  18. 0 0 0 1px rgba(0, 0, 0, 0.13) inset,
  19. 0 1px 3px rgba(0, 0, 0, 0.05)
  20. ;
  21. @coloredBackgroundImage: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2));
  22. @coloredBoxShadow:
  23. 0 -1px 0 0 rgba(0, 0, 0, 0.05) inset,
  24. 0 0 0 1px rgba(0, 0, 0, 0.1) inset,
  25. 0 1px 3px rgba(0, 0, 0, 0.05)
  26. ;
  27. @hoverBackgroundColor: '';
  28. @hoverBackgroundImage: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
  29. @hoverBoxShadow: '';
  30. @downBackgroundColor: '';
  31. @downBackgroundImage: '';
  32. @downBoxShadow:
  33. 0 -1px 0 0 rgba(0, 0, 0, 0.05) inset,
  34. 0 0 0 1px rgba(0, 0, 0, 0.13) inset,
  35. 0 3px 5px rgba(0, 0, 0, 0.15) inset !important
  36. ;
  37. @activeBackgroundColor: #DFDFDF;
  38. @activeBackgroundImage: none;
  39. @activeBoxShadow:
  40. 0 -1px 0 0 rgba(0, 0, 0, 0.05) inset,
  41. 0 0 0 1px rgba(0, 0, 0, 0.13) inset,
  42. 0 3px 5px rgba(0, 0, 0, 0.1) inset !important
  43. ;
  44. @labeledIconBackgroundColor: transparent;
  45. @labeledIconBorder: transparent;
  46. @labeledIconPadding: (@horizontalPadding + 2.25em);
  47. @blue: #3072B3;
  48. @green: #60B044;
  49. @black: #5D5D5D;
  50. @primaryColor: @blue;
  51. @secondaryColor: @black;
  52. @mini: 0.6rem;
  53. @tiny: 0.7rem;
  54. @small: 0.85rem;
  55. @medium: 0.92rem;
  56. @large: 1rem;
  57. @big: 1.125rem;
  58. @huge: 1.25rem;
  59. @massive: 1.3rem;