Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_unsupported-mobile-browser.scss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .unsupported-mobile-browser {
  2. background-color: #fff;
  3. height: 100vh;
  4. padding: 35px 0;
  5. width: 100vw;
  6. &__body {
  7. color: $unsupportedBrowserTextColor;
  8. margin: auto;
  9. max-width: 40em;
  10. text-align: center;
  11. width: 75%;
  12. a:active {
  13. text-decoration: none;
  14. }
  15. }
  16. &__text {
  17. font-size: 1.2em;
  18. line-height: em(29px, 21px);
  19. margin-bottom: 0.65em;
  20. &_small {
  21. font-size: 1.5em;
  22. margin-bottom: 1em;
  23. margin-top: em(21, 18);
  24. strong {
  25. font-size: em(21, 18);
  26. }
  27. }
  28. }
  29. &__logo {
  30. height: 108px;
  31. width: 77px;
  32. }
  33. &__button {
  34. border: 0;
  35. height: 2.2857142857142856em;
  36. line-height: 2.2857142857142856em;
  37. margin: auto auto 9px;
  38. max-width: 300px;
  39. width: auto;
  40. @include border-radius(3px);
  41. background-color: $unsupportedBrowserButtonBgColor;
  42. color: #505F79;
  43. &:active {
  44. background-color: $unsupportedBrowserButtonBgColor;
  45. }
  46. &_primary {
  47. background-color: $primaryUnsupportedBrowserButtonBgColor;
  48. color: #FFFFFF;
  49. &:active {
  50. background-color: $primaryUnsupportedBrowserButtonBgColor;
  51. }
  52. }
  53. }
  54. }