front-page.css 7.0 KB

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