cahnory

PlastiCSS — quick global scope styling (output)

Mar 25th, 2013
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.57 KB | None | 0 0
  1. /* Global scope */
  2. @-webkit-keyframes adjacentSelectorWebkitBugFix {
  3.   from {
  4.     display: block;
  5.   }
  6.   to {
  7.     display: block;
  8.   }
  9. }
  10. body {
  11.   -webkit-animation: adjacentSelectorWebkitBugFix infinite 1s;
  12. }
  13. [disabled] {
  14.   opacity: 1;
  15.   -webkit-text-fill-color: currentcolor;
  16. }
  17. html,
  18. body {
  19.   margin: 0;
  20.   padding: 0;
  21. }
  22. html {
  23.   font-size: 62.5%;
  24. }
  25. body {
  26.   font: 1.6em/1.5 Arial, "Arial Unicode MS", Helvetica, MyriadPro, Freesans, "Nimbus Sans L", "Liberation Sans", sans-serif;
  27. }
  28. h1,
  29. .h1 {
  30.   font-size: 3em;
  31.   line-height: 1em;
  32.   margin-bottom: 0.5em;
  33.   margin-top: 1em;
  34. }
  35. h2,
  36. .h2 {
  37.   font-size: 2.6667em;
  38.   line-height: 1.125em;
  39.   margin-bottom: 0.5625em;
  40.   margin-top: 1.125em;
  41. }
  42. h3,
  43. .h3 {
  44.   font-size: 2.3333em;
  45.   line-height: 1.2857em;
  46.   margin-bottom: 0.6429em;
  47.   margin-top: 1.2857em;
  48. }
  49. h4,
  50. .h4 {
  51.   font-size: 2em;
  52.   line-height: 1.5em;
  53.   margin-bottom: 0.75em;
  54.   margin-top: 1.5em;
  55. }
  56. h5,
  57. .h5 {
  58.   font-size: 1.6667em;
  59.   line-height: 1.8em;
  60.   margin-bottom: 0.9em;
  61.   margin-top: 1.8em;
  62. }
  63. h6,
  64. .h6 {
  65.   font-size: 1.3333em;
  66.   line-height: 1.125em;
  67.   margin-bottom: 1.125em;
  68.   margin-top: 2.25em;
  69. }
  70. p,
  71. ul,
  72. ol,
  73. dl,
  74. blockquote,
  75. pre,
  76. td,
  77. th,
  78. caption,
  79. details,
  80. figure,
  81. hgroup {
  82.   font-size: 1em;
  83.   line-height: 1.5em;
  84.   margin-bottom: 1.5em;
  85.   margin-top: 1.5em;
  86. }
  87. img {
  88.   height: auto;
  89.   width: auto;
  90. }
  91. a img {
  92.   border: none;
  93. }
  94. abbr[title],
  95. acronym[title] {
  96.   cursor: help;
  97.   border-bottom: dotted 1px;
  98. }
  99. .vcard abbr {
  100.   cursor: text;
  101.   border-bottom: none;
  102. }
  103. label,
  104. input,
  105. textarea {
  106.   font-size: 1em;
  107. }
Advertisement
Add Comment
Please, Sign In to add comment