Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.scss 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. @import "abstracts/functions";
  2. @import "abstracts/mixins";
  3. @import "abstracts/variables";
  4. @import "base/base";
  5. @import "base/typography";
  6. @import "base/utilities";
  7. // components
  8. @import "components/button";
  9. // pages
  10. @import "pages/productOverview";
  11. @import "pages/home";
  12. @import "pages/shopping-cart";
  13. /*
  14. 0 - 600px: Phone
  15. 600 - 900px: Tablet portrait
  16. 900 - 1200px: Tablet landscape
  17. [1200 - 1800] is where our normal styles apply
  18. 1800px + : Big desktop
  19. $breakpoint arguement choices:
  20. - phone
  21. - tab-port
  22. - tab-land
  23. - big-desktop
  24. ORDER: Base + typography > general layout + grid > page layout > components
  25. 1em = 16px
  26. */
  27. /* Orbitron */
  28. @font-face {
  29. font-family: "Orbitron";
  30. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  31. font-weight: 400;
  32. font-style: normal;
  33. }
  34. @font-face {
  35. font-family: "Orbitron";
  36. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  37. font-weight: 500;
  38. font-style: normal;
  39. }
  40. @font-face {
  41. font-family: "Orbitron";
  42. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  43. font-weight: 600;
  44. font-style: normal;
  45. }
  46. @font-face {
  47. font-family: "Orbitron";
  48. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  49. font-weight: 700;
  50. font-style: normal;
  51. }
  52. /* Orbitron end */
  53. /* Satoshi */
  54. @font-face {
  55. font-family: "Satoshi";
  56. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  57. font-weight: 400;
  58. font-style: normal;
  59. }
  60. @font-face {
  61. font-family: "Satoshi";
  62. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  63. font-weight: 500;
  64. font-style: normal;
  65. }
  66. @font-face {
  67. font-family: "Satoshi";
  68. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  69. font-weight: 700;
  70. font-style: normal;
  71. }
  72. *,
  73. *::after,
  74. *::before {
  75. margin: 0;
  76. padding: 0;
  77. box-sizing: inherit;
  78. font-family: "Orbitron", sans-serif;
  79. }
  80. /* Satoshi end */
  81. .satoshi_font {
  82. font-family: "Satoshi", sans-serif;
  83. }
  84. html {
  85. font-size: 100%;
  86. }
  87. body {
  88. box-sizing: border-box;
  89. overflow-x: hidden;
  90. }
  91. @media only screen and (max-width: 56.25em) {
  92. body {
  93. padding: 0;
  94. }
  95. }
  96. // html {
  97. // font-size: 100%; }
  98. // body {
  99. // box-sizing: border-box;
  100. // overflow-x: hidden;
  101. // }
  102. // @media only screen and (max-width: 56.25em) {
  103. // body {
  104. // padding: 0; }
  105. // }
  106. .bg-green {
  107. background-color: #3bb78f;
  108. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  109. }
  110. /* button */
  111. .button_dark {
  112. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  113. padding-right: 1.7rem;
  114. padding-bottom: 0.6rem;
  115. padding-top: 0.6rem;
  116. border-radius: 10px;
  117. }
  118. // navbar
  119. .biz-nav-wrapper {
  120. .navbar-brand img {
  121. width: 150px;
  122. }
  123. }
  124. .navbar-nav .nav-item .nav-link {
  125. color: #000000;
  126. font-family: "Satoshi", sans-serif;
  127. }
  128. /* footer */
  129. .footer-wrapper {
  130. // background-color: rgb(0, 0, 0);
  131. background-image: url(../dist/assets/imgs/Home/Footer-bg-1.png);
  132. background-size: cover;
  133. .footer-content-main-container {
  134. background-image: url(../dist/assets/imgs/Home/Footer-pattern.png);
  135. background-size: contain;
  136. background-position: right 30px;
  137. background-repeat: no-repeat;
  138. }
  139. .last-col-footer {
  140. width: 23%;
  141. }
  142. @media (min-width:1990px) {
  143. .footer-rkt {
  144. right: 45px !important;
  145. }
  146. }
  147. .footer-logo img {
  148. width: 120px;
  149. }
  150. li,
  151. .footer-sub-content p {
  152. line-height: 2rem;
  153. font-family: "Satoshi", sans-serif;
  154. }
  155. }