lungo.widgets.button.styl 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. width: 100%
  29. position: relative
  30. & .icon
  31. position: absolute
  32. left: 8px
  33. &.large
  34. height: h = 52px
  35. padding: 0 24px
  36. font-size: 1.4em
  37. line-height: h
  38. &.small
  39. height: h = 30px
  40. padding: 0 8px
  41. font-size: FONT_SIZE_SMALL
  42. line-height: (h - 2)