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.

_landing.scss 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .landing {
  2. background-color: #fff;
  3. width: 100vw;
  4. height: 100vh;
  5. padding: 35px 0;
  6. &__body {
  7. margin: auto;
  8. width: 75%;
  9. max-width: 40em;
  10. text-align: center;
  11. color: $landingTextColor;
  12. }
  13. &__text {
  14. font-size: 1.8em;
  15. margin-bottom: 0.65em;
  16. line-height: em(29px, 21px);
  17. &_small {
  18. margin-top: em(21, 18);
  19. margin-bottom: 1em;
  20. font-size: 1.5em;
  21. strong {
  22. font-size: em(21, 18);
  23. }
  24. }
  25. }
  26. &__logo {
  27. width: 77px;
  28. height: auto;
  29. }
  30. &__button {
  31. margin: 0 auto;
  32. border: 0;
  33. height: 42px;
  34. width: 98%;
  35. max-width: 300px;
  36. @include border-radius(8px);
  37. background-color: $landingButtonBgColor;
  38. font-size: 1.5em;
  39. font-weight: 300;
  40. letter-spacing: 0.5px;
  41. text-shadow: 0px 1px 2px $landingTextColor;
  42. // Disable standard button effects
  43. outline: none;
  44. box-shadow: none;
  45. &:active {
  46. background-color: $landingButtonBgColor;
  47. }
  48. &_primary {
  49. background-color: $primaryLandingButtonBgColor;
  50. &:active {
  51. background-color: $primaryLandingButtonBgColor;
  52. }
  53. }
  54. }
  55. }