Lungo.widgets.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace LUNGO
  5. * @class Widgets
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "constants.less";
  10. @import "mixins.less";
  11. /* @group scroll */
  12. .scrollable {
  13. position: absolute;
  14. display: block;
  15. }
  16. .scroll {
  17. overflow: scroll;
  18. -webkit-overflow-scrolling: touch;
  19. }
  20. /* @end */
  21. /* @group .position */
  22. .onleft { float: left; }
  23. .onright { float: right;}
  24. .indented > * { padding: 10px; }
  25. .margin-top-4{ margin-top: 4px; }
  26. /* @end */
  27. /* @group .visibility */
  28. .hidden { display: none; }
  29. .semi-opacity{ opacity: 0.5; }
  30. /* @end */
  31. /* @group .sizing */
  32. .size32 {
  33. font-size: 32px;
  34. height: 32px;
  35. width: 32px;
  36. line-height: 32px;
  37. }
  38. .icon.mini {
  39. font-size: 20px !important;
  40. height: 16px !important;
  41. width: 16px !important;
  42. line-height: 16px !important;
  43. }
  44. /* @end */
  45. .framed { border: 2px solid #fff;}
  46. .round { .border-radius(4px); }
  47. /* @end */
  48. .bubble {
  49. padding: 2px 3px 1px;
  50. .border-radius(1px);
  51. font-size: 0.8em;
  52. font-weight: bold;
  53. line-height: 1.0em;
  54. }