Lungo.widgets.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo
  5. * @class Widgets
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. /* DIMENSIONS */
  10. /* COLORS */
  11. .scroll {
  12. overflow-y: scroll;
  13. -webkit-overflow-scrolling: touch;
  14. -webkit-box-flex: 1;
  15. }
  16. .scroll.horizontal {
  17. overflow-x: scroll;
  18. overflow-y: hidden !important;
  19. }
  20. .scroll.horizontal > * {
  21. min-width: 4096px;
  22. }
  23. .scroll.horizontal > * > * {
  24. float: left;
  25. }
  26. .scroll > * {
  27. -webkit-transform: translate3d(0, 0, 0);
  28. }
  29. .left {
  30. float: left;
  31. }
  32. .right {
  33. float: right;
  34. }
  35. .hidden {
  36. display: none;
  37. }
  38. .indented > * {
  39. margin: 10px;
  40. }
  41. .wrapper {
  42. padding: 8px 8px;
  43. }
  44. .icon.small {
  45. font-size: 1.3em;
  46. }
  47. .framed {
  48. border: 2px solid #fff;
  49. }
  50. .round {
  51. -webkit-border-radius: 4px;
  52. -moz-border-radius: 4px;
  53. border-radius: 4px;
  54. -webkit-background-clip: padding-box;
  55. -moz-background-clip: padding;
  56. background-clip: padding-box;
  57. -webkit-border-radius: 4px;
  58. -moz-border-radius: 4px;
  59. border-radius: 4px;
  60. -webkit-background-clip: padding-box;
  61. -moz-background-clip: padding;
  62. background-clip: padding-box;
  63. }
  64. .bubble {
  65. display: inline-block;
  66. padding: 2px 3px;
  67. min-width: 12px;
  68. font-size: 0.75em;
  69. font-weight: bold;
  70. line-height: 13px;
  71. text-align: center;
  72. }
  73. strong {
  74. font-size: 1.15em;
  75. }
  76. small {
  77. display: block;
  78. overflow: hidden;
  79. white-space: nowrap;
  80. text-overflow: ellipsis;
  81. font-size: 0.8em;
  82. }