Lungo.widgets.css 1.6 KB

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