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.

808 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.index .demo h4 {
  514. font-weight: bold !important;
  515. margin: 0em 0em 1em !important;
  516. }
  517. #example.index .demo .ui.label:not(.empty) {
  518. margin-bottom: 1em;
  519. }
  520. #example .stripe .ui.vertical.divider {
  521. font-size: 1rem;
  522. }
  523. #example.index .feature.stripe .icon.header .icon.image {
  524. width: auto;
  525. height: 50px;
  526. }
  527. #example.index .stripe .icon.header .icon.image {
  528. width: 64px;
  529. }
  530. #example.index .stripe .icon.header i.icon {
  531. font-size: 2em;
  532. }
  533. /* Final */
  534. #example.index .final.stripe {
  535. border-top: 1px solid #DDDDDD;
  536. background-color: #F8F8F8;
  537. }
  538. /* Alternate */
  539. #example .alternate.stripe {
  540. background-color: #F2F3F5;
  541. }
  542. /* Inverted */
  543. #example.index .inverted.stripe {
  544. background-color: #1B1C1D;
  545. }
  546. #example.index .inverted.stripe p {
  547. color: #FFFFFF;
  548. }
  549. /*--------------
  550. Legacy?
  551. ---------------*/
  552. /* content */
  553. #example .solid,
  554. #example .stripe {
  555. padding: 6em 0px;
  556. }
  557. #example .stripe h1 {
  558. font-size: 40px;
  559. }
  560. #example .stripe h2 {
  561. font-size: 26px;
  562. }
  563. #example .stripe h3 {
  564. font-size: 20px;
  565. }
  566. #example .stripe .buttons {
  567. vertical-align: top;
  568. }
  569. #example .stripe .button {
  570. margin-bottom: 0.5em;
  571. }
  572. #example .stripe .column > p {
  573. font-size: 16px;
  574. line-height: 1.6;
  575. margin: 2em 0em;
  576. }
  577. #example .stripe .grid .grid p {
  578. font-size: 15px;
  579. line-height: 1.4;
  580. }
  581. #example .dark.stripe {
  582. background-color: #333333;
  583. background: url(/images/dark-bg.png) repeat;
  584. color: #FFFFFF;
  585. }
  586. #example .stripe .column > .label {
  587. margin-bottom: 1em;
  588. }
  589. #example .solid {
  590. background-color: #FFFFFF;
  591. -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  592. -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  593. box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  594. }
  595. #example .solid .column {
  596. color: #555555;
  597. }
  598. #example .solid .column p b {
  599. color: rgba(0, 0, 0, 0.9);
  600. }
  601. #example .solid .column p {
  602. color: rgba(0, 0, 0, 0.5);
  603. }
  604. #example .stripe .message {
  605. margin: 2em 0em;
  606. }
  607. /*--------------
  608. Newsletter
  609. ---------------*/
  610. #example.index .email.stripe {
  611. padding: 2em 0em;
  612. }
  613. #example.index .email.stripe p {
  614. margin: -0.5em 0em 1em;
  615. }
  616. #example.index .email.stripe .input {
  617. width: 450px;
  618. }
  619. #example.index .email.stripe .submit.button {
  620. margin-left: 1em;
  621. }
  622. @media only screen and (max-width : 400px) {
  623. #example.index .advertisement {
  624. display: none;
  625. margin-left: -130px !important;
  626. }
  627. #example.index .carbonad {
  628. width: 260px !important;
  629. }
  630. #example.index .masthead.segment h1 > .library {
  631. font-size: 1.5em;
  632. }
  633. }
  634. @media only screen and (max-width : 600px) {
  635. #example.index .following.bar {
  636. display: none;
  637. }
  638. #example.index .masthead:before {
  639. display: none;
  640. }
  641. #example.index .feature.stripe p {
  642. min-height: 0px;
  643. }
  644. #example.index .following.bar .column {
  645. text-align: center;
  646. }
  647. #example.index .following .logo {
  648. float: none;
  649. }
  650. #example.index .following .version.label {
  651. vertical-align: top;
  652. margin-top: 0em;
  653. }
  654. #example.index .introduction {
  655. margin: 7.5rem 0rem;
  656. }
  657. #example.index .masthead.segment h1 {
  658. font-size: 2.25em;
  659. }
  660. #example.index .email.stripe .input {
  661. width: auto;
  662. }
  663. #example.index .following .secondary.menu {
  664. display: none;
  665. }
  666. #example.index .email.stripe .submit.button {
  667. margin-top: 0.5em;
  668. }
  669. }
  670. @media only screen and (max-width : 600px) {
  671. #example.index .fixed.launch.button {
  672. display: none;
  673. }
  674. }
  675. @media only screen and (min-width : 600px) {
  676. #example.index .main.menu {
  677. display: none;
  678. }
  679. #example.index .fixed.launch.button {
  680. display: block;
  681. }
  682. }
  683. /* Homepage */
  684. @media only screen and (max-width : 780px) {
  685. #example.index .container {
  686. margin-left: 2em;
  687. margin-right: 2em;
  688. }
  689. }
  690. @media only screen and (max-width: 1300px) {
  691. #example.index .advertisement {
  692. position: absolute;
  693. top: auto;
  694. left: 50%;
  695. bottom: 2rem;
  696. margin-left: -175px;
  697. -webkit-transform: none;
  698. -moz-transform: none;
  699. -ms-transform: none;
  700. transform: none;
  701. }
  702. #example.index .inverted.advertisement .carbonad-img {
  703. margin-top: 0px;
  704. }
  705. #example.index #carbonads-container {
  706. float: none;
  707. }
  708. #example.index .carbonad {
  709. width: 340px;
  710. }
  711. #example.index .carbonad-text,
  712. #example.index .carbonad-tag {
  713. float: none;
  714. display: block;
  715. text-align: left;
  716. margin-left: 160px;
  717. width: 170px;
  718. }
  719. }