您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_landing.scss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. a:active {
  13. text-decoration: none;
  14. }
  15. }
  16. &__text {
  17. font-size: 1.8em;
  18. margin-bottom: 0.65em;
  19. line-height: em(29px, 21px);
  20. &_small {
  21. margin-top: em(21, 18);
  22. margin-bottom: 1em;
  23. font-size: 1.5em;
  24. strong {
  25. font-size: em(21, 18);
  26. }
  27. }
  28. }
  29. &__logo {
  30. width: 77px;
  31. height: 108px;
  32. }
  33. &__button {
  34. margin: 0 auto;
  35. border: 0;
  36. height: 42px;
  37. width: 98%;
  38. max-width: 300px;
  39. @include border-radius(8px);
  40. background-color: $landingButtonBgColor;
  41. font-size: 1.5em;
  42. font-weight: 300;
  43. letter-spacing: 0.5px;
  44. text-shadow: 0px 1px 2px $landingTextColor;
  45. // Disable standard button effects
  46. outline: none;
  47. box-shadow: none;
  48. &:active {
  49. background-color: $landingButtonBgColor;
  50. }
  51. &_primary {
  52. background-color: $primaryLandingButtonBgColor;
  53. &:active {
  54. background-color: $primaryLandingButtonBgColor;
  55. }
  56. }
  57. }
  58. }