_base.scss 888 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. *,
  2. *:after,
  3. *:before {
  4. margin: 0;
  5. padding: 0;
  6. -webkit-box-sizing: inherit;
  7. box-sizing: inherit;
  8. }
  9. html {
  10. font-size: 62.5%;
  11. }
  12. body,
  13. div,
  14. dl,
  15. dt,
  16. dd,
  17. ul,
  18. ol,
  19. li,
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6,
  26. pre,
  27. form,
  28. fieldset,
  29. input,
  30. textarea,
  31. p,
  32. blockquote,
  33. th,
  34. td {
  35. padding: 0;
  36. margin: 0;
  37. }
  38. table {
  39. border-collapse: collapse;
  40. border-spacing: 0;
  41. }
  42. fieldset,
  43. img {
  44. border: 0;
  45. }
  46. address,
  47. caption,
  48. cite,
  49. code,
  50. dfn,
  51. em,
  52. strong,
  53. th,
  54. var {
  55. font-weight: normal;
  56. font-style: normal;
  57. }
  58. ol,
  59. ul {
  60. list-style: none;
  61. }
  62. caption,
  63. th {
  64. text-align: left;
  65. }
  66. h1,
  67. h2,
  68. h3,
  69. h4,
  70. h5,
  71. h6 {
  72. font-weight: normal;
  73. font-size: 100%;
  74. }
  75. abbr,
  76. acronym {
  77. border: 0;
  78. }
  79. body {
  80. font-family: "roboto", sans-serif;
  81. line-height: 1.7;
  82. box-sizing: border-box;
  83. background: $color-backgtound;
  84. background-color: #f6f8f9;
  85. min-width: 320px;
  86. max-width: 1350px;
  87. }
  88. a:hover {
  89. text-decoration: none;
  90. }
  91. button {
  92. cursor: pointer;
  93. }