Lungo.widgets.styl 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Layout
  5. * @class Widgets
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "import/constants.styl"
  10. @import "import/vendor.styl"
  11. .overthrow-enabled .overthrow
  12. overflow: auto
  13. -webkit-overflow-scrolling: touch
  14. .scroll
  15. overflow-x: hidden
  16. overflow-y: scroll
  17. -webkit-overflow-scrolling: touch
  18. -webkit-box-flex: 1
  19. &.horizontal
  20. overflow-x: scroll
  21. overflow-y: hidden
  22. white-space: nowrap
  23. /* BUG (iOS) POSITION: relative childrens */
  24. & > *
  25. -webkit-transform: translate3d(0, 0, 0)
  26. :not(.icon)
  27. &.left
  28. float: left
  29. &.right
  30. float: right
  31. .hidden
  32. display: none
  33. .indented > *
  34. margin: 10px
  35. .margined
  36. margin: 3%
  37. .wrapper
  38. padding: 8px 8px
  39. .icon.small
  40. font-size: 1.3em
  41. .framed
  42. border: 2px solid #fff
  43. .round
  44. border-radius( 4px )
  45. /* ================================ TAG ================================ */
  46. .tag
  47. display: inline-block
  48. padding: 0 3px
  49. font-size: FONT_SIZE_TINY
  50. line-height: 1.3em
  51. text-align: center
  52. size = 5px
  53. .margin
  54. &.bottom
  55. margin-bottom: size
  56. /* ================================ TEXT ================================ */
  57. .text
  58. &.thin
  59. font-weight: 300
  60. &.normal
  61. font-weight: 400
  62. &.bold
  63. font-weight: 600
  64. &.extra-bold
  65. font-weight: 700
  66. &.italic
  67. font-style: italic
  68. &.underline
  69. text-decoration: underline
  70. &.line-through
  71. text-decoration: line-through
  72. &.align_left
  73. text-align: left
  74. &.align_right
  75. text-align: right
  76. &.align_center
  77. text-align: center
  78. &.align_justify
  79. text-align: justify
  80. &.small
  81. font-size: FONT_SIZE_SMALL
  82. &.big
  83. font-size: FONT_SIZE_BIG
  84. &.opacity
  85. opacity: 0.5