App.css 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body,
  5. div,
  6. dl,
  7. dt,
  8. dd,
  9. ul,
  10. ol,
  11. li,
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6,
  18. pre,
  19. code,
  20. form,
  21. fieldset,
  22. legend,
  23. input,
  24. button,
  25. textarea,
  26. p,
  27. blockquote,
  28. th,
  29. td {
  30. margin: 0;
  31. padding: 0;
  32. }
  33. body {
  34. background: #fff;
  35. color: #555;
  36. font-size: 14px;
  37. font-family: Verdana, Arial, Helvetica, sans-serif;
  38. }
  39. td,
  40. th,
  41. caption {
  42. font-size: 14px;
  43. }
  44. h1,
  45. h2,
  46. h3,
  47. h4,
  48. h5,
  49. h6 {
  50. font-weight: normal;
  51. font-size: 100%;
  52. }
  53. address,
  54. caption,
  55. cite,
  56. code,
  57. dfn,
  58. em,
  59. strong,
  60. th,
  61. var {
  62. font-style: normal;
  63. font-weight: normal;
  64. }
  65. ol,
  66. ul,
  67. li {
  68. list-style: none;
  69. }
  70. input,
  71. textarea,
  72. select,
  73. button {
  74. font: 14px Verdana, Helvetica, Arial, sans-serif;
  75. }
  76. table {
  77. border-collapse: collapse;
  78. }
  79. html {
  80. overflow-y: scroll;
  81. }
  82. a{
  83. color: black;
  84. }