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

_mobile-browser-page.scss 1.5KB

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