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.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .unsupported-mobile-browser {
  2. background-color: #fff;
  3. height: 100vh;
  4. overflow: auto;
  5. position: relative;
  6. width: 100vw;
  7. a {
  8. text-decoration: none
  9. }
  10. &__body {
  11. color: $unsupportedBrowserTextColor;
  12. margin: auto;
  13. max-width: 40em;
  14. padding: 35px 0 40px 0;
  15. text-align: center;
  16. width: 75%;
  17. a:active {
  18. text-decoration: none;
  19. }
  20. }
  21. &__text,
  22. .unsupported-dial-in {
  23. font-size: 1.2em;
  24. line-height: em(29px, 21px);
  25. margin-bottom: 0.65em;
  26. &_small {
  27. font-size: 1.5em;
  28. margin-bottom: 1em;
  29. margin-top: em(21, 18);
  30. strong {
  31. font-size: em(21, 18);
  32. }
  33. }
  34. }
  35. &__logo {
  36. height: 108px;
  37. width: 77px;
  38. }
  39. &__button {
  40. border: 0;
  41. height: 2.2857142857142856em;
  42. line-height: 2.2857142857142856em;
  43. margin: 18px auto 20px;
  44. max-width: 300px;
  45. width: auto;
  46. @include border-radius(3px);
  47. background-color: $unsupportedBrowserButtonBgColor;
  48. color: #505F79;
  49. &:active {
  50. background-color: $unsupportedBrowserButtonBgColor;
  51. }
  52. &_primary {
  53. background-color: $primaryUnsupportedBrowserButtonBgColor;
  54. color: #FFFFFF;
  55. &:active {
  56. background-color: $primaryUnsupportedBrowserButtonBgColor;
  57. }
  58. }
  59. }
  60. .unsupported-dial-in {
  61. display: none;
  62. &.has-numbers {
  63. align-items: center;
  64. display: flex;
  65. flex-direction: column;
  66. }
  67. .dial-in-numbers-list {
  68. color: $unsupportedBrowserTextColor;
  69. }
  70. .dial-in-numbers-body {
  71. vertical-align: top;
  72. }
  73. }
  74. }