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.

_unsupported_browser.scss 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .browser {
  2. display: inline-block;
  3. margin: 1em 7px;
  4. width: 138px;
  5. vertical-align: middle;
  6. color: #929391;
  7. font-size: 20px;
  8. &__button {
  9. background-color: #62c82a;
  10. border: 1px solid #3c8117;
  11. border-radius: 10px;
  12. color: #FFFFFF;
  13. font-size: 12px;
  14. text-align: center;
  15. width: 115px;
  16. height: 26px;
  17. padding-top: 13px;
  18. margin: 15px auto 0px auto;
  19. }
  20. &__link {
  21. color: #087dba;
  22. text-decoration: none;
  23. &:hover {
  24. text-decoration: none;
  25. }
  26. &:active {
  27. text-decoration: none;
  28. }
  29. &:focus {
  30. text-decoration: none;
  31. }
  32. }
  33. &-list
  34. {
  35. margin: 0 auto;
  36. }
  37. &__logo {
  38. margin: 20px auto 0px auto;
  39. &_chrome {
  40. width: 78px;
  41. height: 78px;
  42. background-image: url('../../images/chrome.png');
  43. }
  44. &_chromium {
  45. width: 77px;
  46. height: 78px;
  47. background-image: url('../../images/chromium.png');
  48. }
  49. &_firefox {
  50. width: 86px;
  51. height: 80px;
  52. background-image: url('../../images/firefox.png');
  53. }
  54. &_opera {
  55. width: 73px;
  56. height: 78px;
  57. background-image: url('../../images/opera.png');
  58. }
  59. &_ie {
  60. width: 80px;
  61. height: 78px;
  62. background-image: url('../../images/ie.png');
  63. }
  64. &_safari {
  65. width: 78px;
  66. height: 79px;
  67. background-image: url('../../images/safari.png');
  68. }
  69. }
  70. &__text
  71. {
  72. line-height: 1.2em;
  73. &_small {
  74. font-size: small;
  75. }
  76. }
  77. &__tile {
  78. width: 138px;
  79. height: 163px;
  80. margin-top: 5px;
  81. background-color: #e8e8e8;
  82. border: 1px solid #cfcfcf;
  83. border-radius: 10px;
  84. }
  85. }
  86. .unsupported-browser {
  87. display: block;
  88. position: absolute;
  89. width:500px;
  90. height: 565px;
  91. overflow:hidden;
  92. text-align: center;
  93. margin: auto;
  94. top: 0; left: 0; bottom: 0; right: 0;
  95. &__page {
  96. display:inline-block;
  97. font-size: 28px;
  98. vertical-align:middle;
  99. padding-top: 25px;
  100. }
  101. &__title {
  102. margin: 0 auto;
  103. width: 20em;
  104. }
  105. &-wrapper {
  106. display: block;
  107. position: absolute;
  108. width: 100%;
  109. height: 100%;
  110. background: #fff;
  111. }
  112. }