lungo.widgets.button.styl 878 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 "import/constants.styl"
  10. @import "import/vendor.styl"
  11. .button, button
  12. display: inline-block
  13. padding: 10px 16px
  14. border: none
  15. cursor: pointer
  16. color: #fff !important
  17. font-family: inherit
  18. font-size: 1.05em
  19. font-weight: 600
  20. text-align: center
  21. text-decoration: none
  22. outline: none
  23. &:disabled, &.disabled
  24. background: rgba(255,255,255,0.2)
  25. color: #999 !important
  26. & .icon
  27. font-size: FONT_SIZE_BIG
  28. &.anchor
  29. width: 100%
  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)