style.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Helvetica, Arial, sans-serif;
  5. font-size: 14px;
  6. letter-spacing: 0.2px;
  7. line-height: 24px;
  8. color: #585858;
  9. }
  10. a {
  11. color: #169CEE;
  12. text-decoration: underline;
  13. }
  14. a:hover {
  15. color: #2C3D50;
  16. }
  17. a:visited {
  18. color: #2a6496;
  19. }
  20. /*
  21. helpers
  22. */
  23. .align-center {
  24. text-align: center;
  25. }
  26. .hidden {
  27. display: none;
  28. }
  29. /*
  30. app css
  31. */
  32. .container {
  33. margin: 0 auto;
  34. margin-top: 45px;
  35. max-width: 860px;
  36. }
  37. #parse-logo {
  38. width: 109px;
  39. height: 110px;
  40. margin: 0 0 20px;
  41. text-align: center;
  42. }
  43. .up-and-running, .time-to-deploy {
  44. font-weight: bold;
  45. }
  46. .advice {
  47. margin-bottom: 40px;
  48. }
  49. .advice {
  50. background: #f4f4f4;
  51. border-radius: 4px;
  52. -webkit-border-radius: 4px 4px;
  53. -moz-border-radius: 4px 4px;
  54. -ms-border-radius: 4px 4px;
  55. -o-border-radius: 4px 4px;
  56. padding: 10px 20px;
  57. }
  58. #parse-url {
  59. color: #169CEE;
  60. font-weight: bold;
  61. }
  62. .step--container {
  63. margin: 30px 0 20px;
  64. border-top: 1px solid #E2E2E2;
  65. padding-top: 30px;
  66. }
  67. /* Disabled step */
  68. .step--disabled .step--number {
  69. background: #fff;
  70. border-color: #B5B5B5;
  71. color: #B5B5B5;
  72. }
  73. .step--disabled .step--info {
  74. border-color: #B5B5B5;
  75. color: #B5B5B5;
  76. }
  77. .step--disabled .step--action-btn,
  78. .step--disabled .step--action-btn:hover {
  79. border-color: #B5B5B5;
  80. background: #fff;
  81. color: #B5B5B5;
  82. cursor: default;
  83. }
  84. /* Disabled step eof */
  85. .step--action-btn.success,
  86. .step--action-btn.success:hover {
  87. background: #57C689;
  88. border-color: #57C689;
  89. color: #fff;
  90. cursor: default;
  91. font-weight: bold;
  92. }
  93. .step--number {
  94. background: #169CEE;
  95. border: 1px solid #169CEE;
  96. border-radius: 28px;
  97. -webkit-border-radius: 28px 28px;
  98. -moz-border-radius: 28px 28px;
  99. -ms-border-radius: 28px 28px;
  100. -o-border-radius: 28px 28px;
  101. display: block;
  102. margin: auto;
  103. width: 47px;
  104. height: 47px;
  105. font-weight: bolder;
  106. font-size: 20px;
  107. color: #FFFFFF;
  108. line-height: 47px; /* follows width and height */
  109. }
  110. .step--info { }
  111. .step--action-btn {
  112. color: #169CEE;
  113. font-size: 14px;
  114. font-weight: 100;
  115. border: 1px solid #169CEE;
  116. padding: 12px 18px;
  117. border-radius: 28px;
  118. -webkit-border-radius: 28px 28px;
  119. -moz-border-radius: 28px 28px;
  120. -ms-border-radius: 28px 28px;
  121. -o-border-radius: 28px 28px;
  122. cursor: pointer;
  123. text-decoration: none;
  124. display:inline-block;
  125. text-align: center;
  126. text-transform: uppercase;
  127. }
  128. .step--action-btn:hover {
  129. background: #169CEE;
  130. color: white;
  131. }
  132. .step--pre {
  133. margin-top: 4px;
  134. margin-bottom: 0;
  135. background: #f4f4f4;
  136. border-radius: 4px;
  137. -webkit-border-radius: 4px 4px;
  138. -moz-border-radius: 4px 4px;
  139. -ms-border-radius: 4px 4px;
  140. -o-border-radius: 4px 4px;
  141. padding: 10px 20px;
  142. word-wrap: break-word;
  143. font-size: 13px;
  144. }
  145. #local-parse-working {
  146. font-size: 18px;
  147. line-height: 24px;
  148. color: #57C689;
  149. font-weight: bold;
  150. }
  151. #step-4 .step--number {
  152. background: #57C689;
  153. border-color: #57C689;
  154. color: #fff;
  155. display: inline-block;
  156. }
  157. .step--deploy-btn {
  158. display: block;
  159. margin-top: 20px;
  160. width: 170px;
  161. color: #57C689 !important;
  162. font-weight: bold;
  163. border-color: #57C689;
  164. }
  165. .step--deploy-btn:hover {
  166. background: #57C689;
  167. color: #fff !important;
  168. }
  169. #prod-test {
  170. margin-bottom: 60px;
  171. }
  172. #prod-test input {
  173. background-color: #fff;
  174. border: 1px solid #B5B5B5;
  175. color: #000000;
  176. font-family: "Inconsolata";
  177. font-size: 16px;
  178. line-height: 17px;
  179. padding: 12px;
  180. width: 260px;
  181. border-radius: 4px;
  182. -webkit-border-radius: 4px 4px;
  183. -moz-border-radius: 4px 4px;
  184. -ms-border-radius: 4px 4px;
  185. -o-border-radius: 4px 4px;
  186. display:block;
  187. margin-bottom: 10px;
  188. }
  189. #footer {
  190. border-top: 1px solid #E2E2E2;
  191. padding: 20px;
  192. }
  193. #footer ul li {
  194. list-style-type: none;
  195. display:inline-block;
  196. }
  197. #footer ul li:after {
  198. content: "-";
  199. padding: 10px;
  200. }
  201. #footer ul li:last-child:after {
  202. content: "";
  203. }