_reset.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. * {
  2. -webkit-box-sizing: border-box;
  3. box-sizing: border-box;
  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, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. font-size: 100% ;
  22. vertical-align: baseline;
  23. }
  24. html, body{
  25. font-size: 16px;
  26. line-height: 16px;
  27. }
  28. /* HTML5 display-role reset for older browsers */
  29. article, aside, details, figcaption, figure,
  30. footer, header, hgroup, menu, nav, section {
  31. display: block;
  32. }
  33. body {
  34. margin: 0;
  35. }
  36. ol, ul {
  37. list-style: none;
  38. }
  39. a{
  40. text-decoration: none;
  41. color:black;
  42. }
  43. blockquote, q {
  44. quotes: none;
  45. }
  46. img{
  47. width: 100%;
  48. height: auto;
  49. vertical-align: bottom;
  50. }
  51. blockquote:before, blockquote:after,
  52. q:before, q:after {
  53. content: '';
  54. content: none;
  55. }
  56. table {
  57. border-collapse: collapse;
  58. border-spacing: 0;
  59. }