install.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. a:link, a:hover, a:visited {
  2. text-decoration: underline;
  3. }
  4. /* These divisions wrap the forum sections when a forum width is set. */
  5. #wrapper, .frame {
  6. width: 90%;
  7. max-width: 1140px;
  8. }
  9. h1.forumtitle {
  10. font-size: 2em;
  11. font-family: tahoma;
  12. margin: 0;
  13. padding: 32px 12px 16px 12px;
  14. float: left;
  15. font-weight: normal;
  16. color: #a85400;
  17. text-shadow: -1px -1px 0 rgba(0,0,0,0.5), 1px 1px 0 #fff;
  18. }
  19. /* Tweak the SMF logo */
  20. img#smflogo {
  21. margin: 26px 0 0 0;
  22. }
  23. #inner_wrap {
  24. min-height: 80px;
  25. }
  26. #inner_wrap .news {
  27. height: 80px;
  28. text-align: right;
  29. width: 100%;
  30. max-width: 100%;
  31. float: left;
  32. }
  33. #main_steps {
  34. float: right;
  35. width: 50%;
  36. padding: 0 0 1em 0;
  37. }
  38. #main_steps h2 {
  39. font-size: 1.2em;
  40. border-bottom: 1px solid #d05800;
  41. line-height: 1.6em;
  42. margin: 0 1em 0.5em 0;
  43. color: #d05800;
  44. }
  45. #main_steps ul {
  46. list-style: none;
  47. padding: 0 0.5em;
  48. margin: 0;
  49. line-height: 1.8em;
  50. }
  51. #main_steps ul li.stepdone {
  52. color: #aaa;
  53. }
  54. #main_steps ul li.stepcurrent {
  55. color: #222;
  56. font-weight: bold;
  57. }
  58. #main_steps ul li.stepwaiting {
  59. color: #666;
  60. }
  61. #progress_bar {
  62. position: relative;
  63. font-size: 1.2em;
  64. height: 2.3em;
  65. border: 1px solid black;
  66. border-radius: 2px;
  67. background: #fff;
  68. float: left;
  69. margin: 0.6em 0 0 4em;
  70. width: 33%;
  71. }
  72. #overall_text, #step_text {
  73. z-index: 2;
  74. color: #111;
  75. font-weight: bold;
  76. position: absolute;
  77. top: 0.5em;
  78. left: -3.3em;
  79. }
  80. #overall_text_upgrade, #step_text_upgrade {
  81. z-index: 2;
  82. color: #111;
  83. font-weight: bold;
  84. position: absolute;
  85. top: .5em;
  86. left: -3.3em;
  87. }
  88. #overall_progress, #step_progress {
  89. height: 2.5em;
  90. z-index: 1;
  91. }
  92. #overall_progress_upgrade, #step_progress_upgrade {
  93. height: 2.5em;
  94. z-index: 1;
  95. background: #6BB247;
  96. margin: 0px 3px 0px 0px;
  97. }
  98. .over_progress {
  99. margin: -33px 5px 0 10px;
  100. }
  101. #step_progress {
  102. background: #ffd000;
  103. }
  104. #substep_progress {
  105. height: 2.3em;
  106. z-index: 1;
  107. background: #eebaf4;
  108. }
  109. #main_screen {
  110. padding: 1em 1em 0.5em 1em;
  111. }
  112. #main_screen h2 {
  113. font-size: 1.2em;
  114. border-bottom: 1px solid #d05800;
  115. line-height: 1.6em;
  116. margin: 0 0 0.5em 0;
  117. color: #d05800;
  118. }
  119. .panel form div{
  120. max-height: 560px;
  121. overflow: auto;
  122. }
  123. .panel p, .panel h3 {
  124. margin: 0 0.5em 1em 0.5em;
  125. }
  126. .panel ul {
  127. margin: 0 0.5em 1em 0.5em;
  128. }
  129. .error_message {
  130. color: red;
  131. padding: 0.5em;
  132. }
  133. .panel .button_submit, .panel .button_link {
  134. font-size: 1em;
  135. font-weight: bold;
  136. color: #333;
  137. padding: 3px 6px;
  138. text-decoration: none;
  139. }
  140. .panel .button_submit:hover, .panel .button_link:hover {
  141. color: #af6700;
  142. text-decoration: none;
  143. }
  144. .panel .clear {
  145. padding: 1em 0 0 0;
  146. overflow: auto;
  147. }
  148. /* [WIP] Warning: this next bit may cause trouble. */
  149. /* It's just to hide an empty div when the submits are not shown. */
  150. .panel .clear:nth-child(3) {
  151. border: 1px solid green;
  152. display: none;
  153. }
  154. /* End [WIP] */
  155. #time_elapsed {
  156. clear: both;
  157. padding: 1em 1em 0 1em;
  158. border: 1px solid green;
  159. /* [WIP] */
  160. background: /*#f0f4f7*/ #fcfcfc;
  161. margin: 1em 0.9em 0 0.9em;
  162. padding: 6px 8px 8px 8px;
  163. border: 1px solid #ccc;
  164. border-radius: 5px;
  165. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  166. /* End [WIP] */
  167. }
  168. #progress {
  169. position: relative;
  170. font-size: 1.2em;
  171. height: 2.5em;
  172. border: 1px solid black;
  173. border-radius: 2px;
  174. background: #fff;
  175. float: left;
  176. margin: 0.6em 0 0 4em;
  177. width: 33%;
  178. }