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.

_unsupported-mobile-browser.scss 1.4KB

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