install.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. body{
  2. font-family:arial, helvetica, verdana;
  3. font-size:12px;
  4. text-shadow: 0 1px 0 #fff;
  5. }
  6. h1 {
  7. text-align:center;
  8. }
  9. h1.centerH{
  10. vertical-align:middle;
  11. text-align:center;
  12. font-size:1.6em;
  13. font-weight:normal;
  14. text-shadow: 0 1px 0 #fff;
  15. }
  16. #logo,.topictitle1{
  17. margin:auto;
  18. margin-bottom:35px;
  19. font-size:1.7em;
  20. color:#444;
  21. width:83%;
  22. position:relative;
  23. left:1%;
  24. }
  25. .topictitle1{
  26. margin-top:30px;
  27. margin-bottom:0
  28. }
  29. #logo img, .topictitle1 img{
  30. width:150px;
  31. }
  32. .titProduct{
  33. font-weight:bold;
  34. }
  35. #form{
  36. width:10%;
  37. position:relative;
  38. left:45%;
  39. float:left;
  40. }
  41. img{
  42. vertical-align:middle;
  43. }
  44. div.title{
  45. font-size:medium;
  46. font-style:normal;
  47. font-weight:bold;
  48. padding:5px 2px 5px 2px;
  49. }
  50. div.desc{
  51. color:#444;
  52. font-size:1.1em;
  53. font-style:normal;
  54. /*font-weight:bold;*/
  55. padding:5px 2px 5px 2px;
  56. line-height:1.6em;
  57. }
  58. input{
  59. line-height:22px;
  60. margin:3px;
  61. }
  62. input[readonly = readonly]{
  63. background-color:#f9f9f9;
  64. color:#444;
  65. padding:1px;
  66. border:1px solid #ccc;
  67. }
  68. div.panel, .taskbody{
  69. clear:both;
  70. width:80%;
  71. position:relative;
  72. left:9%;
  73. background-color:#F9FEFF;
  74. border-radius:7px;
  75. box-shadow:0px 2px 2px #eee;
  76. border:1px solid #ddd;
  77. float:left;
  78. padding:10px;
  79. margin:10px 5px 10px 5px;
  80. }
  81. div.panel table{
  82. width:100%;
  83. }
  84. div.panel td:first-child{
  85. font-weight:bold;
  86. color:#333;
  87. width:60%;
  88. }
  89. div.panel .settingDesc{
  90. font-weight:normal;
  91. font-size:0.9em;
  92. color:#555;
  93. }
  94. div.panel td{
  95. height:2.5em;
  96. padding:4px;
  97. }
  98. div.panel .col2 td{
  99. height:1.8em;
  100. padding:4px;
  101. }
  102. div.panel td:last-child{
  103. font-style:italic;
  104. font-size:0.9em;
  105. padding-left:7px;
  106. }
  107. div.panel .col2 td:last-child{
  108. font-style:normal;
  109. font-size:1em;
  110. }
  111. div.panel tr:hover td{
  112. background-color:#E6F7FF;
  113. }
  114. #doInstallData{
  115. width:100%;
  116. left:5%;
  117. padding:0px;
  118. margin:10px 5px 0px 5px;
  119. }
  120. div.success{
  121. color:green;
  122. font-weight:bold;
  123. }
  124. div.error{
  125. color:red;
  126. font-weight:bold;
  127. }
  128. .btActions{
  129. clear:both;
  130. width:91%;
  131. }
  132. .btActions input{
  133. float:right;
  134. margin:auto;
  135. margin-left: 20px;
  136. margin-bottom: 20px;
  137. padding: 4px;
  138. width: 130px;
  139. cursor: pointer;
  140. border:1px solid #ddd;
  141. border-radius: 5px;
  142. background-color: #eee;
  143. text-align: center;
  144. text-shadow: 0 1px 0 #fff;
  145. font-weight:bold;
  146. color:#666;
  147. box-shadow: 1px 1px 7px #ccc;
  148. }
  149. .btActions input:hover {
  150. background-color: #E1F1FF;
  151. color:#333;
  152. }
  153. table.col2 td:first-child{width:38%}
  154. /* *** installation.html *** */
  155. h1.topictitle1{
  156. font-size:2em;
  157. padding:15px 0 15px 0;
  158. }
  159. .taskbody h2{
  160. padding-top:10px;
  161. color:#444;
  162. }
  163. ol{
  164. line-height:2em;
  165. }
  166. li.step .cmd{font-weight:bold}
  167. li.substep .cmd{font-weight:normal;}
  168. strong.b{}
  169. span.code{
  170. padding: 20px;
  171. font-family: Courier, monospace;
  172. font-size: 12px;
  173. display: block;
  174. background-color: #fefefe;
  175. border: 1px solid #ddd;
  176. margin: 10px;
  177. line-height: 18px;
  178. }
  179. .bld{
  180. color:#336699;
  181. font-weight: bold;
  182. }
  183. ol ol ol{
  184. list-style:circle;
  185. }
  186. ol a{
  187. color:#275078;
  188. text-decoration:none
  189. }
  190. div.removeInfo{
  191. font-size: medium;
  192. font-weight: bold;
  193. color: #aa0000;
  194. }