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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. @import 'variables';
  2. body {
  3. width:100%;
  4. height:100%;
  5. background-color: white;
  6. color: #424242;
  7. font-family: $baseFontFamily;
  8. font-size: 28px;
  9. margin:0;
  10. padding:0;
  11. }
  12. #wrap{
  13. display: block;
  14. position: absolute;
  15. width:500px;
  16. height: 565px;
  17. overflow:hidden;
  18. text-align: center;
  19. margin: auto;
  20. top: 0; left: 0; bottom: 0; right: 0;
  21. }
  22. .firefox{
  23. font-size: 11pt;
  24. color: #c8c8c8;
  25. width: 468px;
  26. text-align: center;
  27. margin: 30px auto 0px auto;
  28. padding-left: 15px;
  29. }
  30. #text{
  31. display:inline-block;
  32. font-size: 28px;
  33. /* width: 568px; */
  34. vertical-align:middle;
  35. padding-top: 25px;
  36. }
  37. a {
  38. color: #087dba;
  39. text-decoration:none;
  40. }
  41. .browser {
  42. width: 138px;
  43. height: 163px;
  44. margin-top: 5px;
  45. background-color: #e8e8e8;
  46. border: 1px solid #cfcfcf;
  47. border-radius: 10px;
  48. }
  49. .browser_wrapper
  50. {
  51. width: 138px;
  52. /* height: 188px; */
  53. vertical-align: middle;
  54. color: #929391;
  55. font-size: 20px;
  56. float: left;
  57. margin-left: 15px;
  58. margin-top: 5px;
  59. }
  60. .browser_text
  61. {
  62. height: 2em;
  63. }
  64. .supported_browsers
  65. {
  66. margin: 0px auto 0px auto;
  67. /* width: 660px; */
  68. }
  69. .clear
  70. {
  71. clear: both;
  72. }
  73. .button
  74. {
  75. background-color: #62c82a;
  76. border: 1px solid #3c8117;
  77. border-radius: 10px;
  78. color: #FFFFFF;
  79. font-size: 12px;
  80. text-align: center;
  81. width: 115px;
  82. height: 26px;
  83. padding-top: 13px;
  84. margin: 15px auto 0px auto;
  85. }
  86. .logo
  87. {
  88. margin: 20px auto 0px auto;
  89. }
  90. #chrome_logo
  91. {
  92. width: 78px;
  93. height: 78px;
  94. background-image: url('../images/chrome.png');
  95. }
  96. #chromium_logo
  97. {
  98. width: 77px;
  99. height: 78px;
  100. background-image: url('../images/chromium.png');
  101. }
  102. #firefox_logo
  103. {
  104. width: 86px;
  105. height: 80px;
  106. background-image: url('../images/firefox.png');
  107. }
  108. #opera_logo
  109. {
  110. width: 73px;
  111. height: 78px;
  112. background-image: url('../images/opera.png');
  113. }
  114. #safari_logo
  115. {
  116. width: 78px;
  117. height: 79px;
  118. background-image: url('../images/safari.png');
  119. }
  120. #ie_logo
  121. {
  122. width: 80px;
  123. height: 78px;
  124. background-image: url('../images/ie.png');
  125. }