reset.styl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
  3. * http://cssreset.com
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video, input
  18. margin: 0
  19. padding: 0
  20. border: 0
  21. font-size: 100%
  22. font-weight: normal
  23. vertical-align: baseline
  24. /* HTML5 display-role reset for older browsers */
  25. article, aside, details, figcaption, figure,
  26. footer, header, menu, nav, section
  27. display: block
  28. body
  29. line-height: 1
  30. blockquote, q
  31. quotes: none
  32. blockquote:before, blockquote:after,
  33. q:before, q:after
  34. content: none
  35. table
  36. border-collapse: collapse
  37. border-spacing: 0
  38. /* custom */
  39. a
  40. color: #7e8c8d
  41. text-decoration: none
  42. li
  43. list-style: none
  44. body
  45. -webkit-text-size-adjust: none
  46. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)