您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_mobile.scss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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: #f1f2f5;
  11. text-align: center;
  12. .logo {
  13. margin-top: 15px;
  14. margin-left: auto;
  15. margin-right: auto;
  16. height: 40px;
  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. }
  69. &__href {
  70. height: 2.2857142857142856em;
  71. line-height: 2.2857142857142856em;
  72. margin: 18px auto 20px;
  73. max-width: 300px;
  74. width: auto;
  75. font-weight: bolder;
  76. }
  77. &__button {
  78. border: 0;
  79. height: 2.2857142857142856em;
  80. line-height: 2.2857142857142856em;
  81. margin: 18px auto 10px;
  82. padding: 0px 10px 0px 10px;
  83. max-width: 300px;
  84. width: auto;
  85. @include border-radius(3px);
  86. background-color: $unsupportedBrowserButtonBgColor;
  87. color: #505F79;
  88. font-weight: bold;
  89. &:active {
  90. background-color: $unsupportedBrowserButtonBgColor;
  91. }
  92. &_primary {
  93. background-color: $primaryUnsupportedBrowserButtonBgColor;
  94. color: #FFFFFF;
  95. &:active {
  96. background-color: $primaryUnsupportedBrowserButtonBgColor;
  97. }
  98. }
  99. }
  100. .deep-linking-dial-in {
  101. display: none;
  102. &.has-numbers {
  103. align-items: center;
  104. display: flex;
  105. flex-direction: column;
  106. }
  107. .dial-in-numbers-list {
  108. color: $unsupportedBrowserTextColor;
  109. }
  110. .dial-in-numbers-body {
  111. vertical-align: top;
  112. }
  113. }
  114. }