| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /**
- * Stylesheet
- *
- * @namespace Lungo
- * @class Base
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- a,
- abbr,
- address,
- article,
- aside,
- audio,
- b,
- blockquote,
- body,
- caption,
- cite,
- code,
- dd,
- del,
- dfn,
- dialog,
- div,
- dl,
- dt,
- em,
- fieldset,
- figure,
- footer,
- form,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- header,
- hgroup,
- hr,
- html,
- i,
- iframe,
- img,
- ins,
- kbd,
- label,
- legend,
- li,
- mark,
- menu,
- nav,
- object,
- ol,
- p,
- pre,
- q,
- samp,
- section,
- small,
- span,
- strong,
- sub,
- sup,
- table,
- tbody,
- td,
- tfoot,
- th,
- thead,
- time,
- tr,
- ul,
- var,
- video {
- border: 0;
- margin: 0;
- outline: 0;
- padding: 0;
- font-size: 100%;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- nav,
- section {
- display: block;
- }
- audio,
- canvas,
- video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- }
- audio:not([controls]) {
- display: none;
- }
- [hidden] {
- display: none;
- }
- html {
- height: 100%;
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- max-height: 100%;
- overflow: hidden;
- font-family: Helvetica, Arial, sans-serif;
- font-size: 13px;
- line-height: 1.231;
- -webkit-touch-callout: none;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-box-align: stretch;
- }
- a {
- text-decoration: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- a:hover {
- opacity: 1;
- }
- b,
- strong {
- font-weight: bold;
- }
- img {
- border: 0;
- -ms-interpolation-mode: bicubic;
- vertical-align: middle;
- font-size: 0;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- th,
- td,
- caption {
- vertical-align: top;
- font-weight: normal;
- text-align: left;
- }
- * {
- margin: 0;
- padding: 0;
- -webkit-user-select: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- }
|