reset.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. html5doctor.com Reset Stylesheet v1.6.1
  3. Last Updated: 2010-09-17
  4. Author: Richard Clark - http://richclarkdesign.com
  5. */
  6. html, body, div, span, object, iframe,
  7. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  8. abbr, address, cite, code,
  9. del, dfn, em, img, ins, kbd, q, samp,
  10. small, strong, sub, sup, var,
  11. b, i,
  12. dl, dt, dd, ol, ul, li,
  13. fieldset, form, label, legend,
  14. table, caption, tbody, tfoot, thead, tr, th, td,
  15. article, aside, canvas, details, figcaption, figure,
  16. footer, header, hgroup, menu, nav, section, summary,
  17. time, mark, audio, video {
  18. margin:0;
  19. padding:0;
  20. border:0;
  21. outline:0;
  22. font-size:100%;
  23. vertical-align:baseline;
  24. background:transparent;
  25. }
  26. body {
  27. line-height:1;
  28. }
  29. article,aside,details,figcaption,figure,
  30. footer,header,hgroup,menu,nav,section {
  31. display:block;
  32. }
  33. nav ul {
  34. list-style:none;
  35. }
  36. blockquote, q {
  37. quotes:none;
  38. }
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content:'';
  42. content:none;
  43. }
  44. a {
  45. margin:0;
  46. padding:0;
  47. font-size:100%;
  48. vertical-align:baseline;
  49. background:transparent;
  50. }
  51. /* change colours to suit your needs */
  52. ins {
  53. background-color:#ff9;
  54. color:#000;
  55. text-decoration:none;
  56. }
  57. /* change colours to suit your needs */
  58. mark {
  59. background-color:#ff9;
  60. color:#000;
  61. font-style:italic;
  62. font-weight:bold;
  63. }
  64. del {
  65. text-decoration: line-through;
  66. }
  67. abbr[title], dfn[title] {
  68. border-bottom:1px dotted;
  69. cursor:help;
  70. }
  71. table {
  72. border-collapse:collapse;
  73. border-spacing:0;
  74. }
  75. /* change border colour to suit your needs */
  76. hr {
  77. display:block;
  78. height:1px;
  79. border:0;
  80. border-top:1px solid #cccccc;
  81. margin:1em 0;
  82. padding:0;
  83. }
  84. input, select {
  85. vertical-align:middle;
  86. }