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

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