Lungo.widgets.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace LUNGO
  5. * @class Widgets
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "mixins.less";
  10. .scroll, scroll {
  11. position: relative;
  12. display: block;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. section.copyright {
  17. margin-top: 128px;
  18. z-index: 1000;
  19. background: #000;
  20. text-align: center;
  21. font-size: 24px;
  22. }
  23. section.copyright img{
  24. max-height: 128px;
  25. }
  26. /* @group .position */
  27. .onleft { float: left; }
  28. .onright { float: right;}
  29. .indented {
  30. padding: 10px;
  31. width: auto;
  32. }
  33. .margin-top-4{ margin-top: 4px; }
  34. /* @end */
  35. /* @group .visibility */
  36. .hidden { display: none; }
  37. .semi-opacity{ opacity: 0.5; }
  38. /* @end */
  39. /* @group .sizing */
  40. .size32 {
  41. font-size: 32px;
  42. height: 32px;
  43. width: 32px;
  44. line-height: 32px;
  45. }
  46. .mini {
  47. font-size: 20px !important;
  48. height: 16px !important;
  49. width: 16px !important;
  50. line-height: 16px !important;
  51. }
  52. /* @end */
  53. .framed { border: 2px solid #fff;}
  54. .round { .border-radius(4px); }
  55. /* @end */
  56. .bubble {
  57. padding: 2px 4px 3px;
  58. .border-radius(2px);
  59. font-size: 0.8em;
  60. font-weight: bold;
  61. line-height: 1.0em;
  62. }
  63. .scroll {
  64. overflow: scroll;
  65. -webkit-overflow-scrolling: touch;
  66. }