Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_mobile.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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: 75%;
  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: 1.2em;
  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. }
  54. &__href {
  55. height: 2.2857142857142856em;
  56. line-height: 2.2857142857142856em;
  57. margin: 18px auto 20px;
  58. max-width: 300px;
  59. width: auto;
  60. font-weight: bolder;
  61. }
  62. &__button {
  63. border: 0;
  64. height: 2.2857142857142856em;
  65. line-height: 2.2857142857142856em;
  66. margin: 18px auto 10px;
  67. padding: 0px 10px 0px 10px;
  68. max-width: 300px;
  69. width: auto;
  70. @include border-radius(3px);
  71. background-color: $unsupportedBrowserButtonBgColor;
  72. color: #505F79;
  73. font-weight: bold;
  74. &:active {
  75. background-color: $unsupportedBrowserButtonBgColor;
  76. }
  77. &_primary {
  78. background-color: $primaryUnsupportedBrowserButtonBgColor;
  79. color: #FFFFFF;
  80. &:active {
  81. background-color: $primaryUnsupportedBrowserButtonBgColor;
  82. }
  83. }
  84. }
  85. .deep-linking-dial-in {
  86. display: none;
  87. &.has-numbers {
  88. align-items: center;
  89. display: flex;
  90. flex-direction: column;
  91. }
  92. .dial-in-numbers-list {
  93. color: $unsupportedBrowserTextColor;
  94. }
  95. .dial-in-numbers-body {
  96. vertical-align: top;
  97. }
  98. }
  99. }