Lungo.base.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo
  5. * @class Base
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. a,
  10. abbr,
  11. address,
  12. article,
  13. aside,
  14. audio,
  15. b,
  16. blockquote,
  17. body,
  18. caption,
  19. cite,
  20. code,
  21. dd,
  22. del,
  23. dfn,
  24. dialog,
  25. div,
  26. dl,
  27. dt,
  28. em,
  29. fieldset,
  30. figure,
  31. footer,
  32. form,
  33. h1,
  34. h2,
  35. h3,
  36. h4,
  37. h5,
  38. h6,
  39. header,
  40. hgroup,
  41. hr,
  42. html,
  43. i,
  44. iframe,
  45. img,
  46. ins,
  47. kbd,
  48. label,
  49. legend,
  50. li,
  51. mark,
  52. menu,
  53. nav,
  54. object,
  55. ol,
  56. p,
  57. pre,
  58. q,
  59. samp,
  60. section,
  61. small,
  62. span,
  63. strong,
  64. sub,
  65. sup,
  66. table,
  67. tbody,
  68. td,
  69. tfoot,
  70. th,
  71. thead,
  72. time,
  73. tr,
  74. ul,
  75. var,
  76. video {
  77. border: 0;
  78. margin: 0;
  79. outline: 0;
  80. padding: 0;
  81. font-size: 100%;
  82. }
  83. article,
  84. aside,
  85. details,
  86. figcaption,
  87. figure,
  88. footer,
  89. header,
  90. hgroup,
  91. nav,
  92. section {
  93. display: block;
  94. }
  95. audio,
  96. canvas,
  97. video {
  98. display: inline-block;
  99. *display: inline;
  100. *zoom: 1;
  101. }
  102. audio:not([controls]) {
  103. display: none;
  104. }
  105. [hidden] {
  106. display: none;
  107. }
  108. html {
  109. height: 100%;
  110. font-size: 100%;
  111. -webkit-text-size-adjust: 100%;
  112. -ms-text-size-adjust: 100%;
  113. }
  114. body {
  115. margin: 0;
  116. padding: 0;
  117. width: 100%;
  118. height: 100%;
  119. max-height: 100%;
  120. overflow: hidden;
  121. font-family: Helvetica, Arial, sans-serif;
  122. font-size: 13px;
  123. line-height: 1.231;
  124. -webkit-touch-callout: none;
  125. display: -webkit-box;
  126. -webkit-box-orient: vertical;
  127. -webkit-box-align: stretch;
  128. }
  129. a {
  130. text-decoration: none;
  131. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  132. }
  133. a:hover {
  134. opacity: 1;
  135. }
  136. b,
  137. strong {
  138. font-weight: bold;
  139. }
  140. img {
  141. border: 0;
  142. -ms-interpolation-mode: bicubic;
  143. vertical-align: middle;
  144. font-size: 0;
  145. }
  146. table {
  147. border-collapse: collapse;
  148. border-spacing: 0;
  149. }
  150. th,
  151. td,
  152. caption {
  153. vertical-align: top;
  154. font-weight: normal;
  155. text-align: left;
  156. }
  157. * {
  158. margin: 0;
  159. padding: 0;
  160. -webkit-user-select: none;
  161. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  162. }