You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB

  1. /* ------- This is the CSS Reset ------- */
  2. html, body, div, span, applet, object, iframe,
  3. h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
  4. abbr, acronym, address, big, cite, code, del,
  5. dfn, em, img, ins, kbd, q, s, samp, small,
  6. strike, strong, sub, sup, tt, var, u, i, center,
  7. dl, dt, dd, ol, ul, li, fieldset, form, label,
  8. legend, table, caption, tbody, tfoot, thead, tr,
  9. th, td, article, aside, canvas, details, embed,
  10. figure, figcaption, footer, header, hgroup, menu,
  11. nav, output, ruby, section, summary, time, mark, audio, video {
  12. margin: 0;
  13. padding: 0;
  14. border: 0;
  15. font-size: 100%;
  16. font: inherit;
  17. vertical-align: baseline;
  18. }
  19. /* ------- HTML5 display-role reset for older browsers ------- */
  20. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  21. display: block;
  22. }
  23. body {
  24. line-height: 1;
  25. }
  26. ol, ul {
  27. list-style: none;
  28. }
  29. blockquote, q {
  30. quotes: none;
  31. }
  32. blockquote:before, blockquote:after, q:before, q:after {
  33. content: '';
  34. content: none;
  35. }
  36. table {
  37. border-collapse: collapse;
  38. border-spacing: 0;
  39. }