base.scss 840 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. min-width: 320px;
  85. }
  86. a:hover {
  87. text-decoration: none;
  88. }
  89. button {
  90. cursor: pointer;
  91. }