index.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. -webkit-font-smoothing: antialiased;
  5. -moz-osx-font-smoothing: grayscale;
  6. min-height: 100%;
  7. font-family: Gotham Rounded A, Gotham Rounded B, -apple-system,
  8. BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
  9. 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  10. font-size: 16px;
  11. line-height: 1.5;
  12. color: #4d5659;
  13. text-rendering: optimizeSpeed;
  14. }
  15. code {
  16. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  17. monospace;
  18. }
  19. [hidden] {
  20. display: none;
  21. }
  22. a {
  23. background-color: transparent;
  24. text-decoration: none;
  25. }
  26. a:active,
  27. a:hover {
  28. outline: 0;
  29. }
  30. img {
  31. border: 0;
  32. }
  33. svg:not(:root) {
  34. overflow: hidden;
  35. }
  36. button,
  37. input {
  38. color: inherit;
  39. font: inherit;
  40. margin: 0;
  41. }
  42. button {
  43. overflow: visible;
  44. }
  45. button {
  46. text-transform: none;
  47. }
  48. button,
  49. html input[type='button'],
  50. input[type='reset'],
  51. input[type='submit'] {
  52. -webkit-appearance: button;
  53. cursor: pointer;
  54. }
  55. button[disabled],
  56. html input[disabled] {
  57. cursor: default;
  58. }
  59. button::-moz-focus-inner,
  60. input::-moz-focus-inner {
  61. border: 0;
  62. padding: 0;
  63. }
  64. input {
  65. line-height: normal;
  66. }
  67. *,
  68. *:after,
  69. *:before {
  70. box-sizing: border-box;
  71. }
  72. p {
  73. margin-top: 0;
  74. margin-bottom: 30px;
  75. }
  76. img,
  77. video {
  78. max-width: 100%;
  79. }
  80. html {
  81. box-sizing: border-box;
  82. }
  83. *,
  84. *:before,
  85. *:after {
  86. box-sizing: inherit;
  87. }
  88. * {
  89. margin: 0;
  90. padding: 0;
  91. }