You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

797 lines
16 KiB

  1. /*******************************
  2. Homepage
  3. *******************************/
  4. #example.index .pusher > .page {
  5. background-color: #FFFFFF;
  6. }
  7. /*--------------
  8. Masthead
  9. ---------------*/
  10. #example.index .masthead {
  11. position: relative;
  12. overflow: hidden;
  13. /*background: #111111 url(../images/bg-sky.jpg);*/
  14. background-size: cover;
  15. text-align: center;
  16. padding: 0em;
  17. color: rgba(255, 255, 255, 0.9);
  18. margin-bottom: 0px;
  19. border-bottom: none;
  20. }
  21. #example.index .masthead {
  22. -webkit-transform-style: preserve-3d;
  23. -moz-transform-style: preserve-3d;
  24. -o-transform-style: preserve-3d;
  25. -ms-transform-style: preserve-3d;
  26. transform-style: preserve-3d;
  27. -ms-transition: background-color 3s ease-in-out 2s;
  28. -moz-transition: background-color 3s ease-in-out 2s;
  29. -webkit-transition: background-color 3s ease-in-out 2s;
  30. transition: background-color 3s ease-in-out 2s;
  31. background-color: #00B5AD;
  32. background-image: radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95));
  33. -webkit-perspective: 1000px;
  34. -moz-perspective: 1000px;
  35. -o-perspective: 1000px;
  36. -ms-perspective: 1000px;
  37. perspective: 1000px;
  38. }
  39. #example.index .masthead.colored {
  40. -webkit-animation-name: colors;
  41. -moz-animation-name: colors;
  42. -o-animation-name: colors;
  43. animation-name: colors;
  44. -webkit-animation-delay: 0s;
  45. -moz-animation-delay: 0s;
  46. -ms-animation-delay: 0s;
  47. -o-animation-delay: 0s;
  48. animation-delay: 0s;
  49. -webkit-animation-duration: 120s;
  50. -moz-animation-duration: 120s;
  51. -ms-animation-duration: 120s;
  52. -o-animation-duration: 120s;
  53. animation-duration: 120s;
  54. -webkit-animation-fill-mode: both;
  55. -moz-animation-fill-mode: both;
  56. -ms-animation-fill-mode: both;
  57. -o-animation-fill-mode: both;
  58. animation-fill-mode: both;
  59. animation-timing-function: linear;
  60. -webkit-animation-timing-function: linear;
  61. -webkit-animation-iteration-count: infinite;
  62. -moz-animation-iteration-count: infinite;
  63. -ms-animation-iteration-count: infinite;
  64. -o-animation-iteration-count: infinite;
  65. animation-iteration-count: infinite;
  66. }
  67. #example.index .masthead:before {
  68. position: absolute;
  69. z-index: 1;
  70. width: 150%;
  71. height: 200%;
  72. top: -25%;
  73. left: 0px;
  74. content: '';
  75. background: url(/images/before.jpg);
  76. -moz-transform-origin: 50% 50%;
  77. -o-transform-origin: 50% 50%;
  78. -ms-transform-origin: 50% 50%;
  79. transform-origin: 50% 50%;
  80. -webkit-transform-style: preserve-3d;
  81. -moz-transform-style: preserve-3d;
  82. -o-transform-style: preserve-3d;
  83. -ms-transform-style: preserve-3d;
  84. transform-style: preserve-3d;
  85. -webkit-animation-name: masthead;
  86. -moz-animation-name: masthead;
  87. -o-animation-name: masthead;
  88. animation-name: masthead;
  89. -ms-transition: opacity 2.5s ease-in-out, transform 5s ease-in-out;
  90. -webkit-transition: opacity 2.5s ease-in-out, transform 5s ease-in-out;
  91. -moz-transition: opacity 2.5s ease-in-out, transform 5s ease-in-out;
  92. transition: opacity 2.5s ease-in-out, transform 5s ease-in-out;
  93. opacity: 0;
  94. -webkit-animation-duration: 15s;
  95. -moz-animation-duration: 15s;
  96. -ms-animation-duration: 15s;
  97. -o-animation-duration: 15s;
  98. animation-duration: 15s;
  99. -webkit-animation-fill-mode: both;
  100. -moz-animation-fill-mode: both;
  101. -ms-animation-fill-mode: both;
  102. -o-animation-fill-mode: both;
  103. animation-fill-mode: both;
  104. animation-timing-function: linear;
  105. -webkit-animation-timing-function: linear;
  106. -webkit-animation-iteration-count: infinite;
  107. -moz-animation-iteration-count: infinite;
  108. -ms-animation-iteration-count: infinite;
  109. -o-animation-iteration-count: infinite;
  110. animation-iteration-count: infinite;
  111. -webkit-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateY(0%) translateX(0) translateZ(-500px);
  112. -moz-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateY(0%) translateX(0) translateZ(-500px);
  113. transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateY(0%) translateX(0) translateZ(-500px);
  114. }
  115. #example.index .masthead:after {
  116. position: absolute;
  117. z-index: 1;
  118. width: 150%;
  119. height: 200%;
  120. top: -25%;
  121. left: 0px;
  122. content: '';
  123. background: url(/images/ui.png);
  124. -moz-transform-origin: 50% 50%;
  125. -o-transform-origin: 50% 50%;
  126. -ms-transform-origin: 50% 50%;
  127. transform-origin: 50% 50%;
  128. -webkit-transform-style: preserve-3d;
  129. -moz-transform-style: preserve-3d;
  130. -o-transform-style: preserve-3d;
  131. -ms-transform-style: preserve-3d;
  132. transform-style: preserve-3d;
  133. -webkit-animation-name: masthead;
  134. -moz-animation-name: masthead;
  135. -o-animation-name: masthead;
  136. animation-name: masthead;
  137. -ms-transition: opacity 3s ease-in-out, transform 5s ease-in-out;
  138. -webkit-transition: opacity 3s ease-in-out, transform 5s ease-in-out;
  139. -moz-transition: opacity 3s ease-in-out, transform 5s ease-in-out;
  140. transition: opacity 3s ease-in-out, transform 5s ease-in-out;
  141. opacity: 0.06;
  142. -webkit-animation-duration: 15s;
  143. -moz-animation-duration: 15s;
  144. -ms-animation-duration: 15s;
  145. -o-animation-duration: 15s;
  146. animation-duration: 15s;
  147. -webkit-animation-fill-mode: both;
  148. -moz-animation-fill-mode: both;
  149. -ms-animation-fill-mode: both;
  150. -o-animation-fill-mode: both;
  151. animation-fill-mode: both;
  152. animation-timing-function: linear;
  153. -webkit-animation-timing-function: linear;
  154. -webkit-animation-iteration-count: infinite;
  155. -moz-animation-iteration-count: infinite;
  156. -ms-animation-iteration-count: infinite;
  157. -o-animation-iteration-count: infinite;
  158. animation-iteration-count: infinite;
  159. -webkit-transform: rotateX(50deg) rotateZ(0deg) rotateY(0deg) translateY(-10%) translateX(-2%) translateZ(370px);
  160. -moz-transform: rotateX(50deg) rotateZ(0deg) rotateY(0deg) translateY(-10%) translateX(-2%) translateZ(370px);
  161. transform: rotateX(50deg) rotateZ(0deg) rotateY(0deg) translateY(-10%) translateX(-2%) translateZ(370px);
  162. }
  163. /* Zoomed Out */
  164. #example.index .masthead.zoomed {
  165. background-color: #444444;
  166. }
  167. #example .masthead.zoomed:before {
  168. opacity: 0.1;
  169. -webkit-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  170. -moz-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  171. transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  172. }
  173. #example.index .masthead.zoomed:after {
  174. opacity: 0;
  175. -webkit-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  176. -moz-transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  177. transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg) translateZ(0px);
  178. }
  179. @keyframes masthead {
  180. 0% {
  181. background-position: 0% 0%;
  182. }
  183. 100% {
  184. background-position: 0% -475px;
  185. }
  186. }
  187. @-moz-keyframes masthead {
  188. 0% {
  189. background-position: 0% 0%;
  190. }
  191. 100% {
  192. background-position: 0% -475px;
  193. }
  194. }
  195. @-webkit-keyframes masthead {
  196. 0% {
  197. background-position: 0% 0%;
  198. }
  199. 100% {
  200. background-position: 0% -475px;
  201. }
  202. }
  203. @-ms-keyframes masthead {
  204. 0% {
  205. background-position: 0% 0%;
  206. }
  207. 100% {
  208. background-position: 0% -475px;
  209. }
  210. }
  211. @-o-keyframes masthead {
  212. 0% {
  213. background-position: 0% 0%;
  214. }
  215. 100% {
  216. background-position: 0% -475px;
  217. }
  218. }
  219. @keyframes colors {
  220. 0% {
  221. background-color: #00B5AD;
  222. }
  223. 12% {
  224. background-color: #3B83C0;
  225. }
  226. 25% {
  227. background-color: #E07B53;
  228. }
  229. 37% {
  230. background-color: #D9499A;
  231. }
  232. 50% {
  233. background-color: #564F8A;
  234. }
  235. 62% {
  236. background-color: #F2C61F;
  237. }
  238. 75% {
  239. background-color: #D95C5C;
  240. }
  241. 87% {
  242. background-color: #5BBD72;
  243. }
  244. 100% {
  245. background-color: #F2C61F;
  246. }
  247. }
  248. @-moz-keyframes colors {
  249. 0% {
  250. background-color: #00B5AD;
  251. }
  252. 12% {
  253. background-color: #3B83C0;
  254. }
  255. 25% {
  256. background-color: #E07B53;
  257. }
  258. 37% {
  259. background-color: #D9499A;
  260. }
  261. 50% {
  262. background-color: #564F8A;
  263. }
  264. 62% {
  265. background-color: #F2C61F;
  266. }
  267. 75% {
  268. background-color: #D95C5C;
  269. }
  270. 87% {
  271. background-color: #5BBD72;
  272. }
  273. 100% {
  274. background-color: #F2C61F;
  275. }
  276. }
  277. @-webkit-keyframes colors {
  278. 0% {
  279. background-color: #00B5AD;
  280. }
  281. 12% {
  282. background-color: #3B83C0;
  283. }
  284. 25% {
  285. background-color: #E07B53;
  286. }
  287. 37% {
  288. background-color: #D9499A;
  289. }
  290. 50% {
  291. background-color: #564F8A;
  292. }
  293. 62% {
  294. background-color: #F2C61F;
  295. }
  296. 75% {
  297. background-color: #D95C5C;
  298. }
  299. 87% {
  300. background-color: #5BBD72;
  301. }
  302. 100% {
  303. background-color: #F2C61F;
  304. }
  305. }
  306. @-ms-keyframes colors {
  307. 0% {
  308. background-color: #00B5AD;
  309. }
  310. 12% {
  311. background-color: #3B83C0;
  312. }
  313. 25% {
  314. background-color: #E07B53;
  315. }
  316. 37% {
  317. background-color: #D9499A;
  318. }
  319. 50% {
  320. background-color: #564F8A;
  321. }
  322. 62% {
  323. background-color: #F2C61F;
  324. }
  325. 75% {
  326. background-color: #D95C5C;
  327. }
  328. 87% {
  329. background-color: #5BBD72;
  330. }
  331. 100% {
  332. background-color: #F2C61F;
  333. }
  334. }
  335. @-o-keyframes colors {
  336. 0% {
  337. background-color: #00B5AD;
  338. }
  339. 12% {
  340. background-color: #3B83C0;
  341. }
  342. 25% {
  343. background-color: #E07B53;
  344. }
  345. 37% {
  346. background-color: #D9499A;
  347. }
  348. 50% {
  349. background-color: #564F8A;
  350. }
  351. 62% {
  352. background-color: #F2C61F;
  353. }
  354. 75% {
  355. background-color: #D95C5C;
  356. }
  357. 87% {
  358. background-color: #5BBD72;
  359. }
  360. 100% {
  361. background-color: #F2C61F;
  362. }
  363. }
  364. #example.index .masthead.stopped:after {
  365. -webkit-animation-name: none;
  366. -moz-animation-name: none;
  367. -o-animation-name: none;
  368. animation-name: none;
  369. }
  370. #example.index .masthead.segment .typed-cursor {
  371. position: relative;
  372. top: -0.05em;
  373. left: -0.25em;
  374. opacity: 1;
  375. -webkit-animation: blink 0.7s infinite;
  376. -moz-animation: blink 0.7s infinite;
  377. animation: blink 0.7s infinite;
  378. }
  379. @keyframes blink {
  380. 0% { opacity:1; }
  381. 50% { opacity:0; }
  382. 100% { opacity:1; }
  383. }
  384. @-webkit-keyframes blink {
  385. 0% { opacity:1; }
  386. 50% { opacity:0; }
  387. 100% { opacity:1; }
  388. }
  389. @-moz-keyframes blink {
  390. 0% { opacity:1; }
  391. 50% { opacity:0; }
  392. 100% { opacity:1; }
  393. }
  394. #example.index .vertical.segment {
  395. box-shadow: none;
  396. }
  397. #example.index .masthead {
  398. position: relative;
  399. overflow: hidden;
  400. color: rgba(255, 255, 255, 0.9);
  401. margin-bottom: 0px;
  402. border-bottom: none;
  403. }
  404. #example.index .masthead.segment h1 {
  405. font-size: 3em;
  406. color: rgba(255, 255, 255, 0.5);
  407. line-height: 1.2;
  408. margin: 0px 0px 0px;
  409. padding-bottom: 0px;
  410. -moz-perspective: 500px;
  411. -webkit-perspective: 500px;
  412. perspective: 500px;
  413. -moz-transform-style: preserve-3d;
  414. -webkit-transform-style: preserve-3d;
  415. transform-style: preserve-3d;
  416. }
  417. #example.index .masthead.segment h1 > .library {
  418. visibility: hidden;
  419. display: block;
  420. font-size: 1.75em;
  421. color: #FFFFFF;
  422. font-weight: bold;
  423. }
  424. #example.index .masthead.segment h1 b {
  425. display: inline-block;
  426. font-weight: 300;
  427. color: #FFFFFF;
  428. }
  429. #example.index .masthead.segment h1 .text {
  430. display: inline-block;
  431. font-weight: 300;
  432. margin-left: -0.4em;
  433. }
  434. #example.index .masthead h2 {
  435. font-weight: normal;
  436. margin: 0px 0 16px 0px;
  437. font-size: 1.75em;
  438. border-bottom: none;
  439. line-height: 1;
  440. }
  441. #example.index .masthead p {
  442. font-size: 1.5em;
  443. margin: 1em 0em 1.5em;
  444. padding: 0px;
  445. }
  446. #example.index .ui.header {
  447. font-weight: normal;
  448. }
  449. #example.index .introduction {
  450. position: relative;
  451. clear: both;
  452. display: block;
  453. text-align: center;
  454. margin: 15rem 0rem;
  455. }
  456. #example.index .introduction .buttons {
  457. margin-top: 3em;
  458. }
  459. #example.index .advertisement {
  460. display: none !important;
  461. padding-left: 0;
  462. position: absolute;
  463. left: auto;
  464. right: 6em;
  465. top: 50%;
  466. transform: translateY(-50%);
  467. vertical-align: top;
  468. }
  469. #example.index .fixed.launch.button {
  470. top: 45px;
  471. }
  472. #example.index .main.menu {
  473. top: 0px;
  474. }
  475. #example.index pre.console {
  476. height: 120px;
  477. }
  478. /*--------------
  479. Features
  480. ---------------*/
  481. #example.index .hidden.code {
  482. visibility: hidden;
  483. }
  484. #example.index .following.bar {
  485. position: absolute;
  486. top: 53px;
  487. z-index: 1;
  488. left: 0%;
  489. width: 100%;
  490. }
  491. #example.index .following .logo {
  492. float: left;
  493. width: 35px;
  494. }
  495. #example .masthead .version.label:after {
  496. background-color: #000000 !important;
  497. }
  498. #example.index .following .version.label {
  499. margin: 0.25em 0px 0px 1em;
  500. }
  501. #example.index .introduction .version.label {
  502. visibility: hidden;
  503. }
  504. /*--------------
  505. Stripes
  506. ---------------*/
  507. #example.index .stripe .grid .row {
  508. margin: 2rem 0rem;
  509. }
  510. #example.index .feature.stripe p {
  511. min-height: 100px;
  512. }
  513. #example .stripe .ui.vertical.divider {
  514. font-size: 1rem;
  515. }
  516. #example.index .feature.stripe .icon.header .icon.image {
  517. width: auto;
  518. height: 50px;
  519. }
  520. #example.index .stripe .icon.header .icon.image {
  521. width: 64px;
  522. }
  523. #example.index .stripe .icon.header i.icon {
  524. font-size: 2em;
  525. }
  526. /* Final */
  527. #example.index .final.stripe {
  528. border-top: 1px solid #DDDDDD;
  529. background-color: #F8F8F8;
  530. }
  531. /* Alternate */
  532. #example .alternate.stripe {
  533. background-color: #F2F3F5;
  534. }
  535. /* Inverted */
  536. #example.index .inverted.stripe {
  537. background-color: #1B1C1D;
  538. }
  539. #example.index .inverted.stripe p {
  540. color: #FFFFFF;
  541. }
  542. /*--------------
  543. Legacy?
  544. ---------------*/
  545. /* content */
  546. #example .solid,
  547. #example .stripe {
  548. padding: 6em 0px;
  549. }
  550. #example .stripe h1 {
  551. font-size: 40px;
  552. }
  553. #example .stripe h2 {
  554. font-size: 26px;
  555. }
  556. #example .stripe h3 {
  557. font-size: 20px;
  558. }
  559. #example .stripe .buttons {
  560. vertical-align: top;
  561. }
  562. #example .stripe .button {
  563. margin-bottom: 0.5em;
  564. }
  565. #example .stripe .column > p {
  566. font-size: 16px;
  567. line-height: 1.6;
  568. margin: 2em 0em;
  569. }
  570. #example .stripe .grid .grid p {
  571. font-size: 15px;
  572. line-height: 1.4;
  573. }
  574. #example .dark.stripe {
  575. background-color: #333333;
  576. background: url(/images/dark-bg.png) repeat;
  577. color: #FFFFFF;
  578. }
  579. #example .stripe .column > .label {
  580. margin-bottom: 1em;
  581. }
  582. #example .solid {
  583. background-color: #FFFFFF;
  584. -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  585. -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  586. box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  587. }
  588. #example .solid .column {
  589. color: #555555;
  590. }
  591. #example .solid .column p b {
  592. color: rgba(0, 0, 0, 0.9);
  593. }
  594. #example .solid .column p {
  595. color: rgba(0, 0, 0, 0.5);
  596. }
  597. /*--------------
  598. Newsletter
  599. ---------------*/
  600. #example.index .email.stripe {
  601. padding: 2em 0em;
  602. }
  603. #example.index .email.stripe p {
  604. margin: -0.5em 0em 1em;
  605. }
  606. #example.index .email.stripe .input {
  607. width: 450px;
  608. }
  609. #example.index .email.stripe .submit.button {
  610. margin-left: 1em;
  611. }
  612. @media only screen and (max-width : 400px) {
  613. #example.index .advertisement {
  614. display: none;
  615. margin-left: -130px !important;
  616. }
  617. #example.index .carbonad {
  618. width: 260px !important;
  619. }
  620. #example.index .masthead.segment h1 > .library {
  621. font-size: 1.5em;
  622. }
  623. }
  624. @media only screen and (max-width : 600px) {
  625. #example.index .following.bar {
  626. display: none;
  627. }
  628. #example.index .masthead:before {
  629. display: none;
  630. }
  631. #example.index .following.bar .column {
  632. text-align: center;
  633. }
  634. #example.index .following .logo {
  635. float: none;
  636. }
  637. #example.index .following .version.label {
  638. vertical-align: top;
  639. margin-top: 0em;
  640. }
  641. #example.index .introduction {
  642. margin: 7.5rem 0rem;
  643. }
  644. #example.index .masthead.segment h1 {
  645. font-size: 2.25em;
  646. }
  647. #example.index .email.stripe .input {
  648. width: auto;
  649. }
  650. #example.index .following .secondary.menu {
  651. display: none;
  652. }
  653. #example.index .email.stripe .submit.button {
  654. margin-top: 0.5em;
  655. }
  656. }
  657. @media only screen and (max-width : 600px) {
  658. #example.index .fixed.launch.button {
  659. display: none;
  660. }
  661. }
  662. @media only screen and (min-width : 600px) {
  663. #example.index .main.menu {
  664. display: none;
  665. }
  666. #example.index .fixed.launch.button {
  667. display: block;
  668. }
  669. }
  670. /* Homepage */
  671. @media only screen and (max-width : 780px) {
  672. #example.index .feature.stripe p {
  673. height: auto;
  674. min-height: 0px;
  675. }
  676. #example.index .container {
  677. margin-left: 2em;
  678. margin-right: 2em;
  679. }
  680. }
  681. @media only screen and (max-width: 1300px) {
  682. #example.index .advertisement {
  683. position: absolute;
  684. top: auto;
  685. left: 50%;
  686. bottom: 2rem;
  687. margin-left: -175px;
  688. -webkit-transform: none;
  689. -moz-transform: none;
  690. -ms-transform: none;
  691. transform: none;
  692. }
  693. #example.index .inverted.advertisement .carbonad-img {
  694. margin-top: 0px;
  695. }
  696. #example.index #carbonads-container {
  697. float: none;
  698. }
  699. #example.index .carbonad {
  700. width: 340px;
  701. }
  702. #example.index .carbonad-text,
  703. #example.index .carbonad-tag {
  704. float: none;
  705. display: block;
  706. text-align: left;
  707. margin-left: 160px;
  708. width: 170px;
  709. }
  710. }