install.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. @CHARSET "UTF-8";
  2. html, body {
  3. margin: 0;
  4. min-height: 100%;
  5. font-size: 12px;
  6. }
  7. body {
  8. background: -webkit-linear-gradient(top,#ccc,#fff);
  9. background: -moz-linear-gradient(top,#ccc,#fff);
  10. background: -o-linear-gradient(top,#ccc,#fff);
  11. background: -ms-linear-gradient(top,#ccc,#fff);
  12. background: linear-gradient(top,#ccc,#fff)
  13. }
  14. div.required label.control-label:after {
  15. content: " *";
  16. color: red;
  17. }
  18. #wrapper {
  19. width: 800px;
  20. }
  21. #wrapper h2 {
  22. font-size: 22px;
  23. margin: 0 0 15px 0;
  24. color: #ff9;
  25. line-height: 1;
  26. }
  27. #wrapper .desc {
  28. padding: 10px 20px;
  29. margin: 15px 0;
  30. background: #555;
  31. color: #fff;
  32. line-height: 1.5;
  33. border-radius: 5px;
  34. }
  35. #wrapper .desc strong {
  36. color: #F60;
  37. }
  38. #progress {
  39. position: absolute;
  40. left: 0;
  41. top: 0;
  42. width: 219px;
  43. }
  44. .panel {
  45. border: none;
  46. background: none;
  47. box-shadow: none;
  48. }
  49. .panel-heading {
  50. background: #444;
  51. padding: 15px 20px;
  52. color: #fff;
  53. margin: 0 0 1px 0;
  54. }
  55. .panel-body {
  56. padding: 0 0 0 220px;
  57. position: relative;
  58. }
  59. .list-group-item {
  60. border: none;
  61. position: relative;
  62. margin: 0 0 1px 0;
  63. vertical-align: top;
  64. color: #999;
  65. text-indent: 30px;
  66. background-color: #555;
  67. background-image: url(../images/icoStatus.gif);
  68. background-repeat: no-repeat;
  69. background-position: 10px 0;
  70. *zoom: 1;
  71. overflow: hidden;
  72. text-overflow: ellipsis;
  73. white-space: nowrap
  74. }
  75. .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  76. z-index: 2;
  77. background-color: #666;
  78. border-color: #fff;
  79. background-position: 10px -82px;
  80. font-weight: bold;
  81. color: #fff;
  82. margin-right: -1px
  83. }
  84. .list-group-item.done {
  85. background-position: 10px -40px
  86. }
  87. .list-group-item:first-child {
  88. border-top-left-radius: 0px;
  89. border-top-right-radius: 0px;
  90. }
  91. .list-group-item:last-child {
  92. border-radius: 0 0 0 5px;
  93. }
  94. #content {
  95. position: relative;
  96. width: 550px;
  97. min-height: 500px;
  98. background: #666;
  99. color: #fff;
  100. padding:40px 40px 100px 40px;
  101. }
  102. /* Button Area */
  103. .ibtnArea {
  104. position: absolute;
  105. bottom: 0;
  106. left: 0;
  107. width: 550px;
  108. height: 60px;
  109. margin: 1px 0 0 0;
  110. padding: 15px 20px;
  111. text-align: center;
  112. border-radius: 0 0 5px 5px
  113. }
  114. .ibtnArea:after {
  115. content: "";
  116. display: block;
  117. clear: both
  118. }
  119. .ibtnArea .x_btn-inverse {
  120. color: #fff !important
  121. }
  122. .ibtnArea .x_btn > i {
  123. opacity: .75;
  124. filter: alpha(opacity=75)
  125. }
  126. .has-success label,.has-error label {color: #fff!important;}