landing-page-theme.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. @mixin landing-page-theme() {
  2. app-landing-page {
  3. .landingPage {
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .get-start {
  8. width: 100%;
  9. background-color: $off-white;
  10. border-radius: 20px;
  11. padding: 40px 40px;
  12. margin-top: 20px;
  13. &__description {
  14. h1 {
  15. color: $main-color;
  16. font-size: 50px;
  17. font-family: Montserrat-Bold;
  18. @media (max-width: 767px) {
  19. font-size: 30px;
  20. }
  21. }
  22. p {
  23. color: $main-color;
  24. font-size: 18px;
  25. margin-top: 20px;
  26. }
  27. }
  28. &__btn {
  29. background-color: $main-color;
  30. padding: 10px 30px;
  31. border-radius: 50px;
  32. color: $white-color;
  33. margin-top: 20px;
  34. border: 1px solid $main-color;
  35. cursor: pointer;
  36. transition: all 0.5s;
  37. font-size: 14px;
  38. &:hover {
  39. background-color: $main-blue;
  40. border: 1px solid $main-blue;
  41. }
  42. }
  43. }
  44. .platform {
  45. width: 100%;
  46. padding: 20px 60px;
  47. background-color: $white-color;
  48. div {
  49. span {
  50. font-size: 40px;
  51. color: $main-color;
  52. font-family: Montserrat-Bold;
  53. @media (max-width: 767px) {
  54. font-size: 25px;
  55. padding-left: 0 !important;
  56. padding-right: 0 !important;
  57. }
  58. }
  59. p {
  60. color: $main-color;
  61. font-size: 20px;
  62. font-weight: 200;
  63. margin-top: 20px;
  64. }
  65. }
  66. }
  67. .vision {
  68. background-color: $off-white;
  69. padding: 40px 40px;
  70. div {
  71. background-color: $open-light-blue;
  72. padding: 20px;
  73. border-radius: 20px;
  74. h2 {
  75. font-size: 17px;
  76. margin: 10px 0;
  77. color: $main-color;
  78. font-family: Montserrat-Bold;
  79. }
  80. p {
  81. font-size: 13px;
  82. color: $main-color;
  83. text-align: center;
  84. }
  85. }
  86. }
  87. .tools {
  88. background-color: $white-color;
  89. border-radius: 20px;
  90. padding: 40px 40px;
  91. margin-top: 20px;
  92. position: relative;
  93. .content {
  94. position: relative;
  95. width: 230px;
  96. height: 200px;
  97. border-radius: 20px;
  98. img {
  99. width: 100%;
  100. height: 100%;
  101. object-fit: cover;
  102. }
  103. .overlay {
  104. position: absolute;
  105. top: 0;
  106. right: 0;
  107. left: 0;
  108. right: 0;
  109. background: rgba($color: #2e368f, $alpha: 0.3);
  110. opacity: 0;
  111. width: 100%;
  112. height: 100%;
  113. border-radius: 20px;
  114. }
  115. &:hover {
  116. .overlay {
  117. opacity: 1;
  118. }
  119. }
  120. }
  121. h1 {
  122. text-align: center;
  123. color: $main-color;
  124. font-family: Montserrat-Bold;
  125. font-size: 25px;
  126. margin-bottom: 2rem;
  127. }
  128. p {
  129. text-align: center;
  130. margin: 30px 0;
  131. color: $main-color;
  132. font-size: 18px;
  133. }
  134. }
  135. .promoting {
  136. width: 100%;
  137. background-color: $off-white;
  138. margin-top: 20px;
  139. padding: 40px 40px;
  140. h1 {
  141. text-align: center;
  142. color: $main-color;
  143. font-size: 25px;
  144. margin-bottom: 20px;
  145. font-family: Montserrat-Bold;
  146. }
  147. p {
  148. font-size: 18px;
  149. font-weight: 400;
  150. color: $main-color;
  151. text-align: center;
  152. margin-bottom: 20px;
  153. }
  154. .cards {
  155. gap: 15px;
  156. div {
  157. background-color: $open-light-blue;
  158. padding: 20px;
  159. border-radius: 20px;
  160. width: 300px;
  161. @media (max-width: 767px) {
  162. width: 100%;
  163. }
  164. p {
  165. font-size: 16px;
  166. color: $main-color;
  167. margin: 10px 0;
  168. font-weight: 500;
  169. font-family: Montserrat-Bold;
  170. }
  171. span {
  172. color: $main-color;
  173. font-size: 16px;
  174. font-weight: 300;
  175. }
  176. }
  177. }
  178. }
  179. .benefits {
  180. background-color: $white-color;
  181. border-radius: 20px;
  182. padding: 20px 40px;
  183. margin-top: 20px;
  184. width: 100%;
  185. @media (max-width: 767px) {
  186. padding: 20px 20px;
  187. }
  188. h1 {
  189. color: $main-color;
  190. font-size: 25px;
  191. margin-bottom: 40px;
  192. font-family: Montserrat-Bold;
  193. }
  194. button {
  195. background-color: $main-color;
  196. border: 1px solid $main-color;
  197. font-size: 15px;
  198. padding: 10px 30px;
  199. border-radius: 30px;
  200. margin-top: 30px;
  201. color: $white-color;
  202. transition: all 0.5s;
  203. cursor: pointer;
  204. &:hover {
  205. background-color: $main-blue;
  206. border: 1px solid $main-blue;
  207. }
  208. }
  209. }
  210. .why-mt {
  211. width: 100%;
  212. background-color: $off-white;
  213. padding: 40px 40px;
  214. h1 {
  215. color: $main-color;
  216. font-size: 25px;
  217. margin-bottom: 20px;
  218. font-family: Montserrat-Bold;
  219. img {
  220. width: 100px;
  221. margin: 0 5px;
  222. }
  223. }
  224. ul {
  225. list-style: none;
  226. gap: 30px;
  227. padding: 40px 0;
  228. li {
  229. span {
  230. color: $main-color;
  231. font-size: 17px;
  232. }
  233. }
  234. }
  235. button {
  236. background-color: $main-color;
  237. font-size: 15px;
  238. color: $white-color;
  239. border-radius: 20px;
  240. border: 1px solid $main-color;
  241. padding: 10px 30px;
  242. transition: all 0.5s;
  243. cursor: pointer;
  244. border: 1px solid $main-color;
  245. &:hover {
  246. background-color: $main-blue;
  247. border: 1px solid $main-blue;
  248. }
  249. }
  250. }
  251. .footer {
  252. width: 100%;
  253. padding: 40px 40px;
  254. background-color: $main-color;
  255. div {
  256. @media (max-width: 767px) {
  257. margin-top: 20px;
  258. }
  259. h2 {
  260. color: $white-color;
  261. font-size: 18px;
  262. margin-bottom: 10px;
  263. }
  264. ul {
  265. list-style: none;
  266. li {
  267. color: $white-color;
  268. font-weight: 300;
  269. font-size: 14px;
  270. margin-bottom: 10px;
  271. cursor: pointer;
  272. }
  273. }
  274. }
  275. .highlight {
  276. padding: 20px 40px;
  277. @media (max-width: 767px) {
  278. padding: 0;
  279. }
  280. p {
  281. color: $white-color;
  282. font-size: 18px;
  283. font-weight: 300;
  284. @media (max-width: 767px) {
  285. font-size: 15px;
  286. margin-bottom: 20px;
  287. }
  288. }
  289. ul {
  290. li {
  291. font-size: 15px;
  292. cursor: pointer;
  293. }
  294. }
  295. }
  296. }
  297. }
  298. }