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.

58 lines
835 B

  1. /*******************************
  2. CSS Reset
  3. *******************************/
  4. html, body, div, form, fieldset, legend, label, ul, li, menu, button {
  5. margin: 0px;
  6. padding: 0px;
  7. background: none;
  8. }
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. hgroup,
  17. nav,
  18. section {
  19. display: block
  20. }
  21. table {
  22. border-collapse: collapse;
  23. border-spacing: 0px;
  24. }
  25. th, td {
  26. text-align: left;
  27. vertical-align: top;
  28. }
  29. th, td, caption {
  30. font-weight:normal;
  31. margin: 0px;
  32. padding: 0px;
  33. }
  34. img,
  35. iframe {
  36. border: 0px;
  37. }
  38. :focus, input:focus, button:focus, button:active, button:hover {
  39. outline: 0px;
  40. }
  41. button {
  42. display: block;
  43. outline: 0px;
  44. border: 0px;
  45. }
  46. ul, li {
  47. list-style-type: none;
  48. }
  49. p {
  50. margin: 0px;
  51. }
  52. html {
  53. font-size: 100%;
  54. -webkit-text-size-adjust: 100%;
  55. -ms-text-size-adjust: 100%;
  56. }