Lungo.widgets.button.less 906 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace LUNGO.Widgets
  5. * @class Button
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "mixins.less";
  10. a.button {
  11. display: inline-block;
  12. height: 31px;
  13. padding: 0 9px 0 8px;
  14. color: #fff !important;
  15. outline: none;
  16. .user-select(none);
  17. .border-radius(1px);
  18. background: #5a5a5a;
  19. font-weight: bold;
  20. line-height: 32px;
  21. text-align: center;
  22. text-decoration: none;
  23. }
  24. a.button:disabled, a.button.disabled {
  25. background: rgba(255,255,255,0.2);
  26. color: #999 !important;
  27. }
  28. a.button .icon{
  29. float: left;
  30. width: 17px;
  31. height: 30px;
  32. font-size: 1.5em;
  33. line-height: 31px;}
  34. a.button.big {
  35. position: relative;
  36. height: 30px;
  37. width: 100%;
  38. margin-bottom: 4px;
  39. padding: 6px 0;
  40. font-size: 16px;
  41. line-height: 31px;
  42. }
  43. a.button.big .icon {
  44. width: 20px;
  45. height: 28px;
  46. line-height: 32px;
  47. margin-left: 0.6em;
  48. margin-right: -48px;
  49. }