lungo.widgets.button.styl 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Widgets
  5. * @class Button
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "constants.styl"
  10. .button, 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: 600
  19. text-align: center
  20. text-decoration: none
  21. outline: none
  22. &:disabled, &.disabled
  23. background: rgba(255,255,255,0.2)
  24. color: #999 !important
  25. & .icon
  26. font-size: FONT_SIZE_BIG
  27. &.anchor
  28. display: block
  29. width: inherit
  30. position: relative
  31. & .icon
  32. position: absolute
  33. left: 8px
  34. &.large
  35. height: h = 52px
  36. padding: 0 24px
  37. font-size: 1.4em
  38. line-height: h
  39. &.small
  40. height: h = 30px
  41. padding: 0 8px
  42. font-size: FONT_SIZE_SMALL
  43. line-height: (h - 2)