index.less 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @import '../../app.less';
  2. .button {
  3. text-align: center;
  4. cursor: pointer;
  5. display: inline-block;
  6. vertical-align: middle;
  7. transition: all 0.25s;
  8. border-radius: 2px;
  9. }
  10. .button.basic {
  11. padding: 4px 24px;
  12. line-height: 30px;
  13. font-size: 20px;
  14. }
  15. .button.small {
  16. padding: 3px 14px;
  17. line-height: 18px;
  18. font-size: 12px;
  19. }
  20. .button.lager {}
  21. .button.disabled {
  22. cursor: no-drop;
  23. }
  24. .button.basic.radius {
  25. border-radius: 17px;
  26. }
  27. .button.small.radius {
  28. border-radius: 14px;
  29. }
  30. .button.theme {
  31. background: @theme_color;
  32. color: #fff;
  33. }
  34. .button.default {
  35. background: #fff;
  36. color: @holder_color;
  37. border: 1px solid @holder_color;
  38. }
  39. .button.border {
  40. background: #fff;
  41. border: 2px solid @theme_color;
  42. }
  43. .button.theme:hover {
  44. background: @theme_color_hover;
  45. }
  46. .button.border:hover {
  47. border-color: @theme_color_hover;
  48. }
  49. .button.default:hover {
  50. color: @base_color;
  51. border-color: @base_color;
  52. }