Lungo.widgets.button.css 950 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Widgets
  5. * @class Button
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. .button,
  10. button {
  11. display: inline-block;
  12. padding: 10px 16px;
  13. border: none;
  14. cursor: pointer;
  15. color: #fff !important;
  16. font-family: inherit;
  17. font-size: 1.05em;
  18. font-weight: 400;
  19. text-align: center;
  20. text-decoration: none;
  21. outline: none;
  22. }
  23. .button:disabled,
  24. button:disabled,
  25. .button.disabled,
  26. button.disabled {
  27. background: rgba(255,255,255,0.2);
  28. color: #999 !important;
  29. }
  30. .button .icon,
  31. button .icon {
  32. margin-right: 4px;
  33. }
  34. .button.anchor,
  35. button.anchor {
  36. width: 100%;
  37. margin-bottom: 4px;
  38. }
  39. .button.anchor .icon,
  40. button.anchor .icon {
  41. margin-left: 8px;
  42. float: left;
  43. }
  44. .button.large,
  45. button.large {
  46. height: 52px;
  47. padding: 0 24px;
  48. font-size: 1.4em;
  49. line-height: 52px;
  50. }
  51. .button.small,
  52. button.small {
  53. height: 28px;
  54. padding: 0 12px;
  55. font-size: 0.9em;
  56. line-height: 26px;
  57. }