Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.49 KB | None | 0 0
  1. /*
  2.  
  3. Please don't edit this file directly.
  4. Instead, edit the stylus (.styl) files and compile it to CSS on your machine.
  5.  
  6. */
  7. /* ----------------------------------------------------------------------------
  8. * Fonts
  9. */
  10. @import url("//fonts.googleapis.com/css?family=Montserrat:700|Open+Sans:300");
  11. /* ----------------------------------------------------------------------------
  12. * Base
  13. */
  14. html,
  15. body,
  16. div,
  17. span,
  18. applet,
  19. object,
  20. iframe,
  21. h1,
  22. h2,
  23. h3,
  24. h4,
  25. h5,
  26. h6,
  27. p,
  28. blockquote,
  29. pre,
  30. a,
  31. abbr,
  32. acronym,
  33. address,
  34. big,
  35. cite,
  36. code,
  37. del,
  38. dfn,
  39. em,
  40. img,
  41. ins,
  42. kbd,
  43. q,
  44. s,
  45. samp,
  46. small,
  47. strike,
  48. strong,
  49. sub,
  50. sup,
  51. tt,
  52. var,
  53. dl,
  54. dt,
  55. dd,
  56. ol,
  57. ul,
  58. li,
  59. fieldset,
  60. form,
  61. label,
  62. legend,
  63. table,
  64. caption,
  65. tbody,
  66. tfoot,
  67. thead,
  68. tr,
  69. th,
  70. td {
  71. margin: 0;
  72. padding: 0;
  73. border: 0;
  74. outline: 0;
  75. font-weight: inherit;
  76. font-style: inherit;
  77. font-family: inherit;
  78. font-size: 100%;
  79. vertical-align: baseline;
  80. }
  81. body {
  82. line-height: 1;
  83. color: #000;
  84. background: #fff;
  85. }
  86. ol,
  87. ul {
  88. list-style: none;
  89. }
  90. table {
  91. border-collapse: separate;
  92. border-spacing: 0;
  93. vertical-align: middle;
  94. }
  95. caption,
  96. th,
  97. td {
  98. text-align: left;
  99. font-weight: normal;
  100. vertical-align: middle;
  101. }
  102. a img {
  103. border: none;
  104. }
  105. html,
  106. body {
  107. height: 100%;
  108. }
  109. html {
  110. overflow-x: hidden;
  111. }
  112. body,
  113. td,
  114. textarea,
  115. input {
  116. font-family: Helvetica Neue, Open Sans, sans-serif;
  117. line-height: 1.6;
  118. font-size: 13px;
  119. color: #111111;
  120. }
  121. @media (max-width: 480px) {
  122. body,
  123. td,
  124. textarea,
  125. input {
  126. font-size: 12px;
  127. }
  128. }
  129. a {
  130. color: #33AACC;
  131. text-decoration: none;
  132. }
  133. a:hover {
  134. color: #33AACC;
  135. }
  136. /* ----------------------------------------------------------------------------
  137. * Content styling
  138. */
  139. .content p,
  140. .content ul,
  141. .content ol,
  142. .content h1,
  143. .content h2,
  144. .content h3,
  145. .content h4,
  146. .content h5,
  147. .content h6,
  148. .content pre,
  149. .content blockquote {
  150. padding: 10px 0;
  151. -webkit-box-sizing: border-box;
  152. -moz-box-sizing: border-box;
  153. box-sizing: border-box;
  154. }
  155. .content h1,
  156. .content h2,
  157. .content h3,
  158. .content h4,
  159. .content h5,
  160. .content h6 {
  161. font-weight: bold;
  162. -webkit-font-smoothing: antialiased;
  163. text-rendering: optimizeLegibility;
  164. }
  165. .content pre {
  166. font-family: Menlo, monospace;
  167. }
  168. .content ul > li {
  169. list-style-type: disc;
  170. }
  171. .content ol > li {
  172. list-style-type: decimal;
  173. }
  174. .content ul,
  175. .content ol {
  176. margin-left: 20px;
  177. }
  178. .content ul > li {
  179. list-style-type: none;
  180. position: relative;
  181. }
  182. .content ul > li:before {
  183. content: '';
  184. display: block;
  185. position: absolute;
  186. left: -17px;
  187. top: 7px;
  188. width: 5px;
  189. height: 5px;
  190. -webkit-border-radius: 4px;
  191. border-radius: 4px;
  192. -webkit-box-sizing: border-box;
  193. -moz-box-sizing: border-box;
  194. box-sizing: border-box;
  195. background: #fff;
  196. border: solid 1px #EEEEEE;
  197. }
  198. .content li > :first-child {
  199. padding-top: 0;
  200. }
  201. .content strong,
  202. .content b {
  203. font-weight: bold;
  204. }
  205. .content i,
  206. .content em {
  207. font-style: italic;
  208. }
  209. .content code {
  210. font-family: Menlo, monospace;
  211. background: #272724;
  212. padding: 1px 3px;
  213. font-size: 0.95em;
  214. }
  215. .content pre > code {
  216. display: block;
  217. background: transparent;
  218. font-size: 0.85em;
  219. letter-spacing: -1px;
  220. }
  221. .content blockquote :first-child {
  222. padding-top: 0;
  223. }
  224. .content blockquote :last-child {
  225. padding-bottom: 0;
  226. }
  227. .content table {
  228. margin-top: 10px;
  229. margin-bottom: 10px;
  230. padding: 0;
  231. border-collapse: collapse;
  232. clear: both;
  233. float: left;
  234. }
  235. .content table tr {
  236. border-top: 1px solid #ccc;
  237. background-color: #fff;
  238. margin: 0;
  239. padding: 0;
  240. }
  241. .content table tr :nth-child(2n) {
  242. background-color: #f8f8f8;
  243. }
  244. .content table tr th {
  245. text-align: auto;
  246. font-weight: bold;
  247. border: 1px solid #ccc;
  248. margin: 0;
  249. padding: 6px 13px;
  250. }
  251. .content table tr td {
  252. text-align: auto;
  253. border: 1px solid #ccc;
  254. margin: 0;
  255. padding: 6px 13px;
  256. }
  257. .content table tr th :first-child,
  258. .content table tr td :first-child {
  259. margin-top: 0;
  260. }
  261. .content table tr th :last-child,
  262. .content table tr td :last-child {
  263. margin-bottom: 0;
  264. }
  265. /* ----------------------------------------------------------------------------
  266. * Content
  267. */
  268. .content-root {
  269. min-height: 90%;
  270. position: relative;
  271. }
  272. .content {
  273. padding-top: 30px;
  274. padding-bottom: 40px;
  275. padding-left: 40px;
  276. padding-right: 40px;
  277. zoom: 1;
  278. max-width: 700px;
  279. }
  280. .content:before,
  281. .content:after {
  282. content: "";
  283. display: table;
  284. }
  285. .content:after {
  286. clear: both;
  287. }
  288. .content blockquote {
  289. color: #33AACC;
  290. }
  291.  
  292. .content h1,
  293. .content h2,
  294. .content h3 {
  295. -webkit-font-smoothing: antialiased;
  296. text-rendering: optimizeLegibility;
  297. font-family: montserrat;
  298. padding-bottom: 0;
  299. color: #000000;
  300. }
  301. .content h1 + p,
  302. .content h2 + p,
  303. .content h3 + p,
  304. .content h1 ul,
  305. .content h2 ul,
  306. .content h3 ul,
  307. .content h1 ol,
  308. .content h2 ol,
  309. .content h3 ol {
  310. padding-top: 10px;
  311. }
  312. .content h1,
  313. .content h2 {
  314. text-transform: uppercase;
  315. letter-spacing: 1px;
  316. font-size: 1.5em;
  317. }
  318. .content h3 {
  319. font-size: 1.2em;
  320. }
  321. .content h1,
  322. .content h2,
  323. .content .big-heading,
  324. body.big-h3 .content h3 {
  325. padding-top: 80px;
  326. }
  327. .content h1:before,
  328. .content h2:before,
  329. .content .big-heading:before,
  330. body.big-h3 .content h3:before {
  331. display: block;
  332. content: '';
  333. background: -webkit-linear-gradient(left, #dfe2e7 80%, rgba(223,226,231,0));
  334. background: -moz-linear-gradient(left, #dfe2e7 80%, rgba(223,226,231,0));
  335. background: -o-linear-gradient(left, #dfe2e7 80%, rgba(223,226,231,0));
  336. background: -ms-linear-gradient(left, #dfe2e7 80%, rgba(223,226,231,0));
  337. background: linear-gradient(to right, #dfe2e7 80%, rgba(223,226,231,0));
  338. -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.4);
  339. box-shadow: 0 1px 0 rgba(255,255,255,0.4);
  340. height: 1px;
  341. position: relative;
  342. top: -40px;
  343. left: -40px;
  344. width: 100%;
  345. }
  346. @media (max-width: 768px) {
  347. .content h1,
  348. .content h2,
  349. .content .big-heading,
  350. body.big-h3 .content h3 {
  351. padding-top: 40px;
  352. }
  353. .content h1:before,
  354. .content h2:before,
  355. .content .big-heading:before,
  356. body.big-h3 .content h3:before {
  357. background: #dfe2e7;
  358. left: -40px;
  359. top: -20px;
  360. width: 120%;
  361. }
  362. }
  363. .content h4,
  364. .content h5,
  365. .content .small-heading,
  366. body:not(.big-h3) .content h3 {
  367. border-bottom: solid 1px rgba(0,0,0,0.07);
  368. color: #000000;
  369. padding-top: 30px;
  370. padding-bottom: 10px;
  371. }
  372. body:not(.big-h3) .content h3 {
  373. font-size: 0.9em;
  374. }
  375. .content h1:first-child {
  376. padding-top: 0;
  377. }
  378. .content h1:first-child,
  379. .content h1:first-child a,
  380. .content h1:first-child a:visited {
  381. color: #33AACC;
  382. }
  383. .content h1:first-child:before {
  384. display: none;
  385. }
  386. @media (max-width: 768px) {
  387. .content h4,
  388. .content h5,
  389. .content .small-heading,
  390. body:not(.big-h3) .content h3 {
  391. padding-top: 20px;
  392. }
  393. }
  394. @media (max-width: 480px) {
  395. .content {
  396. padding: 20px;
  397. padding-top: 40px;
  398. }
  399. .content h4,
  400. .content h5,
  401. .content .small-heading,
  402. body:not(.big-h3) .content h3 {
  403. padding-top: 10px;
  404. }
  405. }
  406. body.no-literate .content pre > code {
  407. background: #272724;
  408. border: solid 1px #e7eaee;
  409. border-top: solid 1px #dbdde2;
  410. border-left: solid 1px #e2e5e9;
  411. display: block;
  412. padding: 10px;
  413. -webkit-border-radius: 2px;
  414. border-radius: 2px;
  415. overflow: auto;
  416. }
  417. body.no-literate .content pre > code {
  418. -webkit-overflow-scrolling: touch;
  419. }
  420. body.no-literate .content pre > code::-webkit-scrollbar {
  421. width: 15px;
  422. height: 15px;
  423. }
  424. body.no-literate .content pre > code::-webkit-scrollbar-thumb {
  425. background: #ddd;
  426. -webkit-border-radius: 8px;
  427. border-radius: 8px;
  428. border: solid 4px #272724;
  429. }
  430. body.no-literate .content pre > code:hover::-webkit-scrollbar-thumb {
  431. background: #999;
  432. }
  433. @media (max-width: 1180px) {
  434. .content pre > code {
  435. background: #272724;
  436. border: solid 1px #e7eaee;
  437. border-top: solid 1px #dbdde2;
  438. border-left: solid 1px #e2e5e9;
  439. display: block;
  440. padding: 10px;
  441. -webkit-border-radius: 2px;
  442. border-radius: 2px;
  443. overflow: auto;
  444. }
  445. .content pre > code {
  446. -webkit-overflow-scrolling: touch;
  447. }
  448. .content pre > code::-webkit-scrollbar {
  449. width: 15px;
  450. height: 15px;
  451. }
  452. .content pre > code::-webkit-scrollbar-thumb {
  453. background: #ddd;
  454. -webkit-border-radius: 8px;
  455. border-radius: 8px;
  456. border: solid 4px #272724;
  457. }
  458. .content pre > code:hover::-webkit-scrollbar-thumb {
  459. background: #999;
  460. }
  461. }
  462. .button {
  463. -webkit-font-smoothing: antialiased;
  464. text-rendering: optimizeLegibility;
  465. font-family: montserrat, sans-serif;
  466. letter-spacing: -1px;
  467. font-weight: bold;
  468. display: inline-block;
  469. padding: 3px 25px;
  470. border: solid 2px #33AACC;
  471. -webkit-border-radius: 20px;
  472. border-radius: 20px;
  473. margin-right: 15px;
  474. }
  475. .button,
  476. .button:visited {
  477. background: #272724;
  478. color: #fff;
  479. text-shadow: none;
  480. }
  481. .button:hover {
  482. border-color: #33AACC;
  483. background: #33AACC;
  484. color: #fff;
  485. }
  486. .button.light,
  487. .button.light:visited {
  488. background: #272724;
  489. color: #fff;
  490. border-color: #33AACC;
  491. text-shadow: none;
  492. }
  493. .button.light:hover {
  494. border-color: #33AACC;
  495. background: #33AACC;
  496. color: #fff;
  497. }
  498. .content .button + em {
  499. color: #EEEEEE;
  500. }
  501. @media (min-width: 1180px) {
  502. body:not(.no-literate) .content-root {
  503. background-color: #272724;
  504. -webkit-box-shadow: inset 780px 0 #fff, inset 781px 0 #dfe2e7, inset 790px 0 5px -10px rgba(0,0,0,0.1);
  505. box-shadow: inset 780px 0 #fff, inset 781px 0 #dfe2e7, inset 790px 0 5px -10px rgba(0,0,0,0.1);
  506. }
  507. }
  508. @media (min-width: 1180px) {
  509. body:not(.no-literate) .content {
  510. padding-left: 0;
  511. padding-right: 0;
  512. width: 930px;
  513. max-width: none;
  514. }
  515. body:not(.no-literate) .content > p,
  516. body:not(.no-literate) .content > ul,
  517. body:not(.no-literate) .content > ol,
  518. body:not(.no-literate) .content > h1,
  519. body:not(.no-literate) .content > h2,
  520. body:not(.no-literate) .content > h3,
  521. body:not(.no-literate) .content > h4,
  522. body:not(.no-literate) .content > h5,
  523. body:not(.no-literate) .content > h6,
  524. body:not(.no-literate) .content > pre,
  525. body:not(.no-literate) .content > blockquote {
  526. width: 550px;
  527. -webkit-box-sizing: border-box;
  528. -moz-box-sizing: border-box;
  529. box-sizing: border-box;
  530. padding-right: 40px;
  531. padding-left: 40px;
  532. }
  533. body:not(.no-literate) .content > h1,
  534. body:not(.no-literate) .content > h2,
  535. body:not(.no-literate) .content > h3 {
  536. clear: both;
  537. width: 100%;
  538. }
  539. body:not(.no-literate) .content > pre,
  540. body:not(.no-literate) .content > blockquote {
  541. width: 380px;
  542. padding-left: 20px;
  543. padding-right: 20px;
  544. float: right;
  545. clear: right;
  546. }
  547. body:not(.no-literate) .content > pre + p,
  548. body:not(.no-literate) .content > blockquote + p,
  549. body:not(.no-literate) .content > pre + ul,
  550. body:not(.no-literate) .content > blockquote + ul,
  551. body:not(.no-literate) .content > pre + ol,
  552. body:not(.no-literate) .content > blockquote + ol,
  553. body:not(.no-literate) .content > pre + h4,
  554. body:not(.no-literate) .content > blockquote + h4,
  555. body:not(.no-literate) .content > pre + h5,
  556. body:not(.no-literate) .content > blockquote + h5,
  557. body:not(.no-literate) .content > pre + h6,
  558. body:not(.no-literate) .content > blockquote + h6 {
  559. clear: both;
  560. }
  561. body:not(.no-literate) .content > p,
  562. body:not(.no-literate) .content > ul,
  563. body:not(.no-literate) .content > ol,
  564. body:not(.no-literate) .content > h4,
  565. body:not(.no-literate) .content > h5,
  566. body:not(.no-literate) .content > h6 {
  567. float: left;
  568. clear: left;
  569. }
  570. body:not(.no-literate) .content > h4,
  571. body:not(.no-literate) .content > h5,
  572. body:not(.no-literate) .content > .small-heading,
  573. body:not(.big-h3) body:not(.no-literate) .content > h3 {
  574. margin-left: 40px;
  575. width: 470px;
  576. margin-bottom: 3px;
  577. padding-left: 0;
  578. padding-right: 0;
  579. }
  580. body:not(.no-literate) .content > table {
  581. margin-left: 40px;
  582. margin-right: 40px;
  583. max-width: 470px;
  584. }
  585. body:not(.no-literate):not(.big-h3) .content > h3 {
  586. margin-left: 40px;
  587. width: 470px;
  588. margin-bottom: 3px;
  589. padding-left: 0;
  590. padding-right: 0;
  591. }
  592. }
  593. .header {
  594. background: #272724;
  595. border-bottom: solid 1px #dfe2e7;
  596. padding: 15px 15px 15px 30px;
  597. zoom: 1;
  598. line-height: 20px;
  599. position: relative;
  600. }
  601. .header:before,
  602. .header:after {
  603. content: "";
  604. display: table;
  605. }
  606. .header:after {
  607. clear: both;
  608. }
  609. .header .left {
  610. float: left;
  611. }
  612. .header .right {
  613. text-align: right;
  614. position: absolute;
  615. right: 15px;
  616. top: 15px;
  617. }
  618. .header .right iframe {
  619. display: inline-block;
  620. vertical-align: middle;
  621. }
  622. .header h1 {
  623. -webkit-font-smoothing: antialiased;
  624. text-rendering: optimizeLegibility;
  625. font-weight: bold;
  626. font-family: montserrat, sans-serif;
  627. font-size: 13px;
  628. }
  629. .header h1,
  630. .header h1 a,
  631. .header h1 a:visited {
  632. color: #EEEEE;
  633. }
  634. .header h1 a:hover {
  635. color: #FFFFFF;
  636. }
  637. .header li a {
  638. font-size: 0.88em;
  639. color: #EEEEEE;
  640. display: block;
  641. }
  642. .header li a:hover {
  643. color: #FFFFFF;
  644. }
  645. @media (min-width: 480px) {
  646. .header h1 {
  647. float: left;
  648. }
  649. .header ul,
  650. .header li {
  651. display: block;
  652. float: left;
  653. }
  654. .header ul {
  655. margin-left: -15px;
  656. }
  657. .header h1 + ul {
  658. border-left: solid 1px #EEEEEE;
  659. margin-left: 15px;
  660. }
  661. .header li {
  662. border-left: solid 1px rgba(255,255,255,0.5);
  663. border-right: solid 1px #dfe2e7;
  664. }
  665. .header li:last-child {
  666. border-right: 0;
  667. }
  668. .header li a {
  669. padding: 0 15px;
  670. }
  671. }
  672. @media (max-width: 480px) {
  673. .right {
  674. display: none;
  675. }
  676. }
  677. .menubar {
  678. -webkit-font-smoothing: antialiased;
  679. text-rendering: optimizeLegibility;
  680. }
  681. .menubar .section {
  682. padding: 30px 30px;
  683. -webkit-box-sizing: border-box;
  684. -moz-box-sizing: border-box;
  685. box-sizing: border-box;
  686. }
  687. .menubar .section + .section {
  688. border-top: solid 1px #dfe2e7;
  689. }
  690. .menubar .section.no-line {
  691. border-top: 0;
  692. padding-top: 0;
  693. }
  694. a.big.button {
  695. display: block;
  696. -webkit-box-sizing: border-box;
  697. -moz-box-sizing: border-box;
  698. box-sizing: border-box;
  699. width: 100%;
  700. padding: 10px 20px;
  701. text-align: center;
  702. font-weight: bold;
  703. font-size: 1.1em;
  704. background: transparent;
  705. border: solid 3px #33AACC;
  706. -webkit-border-radius: 30px;
  707. border-radius: 30px;
  708. font-family: montserrat, sans-serif;
  709. }
  710. a.big.button,
  711. a.big.button:visited {
  712. color: #fff;
  713. text-decoration: none;
  714. }
  715. a.big.button:hover {
  716. background: #33AACC;
  717. }
  718. a.big.button:hover,
  719. a.big.button:hover:visited {
  720. color: #fff;
  721. }
  722. @media (max-width: 480px) {
  723. .menubar {
  724. padding: 20px;
  725. border-bottom: solid 1px #dfe2e7;
  726. }
  727. }
  728. @media (max-width: 768px) {
  729. .menubar {
  730. display: none;
  731. }
  732. }
  733. @media (min-width: 768px) {
  734. .content-root {
  735. padding-left: 230px;
  736. }
  737. .menubar {
  738. position: absolute;
  739. left: 0;
  740. top: 0;
  741. bottom: 0;
  742. width: 230px;
  743. border-right: solid 1px #dfe2e7;
  744. }
  745. .menubar.fixed {
  746. position: fixed;
  747. overflow-y: auto;
  748. }
  749. .menubar.fixed {
  750. -webkit-overflow-scrolling: touch;
  751. }
  752. .menubar.fixed::-webkit-scrollbar {
  753. width: 15px;
  754. height: 15px;
  755. }
  756. .menubar.fixed::-webkit-scrollbar-thumb {
  757. background: #272724;
  758. -webkit-border-radius: 8px;
  759. border-radius: 8px;
  760. border: solid 4px #fff;
  761. }
  762. .menubar.fixed:hover::-webkit-scrollbar-thumb {
  763. background: #999;
  764. }
  765. }
  766. .menubar {
  767. font-size: 0.9em;
  768. background: #272724;
  769. }
  770. .menu ul.level-1 > li + li {
  771. margin-top: 20px;
  772. }
  773. .menu a {
  774. -webkit-box-sizing: border-box;
  775. -moz-box-sizing: border-box;
  776. box-sizing: border-box;
  777. position: relative;
  778. display: block;
  779. padding-top: 1px;
  780. padding-bottom: 1px;
  781. margin-right: -30px;
  782. }
  783. .menu a,
  784. .menu a:visited {
  785. color: #EEEEEE;
  786. }
  787. .menu a:hover {
  788. color: #FFFFFF;
  789. }
  790. .menu a.level-1 {
  791. font-family: montserrat, sans-serif;
  792. text-transform: uppercase;
  793. font-size: 0.9em;
  794. font-weight: bold;
  795. }
  796. .menu a.level-1,
  797. .menu a.level-1:visited {
  798. color: #EEEEEE;
  799. }
  800. .menu a.level-1:hover {
  801. color: #FFFFFF;
  802. }
  803. .menu a.level-2 {
  804. font-weight: normal;
  805. }
  806. .menu a.level-3 {
  807. font-weight: normal;
  808. font-size: 0.9em;
  809. padding-left: 10px;
  810. }
  811. .menu a.active {
  812. font-weight: bold !important;
  813. }
  814. .menu a.active,
  815. .menu a.active:visited,
  816. .menu a.active:hover {
  817. color: #33AACC !important;
  818. }
  819. .menu a.active:after {
  820. content: '';
  821. display: block;
  822. -webkit-box-sizing: border-box;
  823. -moz-box-sizing: border-box;
  824. box-sizing: border-box;
  825. position: absolute;
  826. top: 10px;
  827. right: 30px;
  828. width: 9px;
  829. height: 3px;
  830. -webkit-border-radius: 2px;
  831. border-radius: 2px;
  832. background: #272724;
  833. }
  834.  
  835. code { color: #EFEFEF; }
  836. code .string,
  837. code .number {
  838. color: #3ac;
  839. }
  840. code .init {
  841. color: #383;
  842. }
  843. code .keyword {
  844. font-weight: bold;
  845. }
  846. code .comment {
  847. color: #FFE000;
  848. }
  849. .large-brief .content > h1:first-child + p,
  850. .content > p.brief {
  851. font-size: 1.3em;
  852. font-family: Open Sans, sans-serif;
  853. font-weight: 300;
  854. }
  855. .title-area {
  856. min-height: 100px;
  857. -webkit-box-sizing: border-box;
  858. -moz-box-sizing: border-box;
  859. box-sizing: border-box;
  860. -webkit-font-smoothing: antialiased;
  861. text-rendering: optimizeLegibility;
  862. text-align: center;
  863. border-bottom: solid 1px #dfe2e7;
  864. overflow: hidden;
  865. }
  866. .title-area > img.bg {
  867. z-index: 0;
  868. position: absolute;
  869. left: -9999px;
  870. }
  871. .title-area > div {
  872. position: relative;
  873. z-index: 1;
  874. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement