front-page.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. address,
  4. del, em, img,
  5. small, strong, sub, sup,
  6. ol, ul, li,
  7. form, label,
  8. table,
  9. article, aside, canvas,
  10. footer, header, hgroup, menu, nav, section,
  11. time, audio, video {
  12. margin:0;
  13. padding:0;
  14. border:0;
  15. outline:0;
  16. font-size:100%;
  17. vertical-align:baseline;
  18. background:transparent;
  19. }
  20. body {
  21. padding: 0;
  22. margin: 0;
  23. background:rgba(43,52,68,.7);
  24. color: #666;
  25. font-size: 12px;
  26. line-height: 18px;
  27. }
  28. h1, h2, h3, h4, h5, h6 {
  29. clear: both;
  30. font-weight: normal;
  31. }
  32. p {
  33. font-size: 14px;
  34. margin-bottom: 8px;
  35. }
  36. h2 {
  37. font-size: 16px;
  38. }
  39. h3 {
  40. font-size: 14px;
  41. }
  42. h4 {
  43. font-size: 13px;
  44. margin-bottom: 15px;
  45. }
  46. a:link {
  47. color: #000;
  48. text-decoration: none;
  49. }
  50. a:visited {
  51. color: #000;
  52. text-decoration: none;
  53. }
  54. a:active,
  55. a:hover {
  56. color: #757576;
  57. text-decoration: none;
  58. }
  59. a:active, a:focus, input {
  60. outline: 0;
  61. outline-style:none;
  62. outline-width:0;
  63. }
  64. .screen-reader-text {
  65. position: absolute;
  66. left: -9000px;
  67. }
  68. .header {
  69. margin: 0 0 50px 0;
  70. }
  71. .container {
  72. margin: 0 auto;
  73. text-align: center;
  74. }
  75. .card .content {
  76. margin: 100px auto;
  77. width:450px;
  78. background: #fff;
  79. padding: 70px 20px 40px;
  80. -webkit-animation-name: none;
  81. -webkit-animation-iteration-count: infinite;
  82. -webkit-animation-timing-function: linear;
  83. -webkit-animation-duration: 400s;
  84. border-top: 1px solid #fff;
  85. box-shadow: 0px 7px 9px #555;
  86. border-radius: 4px;
  87. }
  88. #icon {
  89. display: block;
  90. box-sizing: border-box;
  91. margin:0 0 -34px 50px;
  92. padding: 0;
  93. width:50px;
  94. height:50px;
  95. background: #FFF;
  96. }
  97. .card .search {
  98. margin: 10px;
  99. }
  100. .card-bottom {
  101. margin-top: 20px;
  102. }
  103. .contact-info {
  104. font-size: 12px;
  105. }
  106. @media (max-width: 480px) {
  107. .card .content {
  108. margin: 50px auto;
  109. -webkit-animation-name: none;
  110. width:85%;
  111. }
  112. .header {
  113. margin: 0 0 55px 0;
  114. }
  115. #icon {
  116. display: inline;
  117. box-sizing: border-box;
  118. margin:0 0 0px 0px;
  119. padding: 0;
  120. width:50px;
  121. height:50px;
  122. background: #FFF;
  123. }
  124. }
  125. .modal-open {
  126. overflow: hidden;
  127. }
  128. .modal {
  129. position: fixed;
  130. top: 0;
  131. right: 0;
  132. bottom: 0;
  133. left: 0;
  134. z-index: 1050;
  135. display: none;
  136. overflow: hidden;
  137. -webkit-overflow-scrolling: touch;
  138. outline: 0;
  139. }
  140. .modal.fade .modal-dialog {
  141. -webkit-transition: -webkit-transform .3s ease-out;
  142. -o-transition: -o-transform .3s ease-out;
  143. transition: transform .3s ease-out;
  144. -webkit-transform: translate3d(0, -25%, 0);
  145. -o-transform: translate3d(0, -25%, 0);
  146. transform: translate3d(0, -25%, 0);
  147. }
  148. .modal.in .modal-dialog {
  149. -webkit-transform: translate3d(0, 0, 0);
  150. -o-transform: translate3d(0, 0, 0);
  151. transform: translate3d(0, 0, 0);
  152. }
  153. .modal-open .modal {
  154. overflow-x: hidden;
  155. overflow-y: auto;
  156. }
  157. .modal-dialog {
  158. position: relative;
  159. width: auto;
  160. margin: 10px;
  161. }
  162. .modal-content {
  163. position: relative;
  164. background-color: #fff;
  165. -webkit-background-clip: padding-box;
  166. background-clip: padding-box;
  167. border: 1px solid #999;
  168. border: 1px solid rgba(0, 0, 0, .2);
  169. border-radius: 6px;
  170. outline: 0;
  171. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  172. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  173. }
  174. .modal-backdrop {
  175. position: fixed;
  176. top: 0;
  177. right: 0;
  178. bottom: 0;
  179. left: 0;
  180. z-index: 1040;
  181. background-color: #000;
  182. }
  183. .modal-backdrop.fade {
  184. filter: alpha(opacity=0);
  185. opacity: 0;
  186. }
  187. .modal-backdrop.in {
  188. filter: alpha(opacity=50);
  189. opacity: .5;
  190. }
  191. .modal-header {
  192. min-height: 16.42857143px;
  193. padding: 15px;
  194. border-bottom: 1px solid #e5e5e5;
  195. }
  196. .modal-header .close {
  197. margin-top: -2px;
  198. }
  199. .modal-title {
  200. margin: 0;
  201. line-height: 1.42857143;
  202. }
  203. .modal-body {
  204. position: relative;
  205. padding: 15px;
  206. }
  207. .modal-footer {
  208. padding: 15px;
  209. text-align: right;
  210. border-top: 1px solid #e5e5e5;
  211. }
  212. .modal-footer .btn + .btn {
  213. margin-bottom: 0;
  214. margin-left: 5px;
  215. }
  216. .modal-footer .btn-group .btn + .btn {
  217. margin-left: -1px;
  218. }
  219. .modal-footer .btn-block + .btn-block {
  220. margin-left: 0;
  221. }
  222. .modal-scrollbar-measure {
  223. position: absolute;
  224. top: -9999px;
  225. width: 50px;
  226. height: 50px;
  227. overflow: scroll;
  228. }
  229. @media (min-width: 768px) {
  230. .modal-dialog {
  231. width: 600px;
  232. margin: 30px auto;
  233. }
  234. .modal-content {
  235. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  236. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  237. }
  238. .modal-sm {
  239. width: 300px;
  240. }
  241. }
  242. @media (min-width: 992px) {
  243. .modal-lg {
  244. width: 777px;
  245. }
  246. }
  247. /*============================================
  248. Intro
  249. ==============================================*/
  250. @keyframes blink {
  251. 0% { opacity: 0; }
  252. 25% { opacity: 1; }
  253. 50% { opacity: 1; }
  254. 100% { opacity: 0; }
  255. }
  256. @-webkit-keyframes blink {
  257. 0% { opacity: 0; }
  258. 25% { opacity: 1; }
  259. 50% { opacity: 1; }
  260. 100% { opacity: 0; }
  261. }
  262. @-ms-keyframes blink {
  263. 0% { opacity: 0; }
  264. 25% { opacity: 1; }
  265. 50% { opacity: 1; }
  266. 100% { opacity: 0; }
  267. }
  268. @-moz-keyframes blink {
  269. 0% { opacity: 0; }
  270. 25% { opacity: 1; }
  271. 50% { opacity: 1; }
  272. 100% { opacity: 0; }
  273. }
  274. .welcome::after {
  275. visibility: visible;
  276. content: '';
  277. background-color:green;
  278. opacity: 0;
  279. display: inline-block;
  280. position: relative;
  281. width: 0.2em;
  282. height: 1em;
  283. top: 5px;
  284. margin-left: 0;
  285. margin-bottom: 2px;
  286. -webkit-animation: blink 1s 20;
  287. -moz-animation: blink 1s 20;
  288. animation: blink 1s 20;
  289. }
  290. .welcome-back-text::after {
  291. visibility: visible;
  292. content: '';
  293. background-color:green;
  294. opacity: 0;
  295. display: inline-block;
  296. position: relative;
  297. width: 0.2em;
  298. height: 1em;
  299. top: 5px;
  300. margin-left: 0;
  301. margin-bottom: 2px;
  302. -webkit-animation: blink 1s 3;
  303. -moz-animation: blink 1s 3;
  304. animation: blink 1s 3;
  305. }
  306. .welcome-back {
  307. margin: 120px 0 0 0;
  308. text-align: left;
  309. min-height: 300px;
  310. padding: 50px 25px;
  311. font-size: 18px;
  312. font-family: monospace;
  313. color: #34F743;
  314. background: transparent url('../img/terminal.svg');
  315. background-size: cover;
  316. border-radius: 18px;
  317. }
  318. .terminal-welcome .modal-content {
  319. margin: 0 0 100px;
  320. border: none;
  321. box-shadow:none;
  322. background-color: transparent !important;
  323. text-align: left;
  324. }
  325. .terminal {
  326. margin-top:30px;
  327. }
  328. .terminal .modal-content {
  329. margin: 0 0 100px;
  330. border: none;
  331. box-shadow:none;
  332. background-color: transparent !important;
  333. }
  334. [contenteditable] {outline: none;}
  335. .typed-cursor{
  336. display: none;
  337. }
  338. .thermo {
  339. font-family: monospace;
  340. font-size: 18px !important;
  341. }
  342. .thermo span.prompt {
  343. color: #389436;
  344. }
  345. .thermo p.input {
  346. font-size: 18px;
  347. font-family: monospace;
  348. margin: 10px 0;
  349. }
  350. .thermo p.response {
  351. font-size: 18px;
  352. margin: 0px;
  353. color:#34F743;
  354. }
  355. .thermo span.u {
  356. color: #389436;
  357. }
  358. .thermo span.at {
  359. color: #38BBC6;
  360. }
  361. .thermo span.mee {
  362. color: #389436;
  363. }
  364. .thermo-intro span.prompt {
  365. color: #389436;
  366. }
  367. .thermo-intro p.input {
  368. font-size: 18px;
  369. font-family: monospace;
  370. line-height: 11px !important;
  371. margin: 10px 0;
  372. }
  373. .thermo-intro p.response {
  374. font-size: 18px;
  375. line-height: 11px !important;
  376. margin: 0px;
  377. color:#34F743;
  378. }
  379. .thermo-intro span.u {
  380. color: #389436;
  381. }
  382. .thermo-intro span.at {
  383. color: #38BBC6;
  384. }
  385. .thermo-intro span.mee {
  386. color: #389436;
  387. }