reset.css 1.4 KB

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