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.

1507 lines
27 KiB

  1. /*******************************
  2. Highlighted Colors
  3. *******************************/
  4. ::-webkit-selection {
  5. background-color: #FFFFCC;
  6. color: #555555;
  7. }
  8. ::-moz-selection {
  9. background-color: #FFFFCC;
  10. color: #555555;
  11. }
  12. ::selection {
  13. background-color: #FFFFCC;
  14. color: #555555;
  15. }
  16. h1::-moz-selection,
  17. h2::-moz-selection,
  18. h3::-moz-selection {
  19. background-color: #F1C1C2;
  20. color: #222222;
  21. }
  22. h1::selection,
  23. h2::selection,
  24. h3::selection {
  25. background-color: #F1C1C2;
  26. color: #222222;
  27. }
  28. .ui *::-moz-selection {
  29. background-color: #CCE2FF;
  30. }
  31. .ui *::selection {
  32. background-color: #CCE2FF;
  33. }
  34. /*******************************
  35. Global
  36. *******************************/
  37. html,
  38. body {
  39. font-size: 15px;
  40. }
  41. body#example {
  42. font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  43. background: #FCFCFC url(../images/bg.jpg) repeat;
  44. margin: 0px;
  45. padding: 0px;
  46. color: #555555;
  47. min-width: 320px;
  48. }
  49. body > .content {
  50. background: #FCFCFC url(../images/bg.jpg) repeat;
  51. }
  52. h1,
  53. h2,
  54. h3,
  55. h4,
  56. h5 {
  57. font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  58. }
  59. /*
  60. p,
  61. ul,
  62. .ui.grid,
  63. li {
  64. font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  65. font-size-adjust: none;
  66. }*/
  67. ul.list {
  68. list-style-type: disc;
  69. }
  70. ul.list li {
  71. list-style-position: outside;
  72. }
  73. /* text and headers */
  74. h1 {
  75. margin: 0px 0px 20px;
  76. padding: 50px 0px 5px;
  77. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  78. }
  79. h4 + p {
  80. margin: 0px 0px 20px;
  81. }
  82. pre {
  83. background-color: #F0F0F0;
  84. }
  85. pre.console {
  86. background-color: transparent;
  87. line-height: 1.6;
  88. font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
  89. height: 300px;
  90. overflow: auto;
  91. }
  92. code {
  93. background-color: rgba(0, 0, 0, 0.02);
  94. border: 1px solid rgba(0, 0, 0, 0.1);
  95. display: inline-block;
  96. font-family: Courier New;
  97. font-size: 14px;
  98. margin: 0.25em;
  99. padding: 0.125em 0.5em;
  100. vertical-align: middle;
  101. }
  102. pre code {
  103. border: none;
  104. padding: 0px;
  105. }
  106. table pre,
  107. table code {
  108. margin: 0px !important;
  109. padding: 0px;
  110. background-color: transparent;
  111. }
  112. p {
  113. margin: 1em 0em;
  114. }
  115. p:first-child {
  116. margin-top: 0em;
  117. }
  118. p:last-child {
  119. margin-bottom: 0em;
  120. }
  121. /* links */
  122. a {
  123. color: #009FDA;
  124. text-decoration: none;
  125. }
  126. a:hover {
  127. color: #00BAFF;
  128. }
  129. #example #menu .item {
  130. -webkit-border-radius: 0px;
  131. -moz-border-radius: 0px;
  132. border-radius: 0px;
  133. }
  134. #example #menu .hide.item {
  135. display: none;
  136. }
  137. #example #menu .item .item {
  138. font-size: 0.875rem;
  139. }
  140. #example .segment > .dimmer {
  141. z-index: 800;
  142. }
  143. /* segment headers */
  144. #example > .content > .page > .segment,
  145. #example > .segment {
  146. margin: 0px 0px 3em;
  147. padding-top: 70px;
  148. padding-bottom: 30px;
  149. background-color: #FFFFFF;
  150. border-bottom: 1px solid #DDDDDD;
  151. }
  152. #example > .tab.segment {
  153. padding-bottom: 0em;
  154. margin-bottom: 2em;
  155. }
  156. #example > .tab.segment .fixed .tabular.menu {
  157. position: fixed;
  158. top: 50px;
  159. }
  160. #example > .tab.segment .vertical.menu {
  161. display: none;
  162. margin: 2rem 0em 1rem;
  163. }
  164. #example > .tab.segment .tabular.menu {
  165. margin: 2rem 0em 0em;
  166. border-bottom: none;
  167. }
  168. #example > .tab.segment .tabular.menu .active.item {
  169. background-color: #FAFAFA;
  170. border-bottom-color: #FAFAFA;
  171. }
  172. #example .download.menu {
  173. margin-top: 0em;
  174. margin-bottom: 3rem;
  175. }
  176. #example .main.menu {
  177. min-width: 320px;
  178. z-index: 900;
  179. -webkit-box-sizing: border-box;
  180. -moz-box-sizing: border-box;
  181. -ms-box-sizing: border-box;
  182. box-sizing: border-box;
  183. -webkit-transition: margin 0.3s ease;
  184. -moz-transition: margin 0.3s ease;
  185. -o-transition: margin 0.3s ease;
  186. -ms-transition: margin 0.3s ease;
  187. transition: margin 0.3s ease;
  188. }
  189. #example .main.menu iframe {
  190. margin: 0px 0px 0px 0px;
  191. }
  192. /* lists */
  193. #example .features {
  194. list-style-position: inside;
  195. margin: 10px 0px 0px;
  196. padding: 0px;
  197. }
  198. #example .features li {
  199. list-style-type: disc;
  200. margin: 0px 0px 10px;
  201. font-weight: bold;
  202. }
  203. #example .advertisement {
  204. float: right;
  205. margin-left: 2em;
  206. }
  207. /*--------------
  208. Intro
  209. ---------------*/
  210. body.guide .main h3 {
  211. margin: 2rem 0em 0.5rem;
  212. }
  213. body.guide .main.container > * {
  214. max-width: 800px;
  215. }
  216. /*--------------
  217. Playground
  218. ---------------*/
  219. #example.playground {
  220. min-width: 1000px;
  221. }
  222. #example.playground > .title.grid {
  223. padding-top: 60px;
  224. }
  225. #example .ui.items .menu .item {
  226. -webkit-box-shadow: none;
  227. -moz-box-shadow: none;
  228. box-shadow: none;
  229. }
  230. /*--------------
  231. Items
  232. ---------------*/
  233. #example.item .text.example .item {
  234. min-height: 150px;
  235. }
  236. /*--------------
  237. Masthead
  238. ---------------*/
  239. #example .error.masthead {
  240. position: absolute;
  241. margin-top: -290px;
  242. top: 50%;
  243. width: 100%;
  244. }
  245. #example .error.masthead .container {
  246. position: relative;
  247. z-index: 100;
  248. }
  249. #example .masthead {
  250. position: relative;
  251. overflow: hidden;
  252. background-color: #00B5AD;
  253. text-align: center;
  254. margin-top: 38px;
  255. padding: 50px 0px;
  256. color: rgba(255, 255, 255, 0.9);
  257. margin-bottom: 0px;
  258. border-bottom: none;
  259. }
  260. #example .masthead:before {
  261. background: #00B5AD url(/images/tile-bg.png) repeat fixed 0% 0%;
  262. position: absolute;
  263. z-index: 1;
  264. width: 500%;
  265. height: 500%;
  266. top: 0px;
  267. left: 0px;
  268. content: '';
  269. -moz-transform-origin: 50% 50%;
  270. -o-transform-origin: 50% 50%;
  271. -ms-transform-origin: 50% 50%;
  272. transform-origin: 50% 50%;
  273. -webkit-animation-name: masthead;
  274. -moz-animation-name: masthead;
  275. -o-animation-name: masthead;
  276. animation-name: masthead;
  277. -webkit-animation-duration: 80s;
  278. -moz-animation-duration: 80s;
  279. -ms-animation-duration: 80s;
  280. -o-animation-duration: 80s;
  281. animation-duration: 80s;
  282. -webkit-animation-fill-mode: both;
  283. -moz-animation-fill-mode: both;
  284. -ms-animation-fill-mode: both;
  285. -o-animation-fill-mode: both;
  286. animation-fill-mode: both;
  287. animation-timing-function: linear;
  288. -webkit-animation-timing-function: linear;
  289. -webkit-animation-iteration-count: infinite;
  290. -moz-animation-iteration-count: infinite;
  291. -ms-animation-iteration-count: infinite;
  292. -o-animation-iteration-count: infinite;
  293. animation-iteration-count: infinite;
  294. }
  295. @keyframes masthead {
  296. 0% {
  297. background-position: 0% 0%;
  298. }
  299. 50% {
  300. background-position: -50% -100%;
  301. }
  302. 100% {
  303. background-position: -100% -200%;
  304. }
  305. }
  306. @-moz-keyframes masthead {
  307. 0% {
  308. background-position: 0% 0%;
  309. }
  310. 50% {
  311. background-position: -50% -100%;
  312. }
  313. 100% {
  314. background-position: -100% -200%;
  315. }
  316. }
  317. @-webkit-keyframes masthead {
  318. 0% {
  319. background-position: 0% 0%;
  320. }
  321. 50% {
  322. background-position: -50% -100%;
  323. }
  324. 100% {
  325. background-position: -100% -200%;
  326. }
  327. }
  328. @-ms-keyframes masthead {
  329. 0% {
  330. background-position: 0% 0%;
  331. }
  332. 50% {
  333. background-position: -50% -100%;
  334. }
  335. 100% {
  336. background-position: -100% -200%;
  337. }
  338. }
  339. @-o-keyframes masthead {
  340. 0% {
  341. background-position: 0% 0%;
  342. }
  343. 50% {
  344. background-position: -50% -100%;
  345. }
  346. 100% {
  347. background-position: -100% -200%;
  348. }
  349. }
  350. #example .masthead .grid {
  351. position: relative;
  352. z-index: 2;
  353. }
  354. #example .masthead .column {
  355. display: table;
  356. }
  357. #example .introduction {
  358. display: table-cell;
  359. vertical-align: top;
  360. width: 100%;
  361. }
  362. #example .advertisement {
  363. float: none;
  364. display: table-cell;
  365. vertical-align: top;
  366. padding-left: 2em;
  367. }
  368. #example #carbonads-container {
  369. float: right;
  370. }
  371. #example .advertisement .carbonad {
  372. -moz-border-radius: 5px;
  373. -webkit-border-radius: 5px;
  374. border-radius: 5px;
  375. border: 1px solid rgba(0, 0, 0, 0.1);
  376. }
  377. #example .advertisement .carbonad-text {
  378. height: auto;
  379. font-size: 12px;
  380. line-height: 1.3;
  381. }
  382. #example .carbonad-tag {
  383. text-align: left;
  384. }
  385. #example .inverted.advertisement .carbonad {
  386. background-color: rgba(0, 31, 30, 0.5);
  387. border: none;
  388. overflow: hidden;
  389. height: auto;
  390. padding: 6px 8px 15px;
  391. }
  392. #example .inverted.advertisement .carbonad-text {
  393. color: rgba(255, 255, 255, 0.6);
  394. }
  395. #example .inverted.advertisement .carbonad-tag {
  396. margin-top: 10px;
  397. color: rgba(255, 255, 255, 0.4);
  398. }
  399. #example .inverted.advertisement .carbonad-tag a {
  400. color: rgba(255, 255, 255, 0.8);
  401. }
  402. #example .inverted.advertisement .carbonad-tag a:hover {
  403. color: #FFFFFF;
  404. }
  405. #example .masthead .labeled.button {
  406. position: relative;
  407. left: 0px;
  408. top: 0px;
  409. width: auto !important;
  410. margin-right: 1em;
  411. }
  412. #example .masthead.segment h1 {
  413. font-size: 5em;
  414. color: #FFFFFF;
  415. line-height: 1.2;
  416. margin: -20px 0px 0px;
  417. padding-bottom: 0px;
  418. }
  419. #example .masthead strike {
  420. color: rgba(0, 0, 0, 0.2);
  421. }
  422. #example .masthead h2 {
  423. font-weight: normal;
  424. margin: -10px 0 16px 0px;
  425. font-size: 1.75em;
  426. border-bottom: none;
  427. line-height: 1;
  428. }
  429. #example .masthead .menu {
  430. width: 375px;
  431. }
  432. #example .masthead p {
  433. font-size: 1.5em;
  434. margin: 1em 0em 1.5em;
  435. padding: 0px;
  436. }
  437. #example .footer.link.list {
  438. display: block;
  439. text-align: center;
  440. margin-bottom: 1.5rem;
  441. }
  442. /*--------------
  443. Transparent
  444. ---------------*/
  445. .ui.transparent.menu {
  446. opacity: 0.95;
  447. }
  448. /* content */
  449. #example .container {
  450. width: 915px;
  451. margin: 0px auto;
  452. }
  453. #example .solid,
  454. #example .stripe {
  455. padding: 50px 0px;
  456. }
  457. #example .dark.stripe {
  458. background-color: #333333;
  459. background: url(/images/dark-bg.png) repeat;
  460. color: #FFFFFF;
  461. }
  462. #example .stripe .column .label {
  463. margin-bottom: 1em;
  464. }
  465. #example .solid {
  466. background-color: #FFFFFF;
  467. -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  468. -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  469. box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  470. }
  471. #example .solid .column {
  472. color: #555555;
  473. }
  474. #example .solid .column p b {
  475. color: rgba(0, 0, 0, 0.9);
  476. }
  477. #example .solid .column p {
  478. color: rgba(0, 0, 0, 0.5);
  479. }
  480. #example .stripe .message {
  481. margin: 2em 0em;
  482. }
  483. #example .shortcuts {
  484. float: right;
  485. clear: both;
  486. }
  487. #example .launch.button {
  488. position: fixed;
  489. top: 63px;
  490. z-index: 500;
  491. width: 70px;
  492. }
  493. #example.index .main.menu {
  494. top: 0px;
  495. }
  496. #example.index pre.console {
  497. height: 120px;
  498. }
  499. #example.index .attached.launch.button {
  500. top: 96px;
  501. }
  502. #example .launch.button .text {
  503. display: inline-block;
  504. display: none;
  505. }
  506. #example .main.container {
  507. position: relative;
  508. padding-bottom: 100px;
  509. }
  510. #example .main.container > h2 {
  511. -webkit-transition: 0.5s color ease;
  512. -moz-transition: 0.5s color ease;
  513. -o-transition: 0.5s color ease;
  514. -ms-transition: 0.5s color ease;
  515. transition: 0.5s color ease;
  516. }
  517. #example .swap {
  518. background: url(http://beta.myfav.es/images/themes/bg/subtle/subtle-handmade-paper.png) repeat;
  519. }
  520. #example .peek {
  521. position: absolute;
  522. top: 0px;
  523. left: -230px;
  524. width: 180px;
  525. /*
  526. -webkit-transition: padding 0.3s ease;
  527. -moz-transition: padding 0.3s ease;
  528. -o-transition: padding 0.3s ease;
  529. -ms-transition: padding 0.3s ease;
  530. transition: padding 0.3s ease;*/
  531. }
  532. #example .ui.tab.segment {
  533. padding: 1.5em 2em;
  534. }
  535. #example.popup .example .popup {
  536. color: #FF0000;
  537. }
  538. #example .position.example .icon {
  539. position: absolute;
  540. margin: 0em;
  541. }
  542. #example .position.example .segment {
  543. width: 250px;
  544. height: 250px;
  545. }
  546. #example .position.example .segment .icon:nth-of-type(1) {
  547. top: 3em;
  548. left: 3em;
  549. }
  550. #example .position.example .segment .icon:nth-of-type(2) {
  551. top: 3em;
  552. left: 50%;
  553. margin-left: -1em;
  554. }
  555. #example .position.example .segment .icon:nth-of-type(3) {
  556. top: 3em;
  557. right: 3em;
  558. }
  559. #example .position.example .segment .icon:nth-of-type(4) {
  560. top: 50%;
  561. margin-top: -1em;
  562. right: 3em;
  563. }
  564. #example .position.example .segment .icon:nth-of-type(5) {
  565. bottom: 3em;
  566. right: 3em;
  567. }
  568. #example .position.example .segment .icon:nth-of-type(6) {
  569. bottom: 3em;
  570. left: 50%;
  571. margin-left: -1em;
  572. }
  573. #example .position.example .segment .icon:nth-of-type(7) {
  574. bottom: 3em;
  575. left: 3em;
  576. }
  577. #example .position.example .segment .icon:nth-of-type(8) {
  578. top: 50%;
  579. margin-top: -1em;
  580. left: 3em;
  581. }
  582. #example .main.ui.grid {
  583. position: relative;
  584. }
  585. #example .example .toggle.button {
  586. min-width: 200px;
  587. }
  588. #example .example .language.label {
  589. margin: 1em 0em 0.75em;
  590. }
  591. #example .icon.example .grid {
  592. margin-top: 1.5rem;
  593. text-align: left;
  594. }
  595. #example .icon.example .grid .code {
  596. position: static;
  597. }
  598. #example .icon.example .grid .column {
  599. opacity: 0.8;
  600. margin-bottom: 2em;
  601. text-align: center;
  602. color: #888888;
  603. -webkit-transition:
  604. margin-left 0.3s ease-out,
  605. opacity 0.3s ease-out
  606. ;
  607. -moz-transition:
  608. margin-left 0.3s ease-out,
  609. opacity 0.3s ease-out
  610. ;
  611. -o-transition:
  612. margin-left 0.3s ease-out,
  613. opacity 0.3s ease-out
  614. ;
  615. -ms-transition:
  616. margin-left 0.3s ease-out,
  617. opacity 0.3s ease-out
  618. ;
  619. transition:
  620. margin-left 0.3s ease-out,
  621. opacity 0.3s ease-out
  622. ;
  623. }
  624. #example .icon.example .column .icon {
  625. opacity: 1;
  626. color: #333333;
  627. display: block;
  628. margin: 0em auto 0.25em;
  629. font-size: 2em;
  630. -webkit-transition:
  631. all 0.2s ease-out
  632. ;
  633. -moz-transition:
  634. all 0.2s ease-out
  635. ;
  636. -o-transition:
  637. all 0.2s ease-out
  638. ;
  639. -ms-transition:
  640. all 0.2s ease-out
  641. ;
  642. transition:
  643. all 0.2s ease-out
  644. ;
  645. }
  646. #example .icon.example .grid .column:hover .icon {
  647. color: #009FDA;
  648. -webkit-transform: scale(1.5);
  649. -moz-transform: scale(1.5);
  650. -o-transform: scale(1.5);
  651. -ms-transform: scale(1.5);
  652. transform: scale(1.5);
  653. }
  654. #example .another.icon.example {
  655. border-top: 1px solid rgba(0, 0, 0, 0.1);
  656. }
  657. #example .another.example {
  658. margin-top: 0em;
  659. padding-top: 2em;
  660. border-top: none;
  661. }
  662. #example .another.example i.code {
  663. top: 0px;
  664. }
  665. #example .example > p {
  666. color: #888888;
  667. }
  668. #example .peek .menu .active:nth-child(1) {
  669. border-right-color: #00B9F0;
  670. color: #00B9F0;
  671. }
  672. #example .peek .menu .active:nth-child(2) {
  673. border-right-color: #56BB73;
  674. color: #56BB73;
  675. }
  676. #example .peek .menu .active:nth-child(3) {
  677. border-right-color: #EF3F49;
  678. color: #EF3F49;
  679. }
  680. #example .peek .menu .active:nth-child(4) {
  681. border-right-color: #A24096;
  682. color: #A24096;
  683. }
  684. #example .main h2.group {
  685. color: #A24096;
  686. }
  687. #example .peek > .menu {
  688. margin-left: 0px;
  689. width: 180px;
  690. }
  691. /* #example .peek > .menu.animating > .active {
  692. background-color: transparent;
  693. border: none;
  694. padding-left: 0.95em;
  695. }
  696. #example .peek > .menu.animating > .active:after {
  697. background-color: #FFFFFF;
  698. } */
  699. /* overview mode */
  700. #example.overview h2.ui.header {
  701. margin-bottom: 0em;
  702. }
  703. /*
  704. #example .ui.header ~ .ui.message a,
  705. #example .ui.header ~ p a {
  706. font-weight: bold;
  707. }
  708. */
  709. #example.overview .example {
  710. margin: 0em;
  711. min-height: 0px !important;
  712. overflow: hidden;
  713. padding: 0.5em 0em;
  714. }
  715. #example.overview .example .ui.header,
  716. #example.overview .example p {
  717. float: right;
  718. font-size: 1em;
  719. font-weight: normal;
  720. margin: 0;
  721. padding: 0;
  722. }
  723. #example.overview .example p {
  724. float: left;
  725. font-size: 1rem;
  726. padding: 0em 0em 0em 0.3em;
  727. width: auto;
  728. }
  729. #example .sticky-wrapper.stuck {
  730. height: 0px !important;
  731. -webkit-transition:
  732. margin-left 0.3s ease-out,
  733. opacity 0.3s ease-out
  734. ;
  735. -moz-transition:
  736. margin-left 0.3s ease-out,
  737. opacity 0.3s ease-out
  738. ;
  739. -o-transition:
  740. margin-left 0.3s ease-out,
  741. opacity 0.3s ease-out
  742. ;
  743. -ms-transition:
  744. margin-left 0.3s ease-out,
  745. opacity 0.3s ease-out
  746. ;
  747. transition:
  748. margin-left 0.3s ease-out,
  749. opacity 0.3s ease-out
  750. ;
  751. }
  752. #example .sticky-wrapper.stuck .peek {
  753. position: fixed;
  754. top: 75px;
  755. left: 50%;
  756. margin-left: -685px;
  757. }
  758. #example.left.pushed .sticky-wrapper .peek {
  759. margin-left: -132.5px;
  760. padding-left: 132.5px;
  761. }
  762. #example.left.pushed .sticky-wrapper.stuck .peek {
  763. margin-left: -817.5px;
  764. padding-left: 132.5px;
  765. }
  766. #example .settings.table {
  767. margin-bottom: 20px;
  768. }
  769. #example .settings.table td:first-child {
  770. font-weight: bold;
  771. }
  772. #example .settings.table td:nth-child(2n) {
  773. width: 100px;
  774. }
  775. #example .existing.annotation {
  776. /*display: none;*/
  777. }
  778. /*#example .segment p:first-of-type {
  779. margin-top: 0em;
  780. }*/
  781. /* example code reskin */
  782. #example div.code.hide {
  783. display: none;
  784. }
  785. #example div.code {
  786. position: relative;
  787. width: 100%;
  788. height: 200px;
  789. text-align: left;
  790. }
  791. #example div.code {
  792. margin: -1em;
  793. font-size: 14px;
  794. padding: 5px 0px;
  795. background-color: transparent;
  796. }
  797. #example .label + div.code {
  798. margin-top: 1.5em;
  799. }
  800. #example div.code .ace_gutter {
  801. background-color: #FAFAFA;
  802. border-right: 1px solid rgba(0, 0, 0, 0.1);
  803. color: #999999;
  804. }
  805. #example div.code .ace_gutter-cell {
  806. padding-right: 20px;
  807. padding-left: 10px;
  808. }
  809. #example div.code .ace_bracket {
  810. background-color: rgba(0, 0, 0, 0.05);
  811. border: 1px solid rgba(0, 0, 0, 0.1);
  812. }
  813. #example div.code .ace_indent-guide {
  814. position: relative;
  815. background: none;
  816. }
  817. /* #example div.code .ace_indent-guide:after {
  818. content: '';
  819. position: absolute;
  820. top: 0px;
  821. right: 0px;
  822. height: 100%;
  823. border-left: 1px solid #ECF5F3;
  824. } */
  825. #example table .instructive.segment {
  826. background-color: transparent;
  827. border: 0px;
  828. box-shadow: none;
  829. padding: 0em;
  830. margin: -0.4em -0.7em;
  831. }
  832. #example table .instructive.segment .code {
  833. margin: 0em;
  834. }
  835. #example table .instructive.segment div.code .ace_identifier,
  836. #example table .instructive.segment div.code .ace_line {
  837. color: #555555;
  838. }
  839. #example .ui.label + .instructive.segment {
  840. margin-top: 0em;
  841. }
  842. #example .instructive.segment em {
  843. font-style: normal;
  844. color: rgba(0, 0, 0, 0.4);
  845. }
  846. #example .instructive.segment .title + em {
  847. float: right;
  848. }
  849. #example div.code .ace_gutter,
  850. #example div.code .ace_scroller {
  851. background-color: transparent;
  852. overflow: visible;
  853. margin: 14px 10px;
  854. }
  855. #example div.code .ace_scrollbar {
  856. overflow: hidden;
  857. background-color: transparent;
  858. }
  859. #example div.code .ace_line,
  860. #example div.code .ace_line span {
  861. -webkit-transition:
  862. color 1s ease-out
  863. ;
  864. -moz-transition:
  865. color 1s ease-out
  866. ;
  867. -o-transition:
  868. color 1s ease-out
  869. ;
  870. -ms-transition:
  871. color 1s ease-out
  872. ;
  873. transition:
  874. color 1s ease-out
  875. ;
  876. }
  877. #example div.code .ace_line {
  878. color: #555555;
  879. }
  880. #example div.code .ace_tag {
  881. color: #DCBCD3;
  882. }
  883. #example div.code .ace_attribute-name {
  884. color: #F4C5C5;
  885. }
  886. #example div.code .ace_content {
  887. }
  888. #example div.code .ace_string {
  889. color: #00A59D;
  890. }
  891. #example div.code .ace_cursor {
  892. border-left: none;
  893. }
  894. #example div.code .ace_paren {
  895. color: #CCCCCC;
  896. }
  897. #example div.code .ace_keyword {
  898. color: #CCCCCC;
  899. }
  900. #example div.code .ace_identifier {
  901. color: #CCCCCC;
  902. }
  903. #example div.code .ace_punctuation {
  904. color: #CCCCCC;
  905. }
  906. #example div.code .ace_active_line {
  907. background-color: #FBFBE5;
  908. }
  909. /* Hovered Style */
  910. #example div.code:hover .ace_line {
  911. color: #555555;
  912. }
  913. #example div.code:hover .ace_tag {
  914. color: #892A6F;
  915. }
  916. #example div.code:hover .ace_attribute-name {
  917. color: #934E4E;
  918. }
  919. #example div.code:hover .ace_content {
  920. }
  921. #example div.code:hover .ace_string {
  922. color: #00A59D;
  923. }
  924. #example div.code:hover .ace_cursor {/*
  925. border-left: 1px solid #AAAAAA;*/
  926. }
  927. #example div.code:hover .ace_paren {
  928. color: #555555;
  929. }
  930. #example div.code:hover .ace_keyword {
  931. color: #555555;
  932. }
  933. #example div.code:hover .ace_identifier {
  934. color: #555555;
  935. }
  936. #example div.code:hover .ace_scrollbar {
  937. overflow: hidden !important;
  938. }
  939. #example div.code:hover .ace_punctuation {
  940. color: #555555;
  941. }
  942. #example div.code:hover .ace_active_line {
  943. background-color: #FBFBE5;
  944. }
  945. /* examples */
  946. #example .no.example i.code {
  947. display: none;
  948. }
  949. #example .example:first-child,
  950. #example h2 + .example,
  951. #example h3 + .example,
  952. #example h4 + .example {
  953. margin-top: 0px;
  954. padding-top: 0px;
  955. border-top: none;
  956. }
  957. #example h2 + .example i.code,
  958. #example h3 + .example i.code,
  959. #example h4 + .example i.code {
  960. top: 0px;
  961. }
  962. #example .example > h4 {
  963. margin-bottom: 0em;
  964. }
  965. #example .example {
  966. margin: 1em 0em;
  967. padding: 1em 0em;
  968. border-top: 1px solid rgba(0, 0, 0, 0.05);
  969. /* clear: both;*/
  970. position: relative;
  971. }
  972. #example .example .grid i.code {
  973. right: 25%;
  974. }
  975. #example .example i.code {
  976. cursor: pointer;
  977. position: absolute;
  978. top: 2em;
  979. right: 0px;
  980. opacity: 0.2;
  981. font-size: 18px;
  982. color: #555555;
  983. -webkit-transition: opacity 0.3s ease-out;
  984. -moz-transition: opacity 0.3s ease-out;
  985. -o-transition: opacity 0.3s ease-out;
  986. -ms-transition: opacity 0.3s ease-out;
  987. transition: opacity 0.3s ease-out;
  988. }
  989. #example .example > i.code:before {
  990. font-family: 'Basic Icons';
  991. content: '\e714';
  992. }
  993. #example .example:hover i.code {
  994. opacity: 0.7;
  995. }
  996. #example .example:hover i.code:hover {
  997. opacity: 1;
  998. }
  999. #example .highlighted.example {
  1000. min-height: 390px;
  1001. }
  1002. #example .highlighted.example .grid,
  1003. #example .ui.type.items .image .grid {
  1004. -webkit-animation: grid 15s ease infinite;
  1005. -moz-animation: grid 15s ease infinite;
  1006. background-color: #F6F6F6;
  1007. margin: 0em auto;
  1008. }
  1009. #example .highlighted.example .grid .row,
  1010. #example .ui.type.items .image .grid .row {
  1011. border-top: 1px solid #DDDDDD;
  1012. }
  1013. #example .highlighted.example .grid .column,
  1014. #example .ui.type.items .image .grid .column {
  1015. background-color: #F4F4F4;
  1016. min-height: 50px;
  1017. -webkit-box-shadow: 0px 0px 0px 1px #E2E2E2;
  1018. -moz-box-shadow: 0px 0px 0px 1px #E2E2E2;
  1019. box-shadow: 0px 0px 0px 1px #E2E2E2;
  1020. }
  1021. #example .highlighted.example .grid .segment,
  1022. #example .ui.type.items .image .grid .segment {
  1023. min-height: 50px;
  1024. text-align: center;
  1025. padding-left: 0em;
  1026. padding-right: 0em;
  1027. -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
  1028. -moz-box-shadow: 0px 0px 0px 1px #DDDDDD;
  1029. box-shadow: 0px 0px 0px 1px #DDDDDD;
  1030. -webkit-border-radius: 0px;
  1031. -moz-border-radius: 0px;
  1032. border-radius: 0px;
  1033. }
  1034. @-webkit-keyframes grid {
  1035. 0% {
  1036. width: 100%;
  1037. }
  1038. 40% {
  1039. width: 70%;
  1040. }
  1041. 60% {
  1042. width: 70%;
  1043. }
  1044. 100% {
  1045. width: 100%;
  1046. }
  1047. }
  1048. @-moz-keyframes grid {
  1049. 0% {
  1050. width: 100%;
  1051. }
  1052. 40% {
  1053. width: 70%;
  1054. }
  1055. 60% {
  1056. width: 70%;
  1057. }
  1058. 100% {
  1059. width: 100%;
  1060. }
  1061. }
  1062. @keyframes grid {
  1063. 0% {
  1064. width: 100%;
  1065. }
  1066. 40% {
  1067. width: 70%;
  1068. }
  1069. 60% {
  1070. width: 70%;
  1071. }
  1072. 100% {
  1073. width: 100%;
  1074. }
  1075. }
  1076. #example .ui.type.items > .item {
  1077. min-height: 255px;
  1078. }
  1079. #example .ui.type.items > .item > .image {
  1080. padding: 1em;
  1081. height: 165px;
  1082. vertical-align: middle;
  1083. }
  1084. /* some demo formatting */
  1085. .ui.menu p:only-child {
  1086. margin: 0px;
  1087. }
  1088. .ui.menu a {
  1089. cursor: pointer;
  1090. }
  1091. body.progress .ui.progress .bar {
  1092. -webkit-animation: finish 10s ease-in-out infinite;
  1093. -moz-animation: finish 10s ease-in-out infinite;
  1094. }
  1095. @-webkit-keyframes finish {
  1096. 0% {
  1097. width: 0%;
  1098. }
  1099. 40% {
  1100. width: 100%;
  1101. }
  1102. 100% {
  1103. width: 100%;
  1104. }
  1105. }
  1106. @-moz-keyframes finish {
  1107. 0% {
  1108. width: 0%;
  1109. }
  1110. 40% {
  1111. width: 100%;
  1112. }
  1113. 100% {
  1114. width: 100%;
  1115. }
  1116. }
  1117. @keyframes finish {
  1118. 0% {
  1119. width: 0%;
  1120. }
  1121. 40% {
  1122. width: 100%;
  1123. }
  1124. 100% {
  1125. width: 100%;
  1126. }
  1127. }
  1128. #example.feed .example .segment {
  1129. max-width: 800px;
  1130. }
  1131. #example .fixed .launch {
  1132. display: none;
  1133. }
  1134. #example .designer .icon {
  1135. font-family: 'Basic Icons';
  1136. }
  1137. #example .fixed.column .sticky-wrapper {
  1138. height: 0px !important;
  1139. }
  1140. #example .fixed.column .fixed,
  1141. #example .fixed.segment .fixed {
  1142. position: fixed;
  1143. top: 65px;
  1144. -webkit-perspective: 2000px;
  1145. -moz-perspective: 2000px;
  1146. -ms-perspective: 2000px;
  1147. perspective: 2000px;
  1148. -webkit-transform-style: preserve-3d;
  1149. -moz-transform-style: preserve-3d;
  1150. -ms-transform-style: preserve-3d;
  1151. transform-style: preserve-3d;
  1152. }
  1153. @media only screen and (max-width : 1725px) {
  1154. #example .container {
  1155. width: auto;
  1156. margin-right: 100px;
  1157. margin-left: 325px;
  1158. }
  1159. #example.index .container {
  1160. margin-left: 8em;
  1161. margin-right: 8em;
  1162. }
  1163. #example .sticky-wrapper.stuck .peek {
  1164. margin-left: 0px;
  1165. left: 95px;
  1166. }
  1167. #example.left.pushed .sticky-wrapper .peek {
  1168. padding-left: 275px;
  1169. margin-left: -275px;
  1170. }
  1171. #example.left.pushed .sticky-wrapper.stuck .peek {
  1172. margin-left: 0px;
  1173. padding-left: 275px;
  1174. }
  1175. }
  1176. @media only screen and (max-width : 1500px) {
  1177. #example.index .icon.header .icon {
  1178. font-size: 3em;
  1179. }
  1180. }
  1181. @media only screen and (max-width : 1050px) {
  1182. #example .fixed .section,
  1183. #example .fixed .title b {
  1184. display: none;
  1185. }
  1186. #example .stripe .header .code.icon {
  1187. display: none;
  1188. }
  1189. #example .fixed .container {
  1190. width: auto;
  1191. margin: 0px auto;
  1192. }
  1193. #example .attached.launch.button {
  1194. display: none;
  1195. }
  1196. #example .fixed .launch {
  1197. display: inline-block;
  1198. }
  1199. #example .sticky-wrapper {
  1200. display: none;
  1201. }
  1202. #example .container {
  1203. width: auto;
  1204. margin: 0% 30px 0px;
  1205. }
  1206. #example
  1207. #example .right.attached.launch {
  1208. display: none;
  1209. }
  1210. }
  1211. @media only screen and (max-width : 780px) {
  1212. pre.console {
  1213. height: 150px;
  1214. }
  1215. #example.index .masthead {
  1216. text-align: center;
  1217. padding: 50px 0px 15px;
  1218. }
  1219. #example.index .masthead h1 {
  1220. font-size: 3em;
  1221. }
  1222. #example.index .masthead h1 .icon {
  1223. display: none;
  1224. }
  1225. #example.index .masthead .button {
  1226. font-size: 1.1em;
  1227. margin-bottom: 0.5em;
  1228. }
  1229. #example.index .masthead h2 {
  1230. font-size: 1.25em;
  1231. margin: 0em 0em 1em;
  1232. }
  1233. #example.index .masthead p {
  1234. font-size: 1.35em;
  1235. }
  1236. #example.index .container {
  1237. margin-left: 2em;
  1238. margin-right: 2em;
  1239. }
  1240. #example.index .icon.header .icon {
  1241. font-size: 3em;
  1242. }
  1243. #example .introduction {
  1244. display: block;
  1245. }
  1246. #example .advertisement {
  1247. display: block;
  1248. margin: 1em 0em;
  1249. padding: 0em;
  1250. }
  1251. #example #menu .hide.item {
  1252. display: block;
  1253. }
  1254. #example #menu .item > .icon {
  1255. font-size: 1em !important;
  1256. }
  1257. #example .inverted.advertisement .carbonad {
  1258. height: 109px;
  1259. }
  1260. #example .inverted.advertisement .carbonad-img {
  1261. margin-top: 0px;
  1262. }
  1263. #example #carbonads-container {
  1264. float: none;
  1265. }
  1266. #example .carbonad {
  1267. width: auto;
  1268. }
  1269. #example .carbonad-text,
  1270. #example .carbonad-tag {
  1271. float: none;
  1272. display: block;
  1273. text-align: left;
  1274. margin-left: 160px;
  1275. width: 170px;
  1276. }
  1277. }
  1278. @media only screen and (max-width : 600px) {
  1279. #example .icon.example .grid .column {
  1280. width: 33.33%;
  1281. }
  1282. }
  1283. @media only screen and (max-width : 600px) {
  1284. #example .main.menu .borderless.item {
  1285. display: none;
  1286. }
  1287. #example .fixed .developer,
  1288. #example .fixed .designer,
  1289. #example .fixed .previous,
  1290. #example .fixed .next {
  1291. display: none;
  1292. }
  1293. #example > .tab.segment .tabular.menu {
  1294. display: none;
  1295. }
  1296. #example > .tab.segment .vertical.menu {
  1297. display: block;
  1298. }
  1299. }
  1300. @media only screen and (max-width : 450px) {
  1301. #example .main.menu .icon.item {
  1302. display: none;
  1303. }
  1304. #example .main.menu .github.item {
  1305. display: block;
  1306. }
  1307. #example .main.menu .github.item:before {
  1308. display: none;
  1309. }
  1310. #example .carbonad {
  1311. height: 135px;
  1312. }
  1313. #example .carbonad .carbonad-text {
  1314. width: 90px;
  1315. }
  1316. }
  1317. @media only screen and (min-width : 1725px) {
  1318. #example .container {
  1319. width: 1100px;
  1320. }
  1321. #example .sticky-wrapper.stuck .peek {
  1322. margin-left: -780px;
  1323. }
  1324. #example.left.pushed .main.menu {
  1325. margin-left: -132px;
  1326. }
  1327. }
  1328. @media only screen and (min-width : 2300px) {
  1329. #example .container {
  1330. width: 1320px;
  1331. }
  1332. #example .sticky-wrapper.stuck .peek {
  1333. margin-left: -890px;
  1334. }
  1335. }
  1336. @media only screen and (max-width : 998px) {
  1337. #example.index .main.menu .container {
  1338. width: auto;
  1339. padding: 0% 4%;
  1340. }
  1341. #example.transition .examples {
  1342. width: 100%;
  1343. }
  1344. #example.transition .examples .pointing.below.label {
  1345. display: none;
  1346. }
  1347. }
  1348. @media only screen and (min-width : 998px) {
  1349. #example.index .main.menu .container {
  1350. width: auto;
  1351. padding: 0% 8%;
  1352. }
  1353. #example .examples {
  1354. margin-right: 400px;
  1355. }
  1356. #example .fixed.column,
  1357. #example .fixed.column .fixed {
  1358. float: right;
  1359. width: 300px;
  1360. }
  1361. }
  1362. @media only screen and (min-width : 1500px) {
  1363. #example.index .main.menu .container {
  1364. width: auto;
  1365. padding: 0% 13%;
  1366. }
  1367. #example .examples {
  1368. margin-right: 500px;
  1369. }
  1370. #example .fixed.column,
  1371. #example .fixed.column .fixed {
  1372. float: right;
  1373. width: 400px;
  1374. }
  1375. }
  1376. @media only screen and (min-width : 1750px) {
  1377. #example.index .main.menu .container {
  1378. width: auto;
  1379. padding: 0% 18%;
  1380. }
  1381. }
  1382. @media only screen and (min-width : 2000px) {
  1383. #example.index .main.menu .container {
  1384. width: auto;
  1385. padding: 0% 23%;
  1386. }
  1387. }