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.

_mobile.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. color: $deepLinkingMobileLinkColor;
  22. }
  23. &__body {
  24. color: $unsupportedBrowserTextColor;
  25. margin: auto;
  26. max-width: 40em;
  27. padding: 35px 0 40px 0;
  28. text-align: center;
  29. width: 90%;
  30. a:active {
  31. text-decoration: none;
  32. }
  33. .image {
  34. max-width: 80%;
  35. }
  36. }
  37. &__text {
  38. font-weight: bolder;
  39. font-size: $deepLinkingMobileTextFontSize;
  40. line-height: $deepLinkingMobileTextLineHeight;
  41. padding: 10px 10px 0px 10px;
  42. }
  43. &__text,
  44. .deep-linking-dial-in {
  45. font-size: 1em;
  46. line-height: em(29px, 21px);
  47. margin-bottom: 0.65em;
  48. &_small {
  49. font-size: 1.5em;
  50. margin-bottom: 1em;
  51. margin-top: em(21, 18);
  52. strong {
  53. font-size: em(21, 18);
  54. }
  55. }
  56. table {
  57. font-size: 1em;
  58. }
  59. .dial-in-conference-id {
  60. margin: $deepLinkingDialInConferenceIdMargin;
  61. padding: $deepLinkingDialInConferenceIdPadding;
  62. background-color: $deepLinkingDialInConferenceIdBackgroundColor;
  63. border-radius: $deepLinkingDialInConferenceIdBorderRadius;
  64. }
  65. .dial-in-conference-name {
  66. font-size: $deepLinkingDialInConferenceNameFontSize;
  67. line-height: $deepLinkingDialInConferenceNameLineHeight;
  68. margin-bottom: $deepLinkingDialInConferenceNameMarginBottom;
  69. font-weight: $deepLinkingDialInConferenceNameFontWeight;
  70. }
  71. .dial-in-conference-description {
  72. font-size: $deepLinkingDialInConferenceDescriptionFontSize;
  73. line-height: $deepLinkingDialInConferenceDescriptionLineHeight;
  74. margin-bottom: $deepLinkingDialInConferenceDescriptionMarginBottom;
  75. }
  76. .dial-in-conference-pin {
  77. font-size: $deepLinkingDialInConferencePinFontSize;
  78. line-height: $deepLinkingDialInConferencePinLineHeight;
  79. }
  80. .toll-free-list {
  81. min-width: 80px;
  82. }
  83. .numbers-list {
  84. min-width: 150px;
  85. }
  86. li.toll-free:empty:before {
  87. content: '.';
  88. visibility: hidden;
  89. }
  90. }
  91. &__href {
  92. height: 2.2857142857142856em;
  93. line-height: $depLinkingMobileHrefLineHeight;
  94. margin: 18px auto 20px;
  95. max-width: 300px;
  96. width: auto;
  97. font-weight: $deepLinkingMobileHrefFontWeight;
  98. font-size: $deepLinkingMobileHrefFontSize;
  99. }
  100. &__button {
  101. border: 0;
  102. height: $deepLinkingMobileButtonHeight;
  103. line-height: $deepLinkingMobileButtonLineHeight;
  104. margin: $deepLinkingMobileButtonMargin;
  105. padding: 0px 10px 0px 10px;
  106. max-width: 300px;
  107. width: $deepLinkingMobileButtonWidth;
  108. @include border-radius(3px);
  109. background-color: $unsupportedBrowserButtonBgColor;
  110. color: #505F79;
  111. font-weight: $deepLinkingMobileButtonFontWeight;
  112. font-size: $deepLinkingMobileButtonFontSize;
  113. &:active {
  114. background-color: $unsupportedBrowserButtonBgColor;
  115. }
  116. &_primary {
  117. background-color: $primaryUnsupportedBrowserButtonBgColor;
  118. color: #FFFFFF;
  119. border-radius: $primaryDeepLinkingMobileButtonBorderRadius;
  120. &:active {
  121. background-color: $primaryUnsupportedBrowserButtonBgColor;
  122. }
  123. }
  124. }
  125. .deep-linking-dial-in {
  126. display: none;
  127. &.has-numbers {
  128. align-items: center;
  129. display: flex;
  130. flex-direction: column;
  131. }
  132. .dial-in-numbers-list {
  133. color: $unsupportedBrowserTextColor;
  134. padding-left: 20px;
  135. }
  136. .dial-in-numbers-body {
  137. vertical-align: top;
  138. }
  139. }
  140. }