common.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. html, body, div, span, applet, object, iframe,
  2. blockquote, pre, abbr, acronym, address, big, cite, code,
  3. del, dfn, em, img, ins, kbd, q, s, samp,
  4. small, strike, strong, sub, sup, tt, var,
  5. b, u, i, center,
  6. dl, dt, dd, ol, ul, li,
  7. fieldset, form, label, legend,
  8. table, caption, tbody, tfoot, thead, tr, th, td,
  9. article, aside, canvas, details, embed,
  10. figure, figcaption, footer, header, hgroup,
  11. menu, nav, output, ruby, section, summary,
  12. time, mark, audio, video {
  13. margin: 0;
  14. padding: 0;
  15. border: 0;
  16. font-size: 100%;
  17. font: inherit;
  18. vertical-align: baseline;
  19. }
  20. /* HTML5 display-role reset for older browsers */
  21. article, aside, details, figcaption, figure,
  22. footer, header, hgroup, menu, nav, section {
  23. display: block;
  24. }
  25. a {
  26. text-decoration: none;
  27. }
  28. body {
  29. line-height: 1;
  30. background: #F4F5F9;
  31. --fontColor: #515151;
  32. }
  33. ol, 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. table {
  45. border-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. input {
  49. outline: none;
  50. border: 0;
  51. }
  52. button {
  53. border: 0;
  54. padding: 0;
  55. margin: 0;
  56. background: transparent;
  57. outline: none;
  58. cursor: pointer;
  59. }
  60. sub {
  61. font-size: .6em;
  62. }