Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_mobile.scss 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. .deep-linking-mobile {
  2. background-color: #fff;
  3. height: 100vh;
  4. overflow: auto;
  5. position: relative;
  6. width: 100vw;
  7. .header {
  8. width: 100%;
  9. height: 70px;
  10. background-color: $deepLinkingMobileHeaderBackground;
  11. text-align: center;
  12. .logo {
  13. margin-top: 15px;
  14. margin-left: auto;
  15. margin-right: auto;
  16. height: $deepLinkingMobileLogoHeight;
  17. }
  18. }
  19. a {
  20. text-decoration: none
  21. }
  22. &__body {
  23. color: $unsupportedBrowserTextColor;
  24. margin: auto;
  25. max-width: 40em;
  26. padding: 35px 0 40px 0;
  27. text-align: center;
  28. width: 90%;
  29. a:active {
  30. text-decoration: none;
  31. }
  32. .image {
  33. max-width: 80%;
  34. }
  35. }
  36. &__text {
  37. font-weight: bolder;
  38. padding: 10px 10px 0px 10px;
  39. }
  40. &__text,
  41. .deep-linking-dial-in {
  42. font-size: 1em;
  43. line-height: em(29px, 21px);
  44. margin-bottom: 0.65em;
  45. &_small {
  46. font-size: 1.5em;
  47. margin-bottom: 1em;
  48. margin-top: em(21, 18);
  49. strong {
  50. font-size: em(21, 18);
  51. }
  52. }
  53. table {
  54. font-size: 1em;
  55. }
  56. .dial-in-conference-id {
  57. margin: 10px 0 10px 0;
  58. }
  59. .dial-in-conference-description {
  60. font-size: 0.8em;
  61. }
  62. .toll-free-list {
  63. min-width: 80px;
  64. }
  65. .numbers-list {
  66. min-width: 150px;
  67. }
  68. li.toll-free:empty:before {
  69. content: '.';
  70. visibility: hidden;
  71. }
  72. }
  73. &__href {
  74. height: 2.2857142857142856em;
  75. line-height: 2.2857142857142856em;
  76. margin: 18px auto 20px;
  77. max-width: 300px;
  78. width: auto;
  79. font-weight: bolder;
  80. }
  81. &__button {
  82. border: 0;
  83. height: 2.2857142857142856em;
  84. line-height: 2.2857142857142856em;
  85. margin: 18px auto 10px;
  86. padding: 0px 10px 0px 10px;
  87. max-width: 300px;
  88. width: auto;
  89. @include border-radius(3px);
  90. background-color: $unsupportedBrowserButtonBgColor;
  91. color: #505F79;
  92. font-weight: bold;
  93. &:active {
  94. background-color: $unsupportedBrowserButtonBgColor;
  95. }
  96. &_primary {
  97. background-color: $primaryUnsupportedBrowserButtonBgColor;
  98. color: #FFFFFF;
  99. &:active {
  100. background-color: $primaryUnsupportedBrowserButtonBgColor;
  101. }
  102. }
  103. }
  104. .deep-linking-dial-in {
  105. display: none;
  106. &.has-numbers {
  107. align-items: center;
  108. display: flex;
  109. flex-direction: column;
  110. }
  111. .dial-in-numbers-list {
  112. color: $unsupportedBrowserTextColor;
  113. padding-left: 20px;
  114. }
  115. .dial-in-numbers-body {
  116. vertical-align: top;
  117. }
  118. }
  119. }