base.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700&display=swap');
  2. @import "variables";
  3. *,
  4. *:after,
  5. *:before {
  6. margin: 0;
  7. padding: 0;
  8. -webkit-box-sizing: inherit;
  9. box-sizing: inherit;
  10. }
  11. html {
  12. font-size: 62.5% !important;
  13. // @include breakpoint(lg) {
  14. // font-size: 56.25% !important;
  15. // }
  16. // @include breakpoint(md) {
  17. // font-size: 50% !important;
  18. // }
  19. // @include breakpoint(sm) {
  20. // font-size: 62.5% !important;
  21. // }
  22. }
  23. body,
  24. div,
  25. dl,
  26. dt,
  27. dd,
  28. ul,
  29. ol,
  30. li,
  31. h1,
  32. h2,
  33. h3,
  34. h4,
  35. h5,
  36. h6,
  37. pre,
  38. form,
  39. fieldset,
  40. input,
  41. textarea,
  42. p,
  43. blockquote,
  44. th,
  45. td {
  46. padding: 0;
  47. margin: 0;
  48. }
  49. textarea {
  50. resize: none;
  51. }
  52. table {
  53. border-collapse: collapse;
  54. border-spacing: 0;
  55. }
  56. fieldset,
  57. img {
  58. border: 0;
  59. }
  60. address,
  61. caption,
  62. cite,
  63. code,
  64. dfn,
  65. em,
  66. strong,
  67. th,
  68. var {
  69. font-weight: normal;
  70. font-style: normal;
  71. }
  72. ol,
  73. ul {
  74. list-style: none;
  75. }
  76. caption,
  77. th {
  78. text-align: left;
  79. }
  80. h1,
  81. h2,
  82. h3,
  83. h4,
  84. h5,
  85. h6 {
  86. font-weight: normal;
  87. }
  88. abbr,
  89. acronym {
  90. border: 0;
  91. }
  92. body {
  93. font-family: $typo-1;
  94. line-height: 1.7 !important;
  95. font-size: inherit !important;
  96. box-sizing: border-box;
  97. min-width: 320px;
  98. }
  99. a:hover {
  100. text-decoration: none;
  101. }
  102. button {
  103. cursor: pointer;
  104. outline: none;
  105. box-shadow: none;
  106. }
  107. .button-position-bottom {
  108. max-width: 1000px;
  109. position: fixed;
  110. bottom: 5px;
  111. left: 50%;
  112. transform: translate(0% -50%);
  113. transform: translateX(-50%);
  114. z-index: 1;
  115. }
  116. .container {
  117. &-wrap {
  118. //max-width: 1440px;
  119. width: 100%;
  120. //padding-left: 16px;
  121. padding-right: 16px;
  122. padding-left: 380px;
  123. }
  124. }