Advertisement
ToNamPhong

Uikit Gradient

Aug 28th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 211.55 KB | None | 0 0
  1.  
  2. /* HTML5 elements
  3. ========================================================================== */
  4. /*
  5. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  6. * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
  7. * Correct `block` display not defined for `main` in IE 11.
  8. */
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. main,
  17. nav,
  18. section,
  19. summary {
  20. display: block;
  21. }
  22. /*
  23. * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  24. */
  25. progress {
  26. vertical-align: baseline;
  27. }
  28. /*
  29. * Prevent displaying `audio` without controls in Chrome, Safari and Opera
  30. */
  31. audio:not([controls]) {
  32. display: none;
  33. }
  34. /*
  35. * Address `[hidden]` styling not present in IE 8/9/10.
  36. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  37. */
  38. [hidden],
  39. template {
  40. display: none;
  41. }
  42. /* Iframe
  43. ========================================================================== */
  44. iframe {
  45. border: 0;
  46. }
  47. /* Fix viewport for IE10 snap mode
  48. ========================================================================== */
  49. @media screen and (max-width: 400px) {
  50. @-ms-viewport {
  51. width: device-width;
  52. }
  53. }
  54. /* ========================================================================
  55. Component: Grid
  56. ========================================================================== */
  57. /*
  58. * 1. Makes grid more robust so that it can be used with other block elements like lists
  59. */
  60. .uk-grid {
  61. display: -ms-flexbox;
  62. display: -webkit-flex;
  63. display: flex;
  64. -ms-flex-wrap: wrap;
  65. -webkit-flex-wrap: wrap;
  66. flex-wrap: wrap;
  67. /* 1 */
  68. margin: 0;
  69. padding: 0;
  70. list-style: none;
  71. }
  72. /*
  73. * DEPRECATED
  74. * Micro clearfix
  75. * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
  76. */
  77. .uk-grid:before,
  78. .uk-grid:after {
  79. content: "";
  80. display: block;
  81. overflow: hidden;
  82. }
  83. .uk-grid:after {
  84. clear: both;
  85. }
  86. /*
  87. * Grid cell
  88. * 1. Space is allocated solely based on content dimensions
  89. * 2. Makes grid more robust so that it can be used with other block elements
  90. * 3. DEPRECATED Using `float` to support IE9
  91. */
  92. .uk-grid > * {
  93. /* 1 */
  94. -ms-flex: none;
  95. -webkit-flex: none;
  96. flex: none;
  97. /* 2 */
  98. margin: 0;
  99. /* 3 */
  100. float: left;
  101. }
  102. /*
  103. * Remove margin from the last-child
  104. */
  105. .uk-grid > * > :last-child {
  106. margin-bottom: 0;
  107. }
  108. /* Grid gutter
  109. ========================================================================== */
  110. /*
  111. * Default gutter
  112. */
  113. /* Horizontal */
  114. .uk-grid {
  115. margin-left: -25px;
  116. }
  117. .uk-grid > * {
  118. padding-left: 25px;
  119. }
  120. /* Vertical */
  121. .uk-grid + .uk-grid,
  122. .uk-grid-margin,
  123. .uk-grid > * > .uk-panel + .uk-panel {
  124. margin-top: 25px;
  125. }
  126. /* Large screen and bigger */
  127. @media (min-width: 1220px) {
  128. /* Horizontal */
  129. .uk-grid {
  130. margin-left: -35px;
  131. }
  132. .uk-grid > * {
  133. padding-left: 35px;
  134. }
  135. /* Vertical */
  136. .uk-grid + .uk-grid,
  137. .uk-grid-margin,
  138. .uk-grid > * > .uk-panel + .uk-panel {
  139. margin-top: 35px;
  140. }
  141. }
  142. /*
  143. * Collapse gutter
  144. */
  145. /* Horizontal */
  146. .uk-grid-collapse {
  147. margin-left: 0;
  148. }
  149. .uk-grid-collapse > * {
  150. padding-left: 0;
  151. }
  152. /* Vertical */
  153. .uk-grid-collapse + .uk-grid-collapse,
  154. .uk-grid-collapse > .uk-grid-margin,
  155. .uk-grid-collapse > * > .uk-panel + .uk-panel {
  156. margin-top: 0;
  157. }
  158. /*
  159. * Small gutter
  160. */
  161. /* Horizontal */
  162. .uk-grid-small {
  163. margin-left: -10px;
  164. }
  165. .uk-grid-small > * {
  166. padding-left: 10px;
  167. }
  168. /* Vertical */
  169. .uk-grid-small + .uk-grid-small,
  170. .uk-grid-small > .uk-grid-margin,
  171. .uk-grid-small > * > .uk-panel + .uk-panel {
  172. margin-top: 10px;
  173. }
  174. /*
  175. * Medium gutter
  176. */
  177. /* Horizontal */
  178. .uk-grid-medium {
  179. margin-left: -25px;
  180. }
  181. .uk-grid-medium > * {
  182. padding-left: 25px;
  183. }
  184. /* Vertical */
  185. .uk-grid-medium + .uk-grid-medium,
  186. .uk-grid-medium > .uk-grid-margin,
  187. .uk-grid-medium > * > .uk-panel + .uk-panel {
  188. margin-top: 25px;
  189. }
  190. /*
  191. * Large gutter
  192. */
  193. /* Large screen and bigger */
  194. @media (min-width: 960px) {
  195. /* Horizontal */
  196. .uk-grid-large {
  197. margin-left: -35px;
  198. }
  199. .uk-grid-large > * {
  200. padding-left: 35px;
  201. }
  202. /* Vertical */
  203. .uk-grid-large + .uk-grid-large,
  204. .uk-grid-large-margin,
  205. .uk-grid-large > * > .uk-panel + .uk-panel {
  206. margin-top: 35px;
  207. }
  208. }
  209. /* Extra Large screens */
  210. @media (min-width: 1220px) {
  211. /* Horizontal */
  212. .uk-grid-large {
  213. margin-left: -50px;
  214. }
  215. .uk-grid-large > * {
  216. padding-left: 50px;
  217. }
  218. /* Vertical */
  219. .uk-grid-large + .uk-grid-large,
  220. .uk-grid-large-margin,
  221. .uk-grid-large > * > .uk-panel + .uk-panel {
  222. margin-top: 50px;
  223. }
  224. }
  225. /* Modifier: `uk-grid-divider`
  226. ========================================================================== */
  227. /*
  228. * Horizontal divider
  229. * Only works with the default gutter. Does not work with gutter collapse, small or large.
  230. * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row.
  231. */
  232. .uk-grid-divider:not(:empty) {
  233. margin-left: -25px;
  234. margin-right: -25px;
  235. }
  236. .uk-grid-divider > * {
  237. padding-left: 25px;
  238. padding-right: 25px;
  239. }
  240. .uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
  241. .uk-grid-divider > [class*='uk-width-2-']:nth-child(n+2),
  242. .uk-grid-divider > [class*='uk-width-3-']:nth-child(n+2),
  243. .uk-grid-divider > [class*='uk-width-4-']:nth-child(n+2),
  244. .uk-grid-divider > [class*='uk-width-5-']:nth-child(n+2),
  245. .uk-grid-divider > [class*='uk-width-6-']:nth-child(n+2),
  246. .uk-grid-divider > [class*='uk-width-7-']:nth-child(n+2),
  247. .uk-grid-divider > [class*='uk-width-8-']:nth-child(n+2),
  248. .uk-grid-divider > [class*='uk-width-9-']:nth-child(n+2) {
  249. border-left: 1px solid #dddddd;
  250. }
  251. /* Tablet and bigger */
  252. @media (min-width: 768px) {
  253. .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
  254. border-left: 1px solid #dddddd;
  255. }
  256. }
  257. /* Desktop and bigger */
  258. @media (min-width: 960px) {
  259. .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
  260. border-left: 1px solid #dddddd;
  261. }
  262. }
  263. /* Large screen and bigger */
  264. @media (min-width: 1220px) {
  265. /*
  266. * Large gutter
  267. */
  268. .uk-grid-divider:not(:empty) {
  269. margin-left: -35px;
  270. margin-right: -35px;
  271. }
  272. .uk-grid-divider > * {
  273. padding-left: 35px;
  274. padding-right: 35px;
  275. }
  276. .uk-grid-divider:empty {
  277. margin-top: 35px;
  278. margin-bottom: 35px;
  279. }
  280. }
  281. /*
  282. * Vertical divider
  283. */
  284. .uk-grid-divider:empty {
  285. margin-top: 25px;
  286. margin-bottom: 25px;
  287. border-top: 1px solid #dddddd;
  288. }
  289. /* Match panels in grids
  290. ========================================================================== */
  291. /*
  292. * 1. Behave like a block element
  293. */
  294. .uk-grid-match > * {
  295. display: -ms-flexbox;
  296. display: -webkit-flex;
  297. display: flex;
  298. /* 1 */
  299. -ms-flex-wrap: wrap;
  300. -webkit-flex-wrap: wrap;
  301. flex-wrap: wrap;
  302. }
  303. .uk-grid-match > * > * {
  304. /* 1 */
  305. -ms-flex: none;
  306. -webkit-flex: none;
  307. flex: none;
  308. box-sizing: border-box;
  309. width: 100%;
  310. }
  311. /* Even grid cell widths
  312. ========================================================================== */
  313. [class*='uk-grid-width'] > * {
  314. box-sizing: border-box;
  315. width: 100%;
  316. }
  317. .uk-grid-width-1-2 > * {
  318. width: 50%;
  319. }
  320. .uk-grid-width-1-3 > * {
  321. width: 33.333%;
  322. }
  323. .uk-grid-width-1-4 > * {
  324. width: 25%;
  325. }
  326. .uk-grid-width-1-5 > * {
  327. width: 20%;
  328. }
  329. .uk-grid-width-1-6 > * {
  330. width: 16.666%;
  331. }
  332. .uk-grid-width-1-10 > * {
  333. width: 10%;
  334. }
  335. .uk-grid-width-auto > * {
  336. width: auto;
  337. }
  338. /* Phone landscape and bigger */
  339. @media (min-width: 480px) {
  340. .uk-grid-width-small-1-1 > * {
  341. width: 100%;
  342. }
  343. .uk-grid-width-small-1-2 > * {
  344. width: 50%;
  345. }
  346. .uk-grid-width-small-1-3 > * {
  347. width: 33.333%;
  348. }
  349. .uk-grid-width-small-1-4 > * {
  350. width: 25%;
  351. }
  352. .uk-grid-width-small-1-5 > * {
  353. width: 20%;
  354. }
  355. .uk-grid-width-small-1-6 > * {
  356. width: 16.666%;
  357. }
  358. .uk-grid-width-small-1-10 > * {
  359. width: 10%;
  360. }
  361. }
  362. /* Tablet and bigger */
  363. @media (min-width: 768px) {
  364. .uk-grid-width-medium-1-1 > * {
  365. width: 100%;
  366. }
  367. .uk-grid-width-medium-1-2 > * {
  368. width: 50%;
  369. }
  370. .uk-grid-width-medium-1-3 > * {
  371. width: 33.333%;
  372. }
  373. .uk-grid-width-medium-1-4 > * {
  374. width: 25%;
  375. }
  376. .uk-grid-width-medium-1-5 > * {
  377. width: 20%;
  378. }
  379. .uk-grid-width-medium-1-6 > * {
  380. width: 16.666%;
  381. }
  382. .uk-grid-width-medium-1-10 > * {
  383. width: 10%;
  384. }
  385. }
  386. /* Desktop and bigger */
  387. @media (min-width: 960px) {
  388. .uk-grid-width-large-1-1 > * {
  389. width: 100%;
  390. }
  391. .uk-grid-width-large-1-2 > * {
  392. width: 50%;
  393. }
  394. .uk-grid-width-large-1-3 > * {
  395. width: 33.333%;
  396. }
  397. .uk-grid-width-large-1-4 > * {
  398. width: 25%;
  399. }
  400. .uk-grid-width-large-1-5 > * {
  401. width: 20%;
  402. }
  403. .uk-grid-width-large-1-6 > * {
  404. width: 16.666%;
  405. }
  406. .uk-grid-width-large-1-10 > * {
  407. width: 10%;
  408. }
  409. }
  410. /* Large screen and bigger */
  411. @media (min-width: 1220px) {
  412. .uk-grid-width-xlarge-1-1 > * {
  413. width: 100%;
  414. }
  415. .uk-grid-width-xlarge-1-2 > * {
  416. width: 50%;
  417. }
  418. .uk-grid-width-xlarge-1-3 > * {
  419. width: 33.333%;
  420. }
  421. .uk-grid-width-xlarge-1-4 > * {
  422. width: 25%;
  423. }
  424. .uk-grid-width-xlarge-1-5 > * {
  425. width: 20%;
  426. }
  427. .uk-grid-width-xlarge-1-6 > * {
  428. width: 16.666%;
  429. }
  430. .uk-grid-width-xlarge-1-10 > * {
  431. width: 10%;
  432. }
  433. }
  434. /* Sub-objects: `uk-width-*`
  435. ========================================================================== */
  436. [class*='uk-width'] {
  437. box-sizing: border-box;
  438. width: 100%;
  439. }
  440. /*
  441. * Widths
  442. */
  443. /* Whole */
  444. .uk-width-1-1 {
  445. width: 100%;
  446. }
  447. /* Halves */
  448. .uk-width-1-2,
  449. .uk-width-2-4,
  450. .uk-width-3-6,
  451. .uk-width-5-10 {
  452. width: 50%;
  453. }
  454. /* Thirds */
  455. .uk-width-1-3,
  456. .uk-width-2-6 {
  457. width: 33.333%;
  458. }
  459. .uk-width-2-3,
  460. .uk-width-4-6 {
  461. width: 66.666%;
  462. }
  463. /* Quarters */
  464. .uk-width-1-4 {
  465. width: 25%;
  466. }
  467. .uk-width-3-4 {
  468. width: 75%;
  469. }
  470. /* Fifths */
  471. .uk-width-1-5,
  472. .uk-width-2-10 {
  473. width: 20%;
  474. }
  475. .uk-width-2-5,
  476. .uk-width-4-10 {
  477. width: 40%;
  478. }
  479. .uk-width-3-5,
  480. .uk-width-6-10 {
  481. width: 60%;
  482. }
  483. .uk-width-4-5,
  484. .uk-width-8-10 {
  485. width: 80%;
  486. }
  487. /* Sixths */
  488. .uk-width-1-6 {
  489. width: 16.666%;
  490. }
  491. .uk-width-5-6 {
  492. width: 83.333%;
  493. }
  494. /* Tenths */
  495. .uk-width-1-10 {
  496. width: 10%;
  497. }
  498. .uk-width-3-10 {
  499. width: 30%;
  500. }
  501. .uk-width-7-10 {
  502. width: 70%;
  503. }
  504. .uk-width-9-10 {
  505. width: 90%;
  506. }
  507. /* Phone landscape and bigger */
  508. @media (min-width: 480px) {
  509. /* Whole */
  510. .uk-width-small-1-1 {
  511. width: 100%;
  512. }
  513. /* Halves */
  514. .uk-width-small-1-2,
  515. .uk-width-small-2-4,
  516. .uk-width-small-3-6,
  517. .uk-width-small-5-10 {
  518. width: 50%;
  519. }
  520. /* Thirds */
  521. .uk-width-small-1-3,
  522. .uk-width-small-2-6 {
  523. width: 33.333%;
  524. }
  525. .uk-width-small-2-3,
  526. .uk-width-small-4-6 {
  527. width: 66.666%;
  528. }
  529. /* Quarters */
  530. .uk-width-small-1-4 {
  531. width: 25%;
  532. }
  533. .uk-width-small-3-4 {
  534. width: 75%;
  535. }
  536. /* Fifths */
  537. .uk-width-small-1-5,
  538. .uk-width-small-2-10 {
  539. width: 20%;
  540. }
  541. .uk-width-small-2-5,
  542. .uk-width-small-4-10 {
  543. width: 40%;
  544. }
  545. .uk-width-small-3-5,
  546. .uk-width-small-6-10 {
  547. width: 60%;
  548. }
  549. .uk-width-small-4-5,
  550. .uk-width-small-8-10 {
  551. width: 80%;
  552. }
  553. /* Sixths */
  554. .uk-width-small-1-6 {
  555. width: 16.666%;
  556. }
  557. .uk-width-small-5-6 {
  558. width: 83.333%;
  559. }
  560. /* Tenths */
  561. .uk-width-small-1-10 {
  562. width: 10%;
  563. }
  564. .uk-width-small-3-10 {
  565. width: 30%;
  566. }
  567. .uk-width-small-7-10 {
  568. width: 70%;
  569. }
  570. .uk-width-small-9-10 {
  571. width: 90%;
  572. }
  573. }
  574. /* Tablet and bigger */
  575. @media (min-width: 768px) {
  576. /* Whole */
  577. .uk-width-medium-1-1 {
  578. width: 100%;
  579. }
  580. /* Halves */
  581. .uk-width-medium-1-2,
  582. .uk-width-medium-2-4,
  583. .uk-width-medium-3-6,
  584. .uk-width-medium-5-10 {
  585. width: 50%;
  586. }
  587. /* Thirds */
  588. .uk-width-medium-1-3,
  589. .uk-width-medium-2-6 {
  590. width: 33.333%;
  591. }
  592. .uk-width-medium-2-3,
  593. .uk-width-medium-4-6 {
  594. width: 66.666%;
  595. }
  596. /* Quarters */
  597. .uk-width-medium-1-4 {
  598. width: 25%;
  599. }
  600. .uk-width-medium-3-4 {
  601. width: 75%;
  602. }
  603. /* Fifths */
  604. .uk-width-medium-1-5,
  605. .uk-width-medium-2-10 {
  606. width: 20%;
  607. }
  608. .uk-width-medium-2-5,
  609. .uk-width-medium-4-10 {
  610. width: 40%;
  611. }
  612. .uk-width-medium-3-5,
  613. .uk-width-medium-6-10 {
  614. width: 60%;
  615. }
  616. .uk-width-medium-4-5,
  617. .uk-width-medium-8-10 {
  618. width: 80%;
  619. }
  620. /* Sixths */
  621. .uk-width-medium-1-6 {
  622. width: 16.666%;
  623. }
  624. .uk-width-medium-5-6 {
  625. width: 83.333%;
  626. }
  627. /* Tenths */
  628. .uk-width-medium-1-10 {
  629. width: 10%;
  630. }
  631. .uk-width-medium-3-10 {
  632. width: 30%;
  633. }
  634. .uk-width-medium-7-10 {
  635. width: 70%;
  636. }
  637. .uk-width-medium-9-10 {
  638. width: 90%;
  639. }
  640. }
  641. /* Desktop and bigger */
  642. @media (min-width: 960px) {
  643. /* Whole */
  644. .uk-width-large-1-1 {
  645. width: 100%;
  646. }
  647. /* Halves */
  648. .uk-width-large-1-2,
  649. .uk-width-large-2-4,
  650. .uk-width-large-3-6,
  651. .uk-width-large-5-10 {
  652. width: 50%;
  653. }
  654. /* Thirds */
  655. .uk-width-large-1-3,
  656. .uk-width-large-2-6 {
  657. width: 33.333%;
  658. }
  659. .uk-width-large-2-3,
  660. .uk-width-large-4-6 {
  661. width: 66.666%;
  662. }
  663. /* Quarters */
  664. .uk-width-large-1-4 {
  665. width: 25%;
  666. }
  667. .uk-width-large-3-4 {
  668. width: 75%;
  669. }
  670. /* Fifths */
  671. .uk-width-large-1-5,
  672. .uk-width-large-2-10 {
  673. width: 20%;
  674. }
  675. .uk-width-large-2-5,
  676. .uk-width-large-4-10 {
  677. width: 40%;
  678. }
  679. .uk-width-large-3-5,
  680. .uk-width-large-6-10 {
  681. width: 60%;
  682. }
  683. .uk-width-large-4-5,
  684. .uk-width-large-8-10 {
  685. width: 80%;
  686. }
  687. /* Sixths */
  688. .uk-width-large-1-6 {
  689. width: 16.666%;
  690. }
  691. .uk-width-large-5-6 {
  692. width: 83.333%;
  693. }
  694. /* Tenths */
  695. .uk-width-large-1-10 {
  696. width: 10%;
  697. }
  698. .uk-width-large-3-10 {
  699. width: 30%;
  700. }
  701. .uk-width-large-7-10 {
  702. width: 70%;
  703. }
  704. .uk-width-large-9-10 {
  705. width: 90%;
  706. }
  707. }
  708. /* Large screen and bigger */
  709. @media (min-width: 1220px) {
  710. /* Whole */
  711. .uk-width-xlarge-1-1 {
  712. width: 100%;
  713. }
  714. /* Halves */
  715. .uk-width-xlarge-1-2,
  716. .uk-width-xlarge-2-4,
  717. .uk-width-xlarge-3-6,
  718. .uk-width-xlarge-5-10 {
  719. width: 50%;
  720. }
  721. /* Thirds */
  722. .uk-width-xlarge-1-3,
  723. .uk-width-xlarge-2-6 {
  724. width: 33.333%;
  725. }
  726. .uk-width-xlarge-2-3,
  727. .uk-width-xlarge-4-6 {
  728. width: 66.666%;
  729. }
  730. /* Quarters */
  731. .uk-width-xlarge-1-4 {
  732. width: 25%;
  733. }
  734. .uk-width-xlarge-3-4 {
  735. width: 75%;
  736. }
  737. /* Fifths */
  738. .uk-width-xlarge-1-5,
  739. .uk-width-xlarge-2-10 {
  740. width: 20%;
  741. }
  742. .uk-width-xlarge-2-5,
  743. .uk-width-xlarge-4-10 {
  744. width: 40%;
  745. }
  746. .uk-width-xlarge-3-5,
  747. .uk-width-xlarge-6-10 {
  748. width: 60%;
  749. }
  750. .uk-width-xlarge-4-5,
  751. .uk-width-xlarge-8-10 {
  752. width: 80%;
  753. }
  754. /* Sixths */
  755. .uk-width-xlarge-1-6 {
  756. width: 16.666%;
  757. }
  758. .uk-width-xlarge-5-6 {
  759. width: 83.333%;
  760. }
  761. /* Tenths */
  762. .uk-width-xlarge-1-10 {
  763. width: 10%;
  764. }
  765. .uk-width-xlarge-3-10 {
  766. width: 30%;
  767. }
  768. .uk-width-xlarge-7-10 {
  769. width: 70%;
  770. }
  771. .uk-width-xlarge-9-10 {
  772. width: 90%;
  773. }
  774. }
  775. /* Sub-object: `uk-push-*` and `uk-pull-*`
  776. ========================================================================== */
  777. /*
  778. * Source ordering
  779. * Works only with `uk-width-medium-*`
  780. */
  781. /* Tablet and bigger */
  782. @media (min-width: 768px) {
  783. [class*='uk-push-'],
  784. [class*='uk-pull-'] {
  785. position: relative;
  786. }
  787. /*
  788. * Push
  789. */
  790. /* Halves */
  791. .uk-push-1-2,
  792. .uk-push-2-4,
  793. .uk-push-3-6,
  794. .uk-push-5-10 {
  795. left: 50%;
  796. }
  797. /* Thirds */
  798. .uk-push-1-3,
  799. .uk-push-2-6 {
  800. left: 33.333%;
  801. }
  802. .uk-push-2-3,
  803. .uk-push-4-6 {
  804. left: 66.666%;
  805. }
  806. /* Quarters */
  807. .uk-push-1-4 {
  808. left: 25%;
  809. }
  810. .uk-push-3-4 {
  811. left: 75%;
  812. }
  813. /* Fifths */
  814. .uk-push-1-5,
  815. .uk-push-2-10 {
  816. left: 20%;
  817. }
  818. .uk-push-2-5,
  819. .uk-push-4-10 {
  820. left: 40%;
  821. }
  822. .uk-push-3-5,
  823. .uk-push-6-10 {
  824. left: 60%;
  825. }
  826. .uk-push-4-5,
  827. .uk-push-8-10 {
  828. left: 80%;
  829. }
  830. /* Sixths */
  831. .uk-push-1-6 {
  832. left: 16.666%;
  833. }
  834. .uk-push-5-6 {
  835. left: 83.333%;
  836. }
  837. /* Tenths */
  838. .uk-push-1-10 {
  839. left: 10%;
  840. }
  841. .uk-push-3-10 {
  842. left: 30%;
  843. }
  844. .uk-push-7-10 {
  845. left: 70%;
  846. }
  847. .uk-push-9-10 {
  848. left: 90%;
  849. }
  850. /*
  851. * Pull
  852. */
  853. /* Halves */
  854. .uk-pull-1-2,
  855. .uk-pull-2-4,
  856. .uk-pull-3-6,
  857. .uk-pull-5-10 {
  858. left: -50%;
  859. }
  860. /* Thirds */
  861. .uk-pull-1-3,
  862. .uk-pull-2-6 {
  863. left: -33.333%;
  864. }
  865. .uk-pull-2-3,
  866. .uk-pull-4-6 {
  867. left: -66.666%;
  868. }
  869. /* Quarters */
  870. .uk-pull-1-4 {
  871. left: -25%;
  872. }
  873. .uk-pull-3-4 {
  874. left: -75%;
  875. }
  876. /* Fifths */
  877. .uk-pull-1-5,
  878. .uk-pull-2-10 {
  879. left: -20%;
  880. }
  881. .uk-pull-2-5,
  882. .uk-pull-4-10 {
  883. left: -40%;
  884. }
  885. .uk-pull-3-5,
  886. .uk-pull-6-10 {
  887. left: -60%;
  888. }
  889. .uk-pull-4-5,
  890. .uk-pull-8-10 {
  891. left: -80%;
  892. }
  893. /* Sixths */
  894. .uk-pull-1-6 {
  895. left: -16.666%;
  896. }
  897. .uk-pull-5-6 {
  898. left: -83.333%;
  899. }
  900. /* Tenths */
  901. .uk-pull-1-10 {
  902. left: -10%;
  903. }
  904. .uk-pull-3-10 {
  905. left: -30%;
  906. }
  907. .uk-pull-7-10 {
  908. left: -70%;
  909. }
  910. .uk-pull-9-10 {
  911. left: -90%;
  912. }
  913. }
  914. /* ========================================================================
  915. Component: Panel
  916. ========================================================================== */
  917. /*
  918. * 1. Needed for `a` elements
  919. * 2. Create position context for badges
  920. */
  921. .uk-panel {
  922. /* 1 */
  923. display: block;
  924. /* 2 */
  925. position: relative;
  926. }
  927. /*
  928. * Allow panels to be anchors
  929. */
  930. .uk-panel,
  931. .uk-panel:hover {
  932. text-decoration: none;
  933. }
  934. /*
  935. * Micro clearfix to make panels more robust
  936. */
  937. .uk-panel:before,
  938. .uk-panel:after {
  939. content: "";
  940. display: table;
  941. }
  942. .uk-panel:after {
  943. clear: both;
  944. }
  945. /*
  946. * Remove margin from the last-child if not `uk-widget-title`
  947. */
  948. .uk-panel > :not(.uk-panel-title):last-child {
  949. margin-bottom: 0;
  950. }
  951. /* Sub-object: `uk-panel-title`
  952. ========================================================================== */
  953. .uk-panel-title {
  954. margin-top: 0;
  955. margin-bottom: 20px;
  956. font-size: 18px;
  957. line-height: 24px;
  958. font-weight: normal;
  959. text-transform: none;
  960. color: #444444;
  961. }
  962. /* Sub-object: `uk-panel-badge`
  963. ========================================================================== */
  964. .uk-panel-badge {
  965. position: absolute;
  966. top: 0;
  967. right: 0;
  968. z-index: 1;
  969. }
  970. /* Sub-object: `uk-panel-teaser`
  971. ========================================================================== */
  972. .uk-panel-teaser {
  973. margin-bottom: 20px;
  974. }
  975. /* Sub-object: `uk-panel-body`
  976. ========================================================================== */
  977. .uk-panel-body {
  978. padding: 20px;
  979. }
  980. /* Modifier: `uk-panel-box`
  981. ========================================================================== */
  982. .uk-panel-box {
  983. padding: 20px;
  984. background: #fafafa;
  985. color: #444444;
  986. border: 1px solid #dddddd;
  987. border-radius: 4px;
  988. }
  989. .uk-panel-box-hover:hover {
  990. color: #444444;
  991. }
  992. .uk-panel-box .uk-panel-title {
  993. color: #444444;
  994. }
  995. .uk-panel-box .uk-panel-badge {
  996. top: 10px;
  997. right: 10px;
  998. }
  999. .uk-panel-box > .uk-panel-teaser {
  1000. margin-top: -21px;
  1001. margin-left: -21px;
  1002. margin-right: -21px;
  1003. }
  1004. /*
  1005. * Nav in panel
  1006. */
  1007. .uk-panel-box > .uk-nav-side {
  1008. margin: 0 -20px;
  1009. }
  1010. /*
  1011. * Sub-modifier: `uk-panel-box-primary`
  1012. */
  1013. .uk-panel-box-primary {
  1014. background-color: #eefaff;
  1015. color: #699eb3;
  1016. border-color: rgba(105, 158, 179, 0.3);
  1017. }
  1018. .uk-panel-box-primary-hover:hover {
  1019. color: #699eb3;
  1020. }
  1021. .uk-panel-box-primary .uk-panel-title {
  1022. color: #3484a4;
  1023. }
  1024. /*
  1025. * Sub-modifier: `uk-panel-box-secondary`
  1026. */
  1027. .uk-panel-box-secondary {
  1028. background-color: #ffffff;
  1029. color: #444444;
  1030. }
  1031. .uk-panel-box-secondary-hover:hover {
  1032. color: #444444;
  1033. }
  1034. .uk-panel-box-secondary .uk-panel-title {
  1035. color: #444444;
  1036. }
  1037. /* Modifier: `uk-panel-hover`
  1038. ========================================================================== */
  1039. .uk-panel-hover {
  1040. padding: 20px;
  1041. color: #444444;
  1042. border: 1px solid transparent;
  1043. border-radius: 4px;
  1044. }
  1045. .uk-panel-hover:hover {
  1046. background: #fafafa;
  1047. color: #444444;
  1048. border-color: #dddddd;
  1049. }
  1050. .uk-panel-hover .uk-panel-badge {
  1051. top: 10px;
  1052. right: 10px;
  1053. }
  1054. .uk-panel-hover > .uk-panel-teaser {
  1055. margin-top: -21px;
  1056. margin-left: -21px;
  1057. margin-right: -21px;
  1058. }
  1059. /* Modifier: `uk-panel-header`
  1060. ========================================================================== */
  1061. .uk-panel-header .uk-panel-title {
  1062. padding-bottom: 10px;
  1063. border-bottom: 1px solid #dddddd;
  1064. color: #444444;
  1065. }
  1066. /* Modifier: `uk-panel-space`
  1067. ========================================================================== */
  1068. .uk-panel-space {
  1069. padding: 30px;
  1070. }
  1071. .uk-panel-space .uk-panel-badge {
  1072. top: 30px;
  1073. right: 30px;
  1074. }
  1075. /* Modifier: `uk-panel-divider`
  1076. ========================================================================== */
  1077. .uk-panel + .uk-panel-divider {
  1078. margin-top: 50px !important;
  1079. }
  1080. .uk-panel + .uk-panel-divider:before {
  1081. content: "";
  1082. display: block;
  1083. position: absolute;
  1084. top: -25px;
  1085. left: 0;
  1086. right: 0;
  1087. border-top: 1px solid #dddddd;
  1088. }
  1089. /* Large screen and bigger */
  1090. @media (min-width: 1220px) {
  1091. .uk-panel + .uk-panel-divider {
  1092. margin-top: 70px !important;
  1093. }
  1094. .uk-panel + .uk-panel-divider:before {
  1095. top: -35px;
  1096. }
  1097. }
  1098. .uk-panel-box .uk-panel-teaser {
  1099. border-top-left-radius: 4px;
  1100. border-top-right-radius: 4px;
  1101. overflow: hidden;
  1102. -webkit-transform: translateZ(0);
  1103. }
  1104. /* ========================================================================
  1105. Component: Block
  1106. ========================================================================== */
  1107. .uk-block {
  1108. position: relative;
  1109. box-sizing: border-box;
  1110. padding-top: 20px;
  1111. padding-bottom: 20px;
  1112. }
  1113. /* Phone landscape and bigger */
  1114. @media (min-width: 768px) {
  1115. .uk-block {
  1116. padding-top: 50px;
  1117. padding-bottom: 50px;
  1118. }
  1119. }
  1120. /*
  1121. * Micro clearfix to make blocks more robust
  1122. */
  1123. .uk-block:before,
  1124. .uk-block:after {
  1125. content: "";
  1126. display: table;
  1127. }
  1128. .uk-block:after {
  1129. clear: both;
  1130. }
  1131. /*
  1132. * Remove margin from the last-child
  1133. */
  1134. .uk-block > :last-child {
  1135. margin-bottom: 0;
  1136. }
  1137. /* Padding Modifier
  1138. ========================================================================== */
  1139. /*
  1140. * Large padding
  1141. */
  1142. .uk-block-large {
  1143. padding-top: 20px;
  1144. padding-bottom: 20px;
  1145. }
  1146. /* Tablets and bigger */
  1147. @media (min-width: 768px) {
  1148. .uk-block-large {
  1149. padding-top: 50px;
  1150. padding-bottom: 50px;
  1151. }
  1152. }
  1153. /* Desktop and bigger */
  1154. @media (min-width: 960px) {
  1155. .uk-block-large {
  1156. padding-top: 100px;
  1157. padding-bottom: 100px;
  1158. }
  1159. }
  1160. /* Color Modifier
  1161. ========================================================================== */
  1162. /*
  1163. * Default
  1164. */
  1165. .uk-block-default {
  1166. background: #ffffff;
  1167. }
  1168. /*
  1169. * Muted
  1170. */
  1171. .uk-block-muted {
  1172. background: #f9f9f9;
  1173. }
  1174. /*
  1175. * Primary
  1176. */
  1177. .uk-block-primary {
  1178. background: #00a8e6;
  1179. }
  1180. /*
  1181. * Secondary
  1182. */
  1183. .uk-block-secondary {
  1184. background: #222222;
  1185. }
  1186. /*
  1187. * Adjust padding between equal colored blocks
  1188. */
  1189. .uk-block-default + .uk-block-default,
  1190. .uk-block-muted + .uk-block-muted,
  1191. .uk-block-primary + .uk-block-primary,
  1192. .uk-block-secondary + .uk-block-secondary {
  1193. padding-top: 0;
  1194. }
  1195. /* ========================================================================
  1196. Component: Article
  1197. ========================================================================== */
  1198. /*
  1199. * Micro clearfix to make articles more robust
  1200. */
  1201. .uk-article:before,
  1202. .uk-article:after {
  1203. content: "";
  1204. display: table;
  1205. }
  1206. .uk-article:after {
  1207. clear: both;
  1208. }
  1209. /*
  1210. * Remove margin from the last-child
  1211. */
  1212. .uk-article > :last-child {
  1213. margin-bottom: 0;
  1214. }
  1215. /*
  1216. * Vertical gutter for articles
  1217. */
  1218. .uk-article + .uk-article {
  1219. margin-top: 30px;
  1220. }
  1221. /* Sub-object `uk-article-title`
  1222. ========================================================================== */
  1223. .uk-article-title {
  1224. font-size: 36px;
  1225. line-height: 42px;
  1226. font-weight: 300;
  1227. text-transform: none;
  1228. }
  1229. .uk-article-title a {
  1230. color: inherit;
  1231. text-decoration: none;
  1232. }
  1233. /* Sub-object `uk-article-meta`
  1234. ========================================================================== */
  1235. .uk-article-meta {
  1236. font-size: 12px;
  1237. line-height: 18px;
  1238. color: #999999;
  1239. }
  1240. /* Sub-object `uk-article-lead`
  1241. ========================================================================== */
  1242. .uk-article-lead {
  1243. color: #444444;
  1244. font-size: 18px;
  1245. line-height: 24px;
  1246. font-weight: normal;
  1247. }
  1248. /* Sub-object `uk-article-divider`
  1249. ========================================================================== */
  1250. .uk-article-divider {
  1251. margin-bottom: 30px;
  1252. border-color: #dddddd;
  1253. }
  1254. * + .uk-article-divider {
  1255. margin-top: 30px;
  1256. }
  1257. .uk-article + .uk-article {
  1258. padding-top: 30px;
  1259. border-top: 1px solid #dddddd;
  1260. }
  1261. /* ========================================================================
  1262. Component: Comment
  1263. ========================================================================== */
  1264. /* Sub-object `uk-comment-header`
  1265. ========================================================================== */
  1266. .uk-comment-header {
  1267. margin-bottom: 20px;
  1268. padding: 10px;
  1269. border: 1px solid #dddddd;
  1270. border-radius: 4px;
  1271. background: #fafafa;
  1272. }
  1273. /*
  1274. * Micro clearfix
  1275. */
  1276. .uk-comment-header:before,
  1277. .uk-comment-header:after {
  1278. content: "";
  1279. display: table;
  1280. }
  1281. .uk-comment-header:after {
  1282. clear: both;
  1283. }
  1284. /* Sub-object `uk-comment-avatar`
  1285. ========================================================================== */
  1286. .uk-comment-avatar {
  1287. margin-right: 20px;
  1288. float: left;
  1289. }
  1290. /* Sub-object `uk-comment-title`
  1291. ========================================================================== */
  1292. .uk-comment-title {
  1293. margin: 5px 0 0 0;
  1294. font-size: 16px;
  1295. line-height: 22px;
  1296. }
  1297. /* Sub-object `uk-comment-meta`
  1298. ========================================================================== */
  1299. .uk-comment-meta {
  1300. margin: 2px 0 0 0;
  1301. font-size: 11px;
  1302. line-height: 16px;
  1303. color: #999999;
  1304. }
  1305. /* Sub-object `uk-comment-body`
  1306. ========================================================================== */
  1307. .uk-comment-body {
  1308. padding-left: 10px;
  1309. padding-right: 10px;
  1310. }
  1311. /*
  1312. * Remove margin from the last-child
  1313. */
  1314. .uk-comment-body > :last-child {
  1315. margin-bottom: 0;
  1316. }
  1317. /* Sub-object `uk-comment-list`
  1318. ========================================================================== */
  1319. .uk-comment-list {
  1320. padding: 0;
  1321. list-style: none;
  1322. }
  1323. .uk-comment-list .uk-comment + ul {
  1324. margin: 30px 0 0 0;
  1325. list-style: none;
  1326. }
  1327. .uk-comment-list > li:nth-child(n+2),
  1328. .uk-comment-list .uk-comment + ul > li:nth-child(n+2) {
  1329. margin-top: 30px;
  1330. }
  1331. /* Tablet and bigger */
  1332. @media (min-width: 768px) {
  1333. .uk-comment-list .uk-comment + ul {
  1334. padding-left: 100px;
  1335. }
  1336. }
  1337. /* Modifier `uk-comment-primary`
  1338. ========================================================================== */
  1339. .uk-comment-primary .uk-comment-header {
  1340. border-color: rgba(45, 112, 145, 0.3);
  1341. background-color: #ebf7fd;
  1342. color: #2d7091;
  1343. text-shadow: 0 1px 0 #ffffff;
  1344. }
  1345. /* ========================================================================
  1346. Component: Cover
  1347. ========================================================================== */
  1348. /*
  1349. * Background image always covers and centers its element
  1350. */
  1351. .uk-cover-background {
  1352. background-position: 50% 50%;
  1353. background-size: cover;
  1354. background-repeat: no-repeat;
  1355. }
  1356. /*
  1357. * Emulates image cover, works with video and image elements
  1358. * 1. Parent container which clips resized object
  1359. * 2. Resizes the object to always covers its container
  1360. * 3. Reset the responsive image CSS
  1361. * 4. Center object
  1362. */
  1363. /* 1 */
  1364. .uk-cover {
  1365. overflow: hidden;
  1366. }
  1367. .uk-cover-object {
  1368. /* 2 */
  1369. width: auto;
  1370. height: auto;
  1371. min-width: 100%;
  1372. min-height: 100%;
  1373. /* 3 */
  1374. max-width: none;
  1375. /* 4 */
  1376. position: relative;
  1377. left: 50%;
  1378. top: 50%;
  1379. -webkit-transform: translate(-50%, -50%);
  1380. transform: translate(-50%, -50%);
  1381. }
  1382. /*
  1383. * To center iframes use `data-uk-cover` JavaScript
  1384. */
  1385. [data-uk-cover] {
  1386. position: relative;
  1387. left: 50%;
  1388. top: 50%;
  1389. -webkit-transform: translate(-50%, -50%);
  1390. transform: translate(-50%, -50%);
  1391. }
  1392. /* ========================================================================
  1393. Component: Nav
  1394. ========================================================================== */
  1395. .uk-nav,
  1396. .uk-nav ul {
  1397. margin: 0;
  1398. padding: 0;
  1399. list-style: none;
  1400. }
  1401. /*
  1402. * Items
  1403. */
  1404. .uk-nav li > a {
  1405. display: block;
  1406. text-decoration: none;
  1407. }
  1408. .uk-nav > li > a {
  1409. padding: 5px 20px;
  1410. }
  1411. /*
  1412. * Nested items
  1413. */
  1414. .uk-nav ul {
  1415. padding-left: 15px;
  1416. }
  1417. .uk-nav ul a {
  1418. padding: 2px 0;
  1419. }
  1420. /*
  1421. * Item subtitle
  1422. */
  1423. .uk-nav li > a > div {
  1424. font-size: 12px;
  1425. line-height: 18px;
  1426. }
  1427. /* Sub-object: `uk-nav-header`
  1428. ========================================================================== */
  1429. .uk-nav-header {
  1430. padding: 5px 20px;
  1431. text-transform: uppercase;
  1432. font-weight: bold;
  1433. font-size: 12px;
  1434. }
  1435. .uk-nav-header:not(:first-child) {
  1436. margin-top: 20px;
  1437. }
  1438. /* Sub-object: `uk-nav-divider`
  1439. ========================================================================== */
  1440. .uk-nav-divider {
  1441. margin: 9px 20px;
  1442. }
  1443. /* Sub-object: `uk-nav-sub`
  1444. ========================================================================== */
  1445. /*
  1446. * `ul` needed for higher specificity to override padding
  1447. */
  1448. ul.uk-nav-sub {
  1449. padding: 5px 0 5px 20px;
  1450. }
  1451. /* Modifier: `uk-nav-parent-icon`
  1452. ========================================================================== */
  1453. .uk-nav-parent-icon > .uk-parent > a:after {
  1454. content: "\f104";
  1455. width: 20px;
  1456. margin-right: -10px;
  1457. float: right;
  1458. font-family: FontAwesome;
  1459. text-align: center;
  1460. }
  1461. .uk-nav-parent-icon > .uk-parent.uk-open > a:after {
  1462. content: "\f107";
  1463. }
  1464. /* Modifier `uk-nav-side`
  1465. ========================================================================== */
  1466. /*
  1467. * Items
  1468. */
  1469. .uk-nav-side > li > a {
  1470. color: #444444;
  1471. }
  1472. /*
  1473. * Hover
  1474. * 1. Apply hover style also to focus state
  1475. * 2. Remove default focus style
  1476. */
  1477. .uk-nav-side > li > a:hover,
  1478. .uk-nav-side > li > a:focus {
  1479. background: rgba(0, 0, 0, 0.03);
  1480. color: #444444;
  1481. /* 2 */
  1482. outline: none;
  1483. box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  1484. text-shadow: 0 -1px 0 #ffffff;
  1485. }
  1486. /* Active */
  1487. .uk-nav-side > li.uk-active > a {
  1488. background: #52b4df;
  1489. color: #ffffff;
  1490. box-shadow: inset 0 2px 4px rgba(0, 69, 109, 0.25);
  1491. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  1492. }
  1493. /*
  1494. * Sub-object: `uk-nav-header`
  1495. */
  1496. .uk-nav-side .uk-nav-header {
  1497. color: #444444;
  1498. }
  1499. /*
  1500. * Sub-object: `uk-nav-divider`
  1501. */
  1502. .uk-nav-side .uk-nav-divider {
  1503. border-top: 1px solid #dddddd;
  1504. box-shadow: 0 1px 0 #ffffff;
  1505. }
  1506. /*
  1507. * Nested items
  1508. */
  1509. .uk-nav-side ul a {
  1510. color: #1fa2d6;
  1511. }
  1512. .uk-nav-side ul a:hover {
  1513. color: #0074a2;
  1514. }
  1515. /* Modifier `uk-nav-dropdown`
  1516. ========================================================================== */
  1517. /*
  1518. * Items
  1519. */
  1520. .uk-nav-dropdown > li > a {
  1521. color: #444444;
  1522. }
  1523. /*
  1524. * Hover
  1525. * 1. Apply hover style also to focus state
  1526. * 2. Remove default focus style
  1527. */
  1528. .uk-nav-dropdown > li > a:hover,
  1529. .uk-nav-dropdown > li > a:focus {
  1530. background: #52b4df;
  1531. color: #ffffff;
  1532. /* 2 */
  1533. outline: none;
  1534. box-shadow: inset 0 2px 4px rgba(0, 69, 109, 0.25);
  1535. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  1536. }
  1537. /*
  1538. * Sub-object: `uk-nav-header`
  1539. */
  1540. .uk-nav-dropdown .uk-nav-header {
  1541. color: #999999;
  1542. }
  1543. /*
  1544. * Sub-object: `uk-nav-divider`
  1545. */
  1546. .uk-nav-dropdown .uk-nav-divider {
  1547. border-top: 1px solid #dddddd;
  1548. }
  1549. /*
  1550. * Nested items
  1551. */
  1552. .uk-nav-dropdown ul a {
  1553. color: #1fa2d6;
  1554. }
  1555. .uk-nav-dropdown ul a:hover {
  1556. color: #0074a2;
  1557. }
  1558. /* Modifier `uk-nav-navbar`
  1559. ========================================================================== */
  1560. /*
  1561. * Items
  1562. */
  1563. .uk-nav-navbar > li > a {
  1564. color: #444444;
  1565. }
  1566. /*
  1567. * Hover
  1568. * 1. Apply hover style also to focus state
  1569. * 2. Remove default focus style
  1570. */
  1571. .uk-nav-navbar > li > a:hover,
  1572. .uk-nav-navbar > li > a:focus {
  1573. background: #52b4df;
  1574. color: #ffffff;
  1575. /* 2 */
  1576. outline: none;
  1577. box-shadow: inset 0 2px 4px rgba(0, 69, 109, 0.25);
  1578. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  1579. }
  1580. /*
  1581. * Sub-object: `uk-nav-header`
  1582. */
  1583. .uk-nav-navbar .uk-nav-header {
  1584. color: #999999;
  1585. }
  1586. /*
  1587. * Sub-object: `uk-nav-divider`
  1588. */
  1589. .uk-nav-navbar .uk-nav-divider {
  1590. border-top: 1px solid #dddddd;
  1591. }
  1592. /*
  1593. * Nested items
  1594. */
  1595. .uk-nav-navbar ul a {
  1596. color: #1fa2d6;
  1597. }
  1598. .uk-nav-navbar ul a:hover {
  1599. color: #0074a2;
  1600. }
  1601. /* Modifier `uk-nav-offcanvas`
  1602. ========================================================================== */
  1603. /*
  1604. * Items
  1605. */
  1606. .uk-nav-offcanvas > li > a {
  1607. color: #cccccc;
  1608. padding: 10px 15px;
  1609. border-top: 1px solid rgba(0, 0, 0, 0.3);
  1610. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  1611. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  1612. }
  1613. /*
  1614. * Hover
  1615. * No hover on touch devices because it behaves buggy in fixed offcanvas
  1616. * 1. Apply hover style also to focus state
  1617. * 2. Remove default focus style
  1618. */
  1619. .uk-nav-offcanvas > .uk-open > a,
  1620. html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
  1621. html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
  1622. background: #404040;
  1623. color: #ffffff;
  1624. /* 2 */
  1625. outline: none;
  1626. }
  1627. /*
  1628. * Active
  1629. * `html .uk-nav` needed for higher specificity to override hover
  1630. */
  1631. html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
  1632. background: #1a1a1a;
  1633. color: #ffffff;
  1634. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  1635. }
  1636. /*
  1637. * Sub-object: `uk-nav-header`
  1638. */
  1639. .uk-nav-offcanvas .uk-nav-header {
  1640. color: #777777;
  1641. margin-top: 0;
  1642. border-top: 1px solid rgba(0, 0, 0, 0.3);
  1643. background: #404040;
  1644. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  1645. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  1646. }
  1647. /*
  1648. * Sub-object: `uk-nav-divider`
  1649. */
  1650. .uk-nav-offcanvas .uk-nav-divider {
  1651. border-top: 1px solid rgba(255, 255, 255, 0.01);
  1652. margin: 0;
  1653. height: 4px;
  1654. background: rgba(0, 0, 0, 0.2);
  1655. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  1656. }
  1657. /*
  1658. * Nested items
  1659. * No hover on touch devices because it behaves buggy in fixed offcanvas
  1660. */
  1661. .uk-nav-offcanvas ul a {
  1662. color: #cccccc;
  1663. }
  1664. html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  1665. color: #ffffff;
  1666. }
  1667. /*
  1668. * Modifier `uk-nav-offcanvas`
  1669. */
  1670. .uk-nav-offcanvas {
  1671. border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  1672. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  1673. }
  1674. /*
  1675. * Sub-object: `uk-nav-sub`
  1676. */
  1677. .uk-nav-offcanvas .uk-nav-sub {
  1678. border-top: 1px solid rgba(0, 0, 0, 0.3);
  1679. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  1680. }
  1681. /* ========================================================================
  1682. Component: Navbar
  1683. ========================================================================== */
  1684. .uk-navbar {
  1685. background: #f7f7f7;
  1686. color: #444444;
  1687. border: 1px solid rgba(0, 0, 0, 0.1);
  1688. border-bottom-color: rgba(0, 0, 0, 0.3);
  1689. border-radius: 4px;
  1690. background-origin: border-box;
  1691. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  1692. background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  1693. }
  1694. /*
  1695. * Micro clearfix
  1696. */
  1697. .uk-navbar:before,
  1698. .uk-navbar:after {
  1699. content: "";
  1700. display: table;
  1701. }
  1702. .uk-navbar:after {
  1703. clear: both;
  1704. }
  1705. /* Sub-object: `uk-navbar-nav`
  1706. ========================================================================== */
  1707. .uk-navbar-nav {
  1708. margin: 0;
  1709. padding: 0;
  1710. list-style: none;
  1711. float: left;
  1712. }
  1713. /*
  1714. * 1. Create position context for dropdowns
  1715. */
  1716. .uk-navbar-nav > li {
  1717. float: left;
  1718. /* 1 */
  1719. position: relative;
  1720. }
  1721. /*
  1722. * 1. Dimensions
  1723. * 2. Style
  1724. */
  1725. .uk-navbar-nav > li > a {
  1726. display: block;
  1727. box-sizing: border-box;
  1728. text-decoration: none;
  1729. /* 1 */
  1730. height: 45px;
  1731. padding: 0 15px;
  1732. line-height: 44px;
  1733. /* 2 */
  1734. color: #444444;
  1735. font-size: 14px;
  1736. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1737. font-weight: normal;
  1738. margin-top: -1px;
  1739. margin-left: -1px;
  1740. border: 1px solid transparent;
  1741. border-bottom-width: 0;
  1742. text-shadow: 0 1px 0 #ffffff;
  1743. }
  1744. /* Appear not as link */
  1745. .uk-navbar-nav > li > a[href='#'] {
  1746. cursor: text;
  1747. }
  1748. /*
  1749. * Hover
  1750. * 1. Apply hover style also to focus state
  1751. * 2. Also apply if dropdown is opened
  1752. * 3. Remove default focus style
  1753. */
  1754. .uk-navbar-nav > li:hover > a,
  1755. .uk-navbar-nav > li > a:focus,
  1756. .uk-navbar-nav > li.uk-open > a {
  1757. background-color: transparent;
  1758. color: #444444;
  1759. /* 3 */
  1760. outline: none;
  1761. position: relative;
  1762. z-index: 1;
  1763. border-left-color: rgba(0, 0, 0, 0.1);
  1764. border-right-color: rgba(0, 0, 0, 0.1);
  1765. border-top-color: rgba(0, 0, 0, 0.1);
  1766. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  1767. }
  1768. /* OnClick */
  1769. .uk-navbar-nav > li > a:active {
  1770. background-color: #f5f5f5;
  1771. color: #444444;
  1772. border-left-color: rgba(0, 0, 0, 0.1);
  1773. border-right-color: rgba(0, 0, 0, 0.1);
  1774. border-top-color: rgba(0, 0, 0, 0.2);
  1775. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  1776. }
  1777. /* Active */
  1778. .uk-navbar-nav > li.uk-active > a {
  1779. background-color: #fafafa;
  1780. color: #444444;
  1781. border-left-color: rgba(0, 0, 0, 0.1);
  1782. border-right-color: rgba(0, 0, 0, 0.1);
  1783. border-top-color: rgba(0, 0, 0, 0.2);
  1784. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  1785. }
  1786. /* Sub-objects: `uk-navbar-nav-subtitle`
  1787. ========================================================================== */
  1788. .uk-navbar-nav .uk-navbar-nav-subtitle {
  1789. line-height: 32px;
  1790. }
  1791. .uk-navbar-nav-subtitle > div {
  1792. margin-top: -8px;
  1793. font-size: 10px;
  1794. line-height: 12px;
  1795. }
  1796. /* Sub-objects: `uk-navbar-content`, `uk-navbar-brand`, `uk-navbar-toggle`
  1797. ========================================================================== */
  1798. /*
  1799. * Imitate navbar items
  1800. */
  1801. .uk-navbar-content,
  1802. .uk-navbar-brand,
  1803. .uk-navbar-toggle {
  1804. box-sizing: border-box;
  1805. display: block;
  1806. height: 45px;
  1807. padding: 0 15px;
  1808. float: left;
  1809. margin-top: -1px;
  1810. text-shadow: 0 1px 0 #ffffff;
  1811. }
  1812. /*
  1813. * Helper to center all child elements vertically
  1814. */
  1815. .uk-navbar-content:before,
  1816. .uk-navbar-brand:before,
  1817. .uk-navbar-toggle:before {
  1818. content: '';
  1819. display: inline-block;
  1820. height: 100%;
  1821. vertical-align: middle;
  1822. }
  1823. /* Sub-objects: `uk-navbar-content`
  1824. ========================================================================== */
  1825. /*
  1826. * Better sibling spacing
  1827. */
  1828. .uk-navbar-content + .uk-navbar-content:not(.uk-navbar-center) {
  1829. padding-left: 0;
  1830. }
  1831. /*
  1832. * Link colors
  1833. */
  1834. .uk-navbar-content > a:not([class]) {
  1835. color: #1fa2d6;
  1836. }
  1837. .uk-navbar-content > a:not([class]):hover {
  1838. color: #0074a2;
  1839. }
  1840. /* Sub-objects: `uk-navbar-brand`
  1841. ========================================================================== */
  1842. .uk-navbar-brand {
  1843. font-size: 18px;
  1844. color: #444444;
  1845. text-decoration: none;
  1846. }
  1847. /*
  1848. * 1. Apply hover style also to focus state
  1849. * 2. Remove default focus style
  1850. */
  1851. .uk-navbar-brand:hover,
  1852. .uk-navbar-brand:focus {
  1853. color: #444444;
  1854. text-decoration: none;
  1855. /* 2 */
  1856. outline: none;
  1857. }
  1858. /* Sub-object: `uk-navbar-toggle`
  1859. ========================================================================== */
  1860. .uk-navbar-toggle {
  1861. font-size: 18px;
  1862. color: #444444;
  1863. text-decoration: none;
  1864. }
  1865. /*
  1866. * 1. Apply hover style also to focus state
  1867. * 2. Remove default focus style
  1868. */
  1869. .uk-navbar-toggle:hover,
  1870. .uk-navbar-toggle:focus {
  1871. color: #444444;
  1872. text-decoration: none;
  1873. /* 2 */
  1874. outline: none;
  1875. }
  1876. /*
  1877. * 1. Center icon vertically
  1878. */
  1879. .uk-navbar-toggle:after {
  1880. content: "\f0c9";
  1881. font-family: FontAwesome;
  1882. /* 1 */
  1883. vertical-align: middle;
  1884. }
  1885. .uk-navbar-toggle-alt:after {
  1886. content: "\f002";
  1887. }
  1888. /* Sub-object: `uk-navbar-center`
  1889. ========================================================================== */
  1890. /*
  1891. * The element with this class needs to be last child in the navbar
  1892. * 1. This hack is needed because other float elements shift centered text
  1893. */
  1894. .uk-navbar-center {
  1895. float: none;
  1896. text-align: center;
  1897. /* 1 */
  1898. max-width: 50%;
  1899. margin-left: auto;
  1900. margin-right: auto;
  1901. }
  1902. /* Sub-object: `uk-navbar-flip`
  1903. ========================================================================== */
  1904. .uk-navbar-flip {
  1905. float: right;
  1906. }
  1907. /*
  1908. * Apply same `border-radius` as `uk-navbar`
  1909. */
  1910. .uk-navbar-nav:first-child > li:first-child > a {
  1911. border-top-left-radius: 4px;
  1912. border-bottom-left-radius: 4px;
  1913. }
  1914. /*
  1915. * Sub-modifier `uk-navbar-flip`
  1916. */
  1917. /* Collapse border */
  1918. .uk-navbar-flip .uk-navbar-nav > li > a {
  1919. margin-left: 0;
  1920. margin-right: -1px;
  1921. }
  1922. /* Apply same `border-radius` as `uk-navbar` */
  1923. .uk-navbar-flip .uk-navbar-nav:first-child > li:first-child > a {
  1924. border-top-left-radius: 0;
  1925. border-bottom-left-radius: 0;
  1926. }
  1927. .uk-navbar-flip .uk-navbar-nav:last-child > li:last-child > a {
  1928. border-top-right-radius: 4px;
  1929. border-bottom-right-radius: 4px;
  1930. }
  1931. /*
  1932. * Sub-modifier `uk-navbar-attached`
  1933. */
  1934. .uk-navbar-attached {
  1935. border-top-color: transparent;
  1936. border-left-color: transparent;
  1937. border-right-color: transparent;
  1938. border-radius: 0;
  1939. }
  1940. .uk-navbar-attached .uk-navbar-nav > li > a {
  1941. border-radius: 0 !important;
  1942. }
  1943. /* ========================================================================
  1944. Component: Subnav
  1945. ========================================================================== */
  1946. /*
  1947. * 1. Gutter
  1948. * 2. Remove default list style
  1949. */
  1950. .uk-subnav {
  1951. display: -ms-flexbox;
  1952. display: -webkit-flex;
  1953. display: flex;
  1954. -ms-flex-wrap: wrap;
  1955. -webkit-flex-wrap: wrap;
  1956. flex-wrap: wrap;
  1957. /* 1 */
  1958. margin-left: -10px;
  1959. margin-top: -10px;
  1960. /* 2 */
  1961. padding: 0;
  1962. list-style: none;
  1963. }
  1964. /*
  1965. * 1. Space is allocated solely based on content dimensions
  1966. * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
  1967. * 3. Create position context for dropdowns
  1968. */
  1969. .uk-subnav > * {
  1970. /* 1 */
  1971. -ms-flex: none;
  1972. -webkit-flex: none;
  1973. flex: none;
  1974. /* 2 */
  1975. padding-left: 10px;
  1976. margin-top: 10px;
  1977. /* 3 */
  1978. position: relative;
  1979. }
  1980. /*
  1981. * DEPRECATED IE9 Support
  1982. */
  1983. .uk-subnav:before,
  1984. .uk-subnav:after {
  1985. content: "";
  1986. display: block;
  1987. overflow: hidden;
  1988. }
  1989. .uk-subnav:after {
  1990. clear: both;
  1991. }
  1992. .uk-subnav > * {
  1993. float: left;
  1994. }
  1995. /* Items
  1996. ========================================================================== */
  1997. .uk-subnav > * > * {
  1998. display: inline-block;
  1999. color: #444444;
  2000. }
  2001. /*
  2002. * Hover
  2003. * 1. Apply hover style also to focus state
  2004. */
  2005. .uk-subnav > * > :hover,
  2006. .uk-subnav > * > :focus {
  2007. color: #1fa2d6;
  2008. text-decoration: none;
  2009. }
  2010. /*
  2011. * Active
  2012. */
  2013. .uk-subnav > .uk-active > * {
  2014. color: #1fa2d6;
  2015. }
  2016. /* Modifier: 'subnav-line'
  2017. ========================================================================== */
  2018. .uk-subnav-line > :before {
  2019. content: "";
  2020. display: inline-block;
  2021. height: 10px;
  2022. vertical-align: middle;
  2023. }
  2024. .uk-subnav-line > :nth-child(n+2):before {
  2025. margin-right: 10px;
  2026. border-left: 1px solid #dddddd;
  2027. }
  2028. /* Modifier: 'subnav-pill'
  2029. ========================================================================== */
  2030. .uk-subnav-pill > * > * {
  2031. padding: 3px 9px;
  2032. border-radius: 4px;
  2033. }
  2034. /*
  2035. * Hover
  2036. * 1. Apply hover style also to focus state
  2037. * 2. Remove default focus style
  2038. */
  2039. .uk-subnav-pill > * > :hover,
  2040. .uk-subnav-pill > * > :focus {
  2041. background: #fafafa;
  2042. color: #444444;
  2043. text-decoration: none;
  2044. /* 2 */
  2045. outline: none;
  2046. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  2047. }
  2048. /*
  2049. * Active
  2050. * `li` needed for higher specificity to override hover
  2051. */
  2052. .uk-subnav-pill > .uk-active > * {
  2053. background: #52b4df;
  2054. color: #ffffff;
  2055. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  2056. }
  2057. /* Disabled state
  2058. ========================================================================== */
  2059. .uk-subnav > .uk-disabled > * {
  2060. background: none;
  2061. color: #999999;
  2062. text-decoration: none;
  2063. cursor: text;
  2064. box-shadow: none;
  2065. }
  2066. /* ========================================================================
  2067. Component: Breadcrumb
  2068. ========================================================================== */
  2069. /*
  2070. * 1. Remove default list style
  2071. * 2. Remove whitespace between child elements when using `inline-block`
  2072. */
  2073. .uk-breadcrumb {
  2074. /* 1 */
  2075. padding: 0;
  2076. list-style: none;
  2077. /* 2 */
  2078. font-size: 0.001px;
  2079. }
  2080. /* Items
  2081. ========================================================================== */
  2082. /*
  2083. * Reset whitespace hack
  2084. */
  2085. .uk-breadcrumb > li {
  2086. font-size: 1rem;
  2087. vertical-align: top;
  2088. }
  2089. .uk-breadcrumb > li,
  2090. .uk-breadcrumb > li > a,
  2091. .uk-breadcrumb > li > span {
  2092. display: inline-block;
  2093. }
  2094. .uk-breadcrumb > li:nth-child(n+2):before {
  2095. content: "/";
  2096. display: inline-block;
  2097. margin: 0 8px;
  2098. }
  2099. /*
  2100. * Disabled
  2101. */
  2102. .uk-breadcrumb > li:not(.uk-active) > span {
  2103. color: #999999;
  2104. }
  2105. /* ========================================================================
  2106. Component: Pagination
  2107. ========================================================================== */
  2108. /*
  2109. * 1. Remove default list style
  2110. * 2. Center pagination by default
  2111. * 3. Remove whitespace between child elements when using `inline-block`
  2112. */
  2113. .uk-pagination {
  2114. /* 1 */
  2115. padding: 0;
  2116. list-style: none;
  2117. /* 2 */
  2118. text-align: center;
  2119. /* 3 */
  2120. font-size: 0.001px;
  2121. }
  2122. /*
  2123. * Micro clearfix
  2124. * Needed if `uk-pagination-previous` or `uk-pagination-next` sub-objects are used
  2125. */
  2126. .uk-pagination:before,
  2127. .uk-pagination:after {
  2128. content: "";
  2129. display: table;
  2130. }
  2131. .uk-pagination:after {
  2132. clear: both;
  2133. }
  2134. /* Items
  2135. ========================================================================== */
  2136. /*
  2137. * 1. Reset whitespace hack
  2138. * 2. Remove the gap at the bottom of it container
  2139. */
  2140. .uk-pagination > li {
  2141. display: inline-block;
  2142. /* 1 */
  2143. font-size: 1rem;
  2144. /* 2 */
  2145. vertical-align: top;
  2146. }
  2147. .uk-pagination > li:nth-child(n+2) {
  2148. margin-left: 5px;
  2149. }
  2150. /*
  2151. * 1. Makes pagination more robust against different box-sizing use
  2152. * 2. Reset text-align to center if alignment modifier is used
  2153. */
  2154. .uk-pagination > li > a,
  2155. .uk-pagination > li > span {
  2156. display: inline-block;
  2157. min-width: 16px;
  2158. padding: 3px 5px;
  2159. line-height: 20px;
  2160. text-decoration: none;
  2161. /* 1 */
  2162. box-sizing: content-box;
  2163. /* 2 */
  2164. text-align: center;
  2165. border-radius: 4px;
  2166. }
  2167. /*
  2168. * Links
  2169. */
  2170. .uk-pagination > li > a {
  2171. background: #f7f7f7;
  2172. color: #444444;
  2173. border: 1px solid rgba(0, 0, 0, 0.2);
  2174. border-bottom-color: rgba(0, 0, 0, 0.3);
  2175. background-origin: border-box;
  2176. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  2177. background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  2178. text-shadow: 0 1px 0 #ffffff;
  2179. }
  2180. /*
  2181. * Hover
  2182. * 1. Apply hover style also to focus state
  2183. * 2. Remove default focus style
  2184. */
  2185. .uk-pagination > li > a:hover,
  2186. .uk-pagination > li > a:focus {
  2187. background-color: #fafafa;
  2188. color: #444444;
  2189. /* 2 */
  2190. outline: none;
  2191. background-image: none;
  2192. }
  2193. /* OnClick */
  2194. .uk-pagination > li > a:active {
  2195. background-color: #f5f5f5;
  2196. color: #444444;
  2197. border-color: rgba(0, 0, 0, 0.2);
  2198. border-top-color: rgba(0, 0, 0, 0.3);
  2199. background-image: none;
  2200. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  2201. }
  2202. /*
  2203. * Active
  2204. */
  2205. .uk-pagination > .uk-active > span {
  2206. background: #52b4df;
  2207. color: #ffffff;
  2208. border: 1px solid rgba(0, 0, 0, 0.2);
  2209. border-bottom-color: rgba(0, 0, 0, 0.4);
  2210. background-origin: border-box;
  2211. background-image: -webkit-linear-gradient(top, #5cc0ea, #4cacd7);
  2212. background-image: linear-gradient(to bottom, #5cc0ea, #4cacd7);
  2213. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  2214. }
  2215. /*
  2216. * Disabled
  2217. */
  2218. .uk-pagination > .uk-disabled > span {
  2219. background-color: #fafafa;
  2220. color: #999999;
  2221. border: 1px solid rgba(0, 0, 0, 0.2);
  2222. text-shadow: 0 1px 0 #ffffff;
  2223. }
  2224. /* Previous and next navigation
  2225. ========================================================================== */
  2226. .uk-pagination-previous {
  2227. float: left;
  2228. }
  2229. .uk-pagination-next {
  2230. float: right;
  2231. }
  2232. /* Alignment modifiers
  2233. ========================================================================== */
  2234. .uk-pagination-left {
  2235. text-align: left;
  2236. }
  2237. .uk-pagination-right {
  2238. text-align: right;
  2239. }
  2240. /* ========================================================================
  2241. Component: Tab
  2242. ========================================================================== */
  2243. .uk-tab {
  2244. margin: 0;
  2245. padding: 0;
  2246. list-style: none;
  2247. border-bottom: 1px solid #dddddd;
  2248. }
  2249. /*
  2250. * Micro clearfix on the deepest container
  2251. */
  2252. .uk-tab:before,
  2253. .uk-tab:after {
  2254. content: "";
  2255. display: table;
  2256. }
  2257. .uk-tab:after {
  2258. clear: both;
  2259. }
  2260. /*
  2261. * Items
  2262. * 1. Create position context for dropdowns
  2263. */
  2264. .uk-tab > li {
  2265. margin-bottom: -1px;
  2266. float: left;
  2267. /* 1 */
  2268. position: relative;
  2269. }
  2270. .uk-tab > li > a {
  2271. display: block;
  2272. padding: 8px 12px 8px 12px;
  2273. border: 1px solid transparent;
  2274. border-bottom-width: 0;
  2275. color: #1fa2d6;
  2276. text-decoration: none;
  2277. border-radius: 4px 4px 0 0;
  2278. text-shadow: 0 1px 0 #ffffff;
  2279. }
  2280. .uk-tab > li:nth-child(n+2) > a {
  2281. margin-left: 5px;
  2282. }
  2283. /*
  2284. * Hover
  2285. * 1. Apply hover style also to focus state
  2286. * 2. Also apply if dropdown is opened
  2287. * 3. Remove default focus style
  2288. */
  2289. .uk-tab > li > a:hover,
  2290. .uk-tab > li > a:focus,
  2291. .uk-tab > li.uk-open > a {
  2292. border-color: #dddddd;
  2293. background: #fafafa;
  2294. color: #0074a2;
  2295. /* 2 */
  2296. outline: none;
  2297. }
  2298. .uk-tab > li:not(.uk-active) > a:hover,
  2299. .uk-tab > li:not(.uk-active) > a:focus,
  2300. .uk-tab > li.uk-open:not(.uk-active) > a {
  2301. margin-bottom: 1px;
  2302. padding-bottom: 7px;
  2303. }
  2304. /* Active */
  2305. .uk-tab > li.uk-active > a {
  2306. border-color: #dddddd;
  2307. border-bottom-color: transparent;
  2308. background: #ffffff;
  2309. color: #444444;
  2310. }
  2311. /* Disabled */
  2312. .uk-tab > li.uk-disabled > a {
  2313. color: #999999;
  2314. cursor: text;
  2315. }
  2316. .uk-tab > li.uk-disabled > a:hover,
  2317. .uk-tab > li.uk-disabled > a:focus,
  2318. .uk-tab > li.uk-disabled.uk-active > a {
  2319. background: none;
  2320. border-color: transparent;
  2321. }
  2322. /* Modifier: 'tab-flip'
  2323. ========================================================================== */
  2324. .uk-tab-flip > li {
  2325. float: right;
  2326. }
  2327. .uk-tab-flip > li:nth-child(n+2) > a {
  2328. margin-left: 0;
  2329. margin-right: 5px;
  2330. }
  2331. /* Modifier: 'tab-responsive'
  2332. ========================================================================== */
  2333. .uk-tab > li.uk-tab-responsive > a {
  2334. margin-left: 0;
  2335. margin-right: 0;
  2336. }
  2337. /*
  2338. * Icon
  2339. */
  2340. .uk-tab-responsive > a:before {
  2341. content: "\f0c9\00a0";
  2342. font-family: FontAwesome;
  2343. }
  2344. /* Modifier: 'tab-center'
  2345. ========================================================================== */
  2346. .uk-tab-center {
  2347. border-bottom: 1px solid #dddddd;
  2348. }
  2349. .uk-tab-center-bottom {
  2350. border-bottom: none;
  2351. border-top: 1px solid #dddddd;
  2352. }
  2353. .uk-tab-center:before,
  2354. .uk-tab-center:after {
  2355. content: "";
  2356. display: table;
  2357. }
  2358. .uk-tab-center:after {
  2359. clear: both;
  2360. }
  2361. /*
  2362. * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
  2363. */
  2364. .uk-tab-center .uk-tab {
  2365. position: relative;
  2366. right: 50%;
  2367. border: none;
  2368. float: right;
  2369. }
  2370. .uk-tab-center .uk-tab > li {
  2371. position: relative;
  2372. right: -50%;
  2373. }
  2374. .uk-tab-center .uk-tab > li > a {
  2375. text-align: center;
  2376. }
  2377. /* Modifier: 'tab-bottom'
  2378. ========================================================================== */
  2379. .uk-tab-bottom {
  2380. border-top: 1px solid #dddddd;
  2381. border-bottom: none;
  2382. }
  2383. .uk-tab-bottom > li {
  2384. margin-top: -1px;
  2385. margin-bottom: 0;
  2386. }
  2387. .uk-tab-bottom > li > a {
  2388. padding-top: 8px;
  2389. padding-bottom: 8px;
  2390. border-bottom-width: 1px;
  2391. border-top-width: 0;
  2392. }
  2393. .uk-tab-bottom > li:not(.uk-active) > a:hover,
  2394. .uk-tab-bottom > li:not(.uk-active) > a:focus,
  2395. .uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  2396. margin-bottom: 0;
  2397. margin-top: 1px;
  2398. padding-bottom: 8px;
  2399. padding-top: 7px;
  2400. }
  2401. .uk-tab-bottom > li.uk-active > a {
  2402. border-top-color: transparent;
  2403. border-bottom-color: #dddddd;
  2404. }
  2405. /* Modifier: 'tab-grid'
  2406. ========================================================================== */
  2407. /*
  2408. * 1. Create position context to prevent hidden border because of negative `z-index`
  2409. */
  2410. .uk-tab-grid {
  2411. margin-left: -5px;
  2412. border-bottom: none;
  2413. /* 1 */
  2414. position: relative;
  2415. z-index: 0;
  2416. }
  2417. .uk-tab-grid:before {
  2418. display: block;
  2419. position: absolute;
  2420. left: 5px;
  2421. right: 0;
  2422. bottom: -1px;
  2423. border-top: 1px solid #dddddd;
  2424. /* 1 */
  2425. z-index: -1;
  2426. }
  2427. .uk-tab-grid > li:first-child > a {
  2428. margin-left: 5px;
  2429. }
  2430. .uk-tab-grid > li > a {
  2431. text-align: center;
  2432. }
  2433. /*
  2434. * If `uk-tab-bottom`
  2435. */
  2436. .uk-tab-grid.uk-tab-bottom {
  2437. border-top: none;
  2438. }
  2439. .uk-tab-grid.uk-tab-bottom:before {
  2440. top: -1px;
  2441. bottom: auto;
  2442. }
  2443. /* Modifier: 'tab-left', 'tab-right'
  2444. ========================================================================== */
  2445. /* Tablet and bigger */
  2446. @media (min-width: 768px) {
  2447. .uk-tab-left,
  2448. .uk-tab-right {
  2449. border-bottom: none;
  2450. }
  2451. .uk-tab-left > li,
  2452. .uk-tab-right > li {
  2453. margin-bottom: 0;
  2454. float: none;
  2455. }
  2456. .uk-tab-left > li > a,
  2457. .uk-tab-right > li > a {
  2458. padding-top: 8px;
  2459. padding-bottom: 8px;
  2460. }
  2461. .uk-tab-left > li:nth-child(n+2) > a,
  2462. .uk-tab-right > li:nth-child(n+2) > a {
  2463. margin-left: 0;
  2464. margin-top: 5px;
  2465. }
  2466. .uk-tab-left > li.uk-active > a,
  2467. .uk-tab-right > li.uk-active > a {
  2468. border-color: #dddddd;
  2469. }
  2470. /*
  2471. * Modifier: 'tab-left'
  2472. */
  2473. .uk-tab-left {
  2474. border-right: 1px solid #dddddd;
  2475. }
  2476. .uk-tab-left > li {
  2477. margin-right: -1px;
  2478. }
  2479. .uk-tab-left > li > a {
  2480. border-bottom-width: 1px;
  2481. border-right-width: 0;
  2482. }
  2483. .uk-tab-left > li:not(.uk-active) > a:hover,
  2484. .uk-tab-left > li:not(.uk-active) > a:focus {
  2485. margin-bottom: 0;
  2486. margin-right: 1px;
  2487. padding-bottom: 8px;
  2488. padding-right: 11px;
  2489. }
  2490. .uk-tab-left > li.uk-active > a {
  2491. border-right-color: transparent;
  2492. }
  2493. /*
  2494. * Modifier: 'tab-right'
  2495. */
  2496. .uk-tab-right {
  2497. border-left: 1px solid #dddddd;
  2498. }
  2499. .uk-tab-right > li {
  2500. margin-left: -1px;
  2501. }
  2502. .uk-tab-right > li > a {
  2503. border-bottom-width: 1px;
  2504. border-left-width: 0;
  2505. }
  2506. .uk-tab-right > li:not(.uk-active) > a:hover,
  2507. .uk-tab-right > li:not(.uk-active) > a:focus {
  2508. margin-bottom: 0;
  2509. margin-left: 1px;
  2510. padding-bottom: 8px;
  2511. padding-left: 11px;
  2512. }
  2513. .uk-tab-right > li.uk-active > a {
  2514. border-left-color: transparent;
  2515. }
  2516. }
  2517. /* Modifier: `uk-tab-bottom'
  2518. ========================================================================== */
  2519. .uk-tab-bottom > li > a {
  2520. border-radius: 0 0 4px 4px;
  2521. }
  2522. /* Modifier: `uk-tab-left', `uk-tab-right'
  2523. ========================================================================== */
  2524. /* Tablet and bigger */
  2525. @media (min-width: 768px) {
  2526. /*
  2527. * Modifier: `uk-tab-left'
  2528. */
  2529. .uk-tab-left > li > a {
  2530. border-radius: 4px 0 0 4px;
  2531. }
  2532. /*
  2533. * Modifier: `uk-tab-right'
  2534. */
  2535. .uk-tab-right > li > a {
  2536. border-radius: 0 4px 4px 0;
  2537. }
  2538. }
  2539. /* ========================================================================
  2540. Component: Thumbnav
  2541. ========================================================================== */
  2542. /*
  2543. * 1. Gutter
  2544. * 2. Remove default list style
  2545. */
  2546. .uk-thumbnav {
  2547. display: -ms-flexbox;
  2548. display: -webkit-flex;
  2549. display: flex;
  2550. -ms-flex-wrap: wrap;
  2551. -webkit-flex-wrap: wrap;
  2552. flex-wrap: wrap;
  2553. /* 1 */
  2554. margin-left: -10px;
  2555. margin-top: -10px;
  2556. /* 2 */
  2557. padding: 0;
  2558. list-style: none;
  2559. }
  2560. /*
  2561. * 1. Space is allocated solely based on content dimensions
  2562. * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
  2563. */
  2564. .uk-thumbnav > * {
  2565. /* 1 */
  2566. -ms-flex: none;
  2567. -webkit-flex: none;
  2568. flex: none;
  2569. /* 2 */
  2570. padding-left: 10px;
  2571. margin-top: 10px;
  2572. }
  2573. /*
  2574. * DEPRECATED IE9 Support
  2575. */
  2576. .uk-thumbnav:before,
  2577. .uk-thumbnav:after {
  2578. content: "";
  2579. display: block;
  2580. overflow: hidden;
  2581. }
  2582. .uk-thumbnav:after {
  2583. clear: both;
  2584. }
  2585. .uk-thumbnav > * {
  2586. float: left;
  2587. }
  2588. /* Items
  2589. ========================================================================== */
  2590. .uk-thumbnav > * > * {
  2591. display: block;
  2592. background: #ffffff;
  2593. }
  2594. .uk-thumbnav > * > * > img {
  2595. opacity: 0.7;
  2596. -webkit-transition: opacity 0.15s linear;
  2597. transition: opacity 0.15s linear;
  2598. }
  2599. /*
  2600. * Hover
  2601. */
  2602. .uk-thumbnav > * > :hover > img,
  2603. .uk-thumbnav > * > :focus > img {
  2604. opacity: 1;
  2605. }
  2606. /*
  2607. * Active
  2608. */
  2609. .uk-thumbnav > .uk-active > * > img {
  2610. opacity: 1;
  2611. }
  2612. /* ========================================================================
  2613. Component: List
  2614. ========================================================================== */
  2615. .uk-list {
  2616. padding: 0;
  2617. list-style: none;
  2618. }
  2619. /*
  2620. * Micro clearfix to make list more robust
  2621. */
  2622. .uk-list > li:before,
  2623. .uk-list > li:after {
  2624. content: "";
  2625. display: table;
  2626. }
  2627. .uk-list > li:after {
  2628. clear: both;
  2629. }
  2630. /*
  2631. * Remove margin from the last-child
  2632. */
  2633. .uk-list > li > :last-child {
  2634. margin-bottom: 0;
  2635. }
  2636. /*
  2637. * Nested lists
  2638. */
  2639. .uk-list ul {
  2640. margin: 0;
  2641. padding-left: 20px;
  2642. list-style: none;
  2643. }
  2644. /* Modifier: `uk-list-line`
  2645. ========================================================================== */
  2646. .uk-list-line > li:nth-child(n+2) {
  2647. margin-top: 5px;
  2648. padding-top: 5px;
  2649. border-top: 1px solid #dddddd;
  2650. }
  2651. /* Modifier: `uk-list-striped`
  2652. ========================================================================== */
  2653. .uk-list-striped > li {
  2654. padding: 5px 5px;
  2655. border-bottom: 1px solid #dddddd;
  2656. }
  2657. .uk-list-striped > li:nth-of-type(odd) {
  2658. background: #fafafa;
  2659. }
  2660. /* Modifier: `uk-list-space`
  2661. ========================================================================== */
  2662. .uk-list-space > li:nth-child(n+2) {
  2663. margin-top: 10px;
  2664. }
  2665. .uk-list-striped > li:first-child {
  2666. border-top: 1px solid #dddddd;
  2667. }
  2668. /* ========================================================================
  2669. Component: Description list
  2670. ========================================================================== */
  2671. /* Modifier: `uk-description-list-horizontal`
  2672. ========================================================================== */
  2673. /* Tablet and bigger */
  2674. @media (min-width: 768px) {
  2675. .uk-description-list-horizontal {
  2676. overflow: hidden;
  2677. }
  2678. .uk-description-list-horizontal > dt {
  2679. width: 160px;
  2680. float: left;
  2681. clear: both;
  2682. overflow: hidden;
  2683. text-overflow: ellipsis;
  2684. white-space: nowrap;
  2685. }
  2686. .uk-description-list-horizontal > dd {
  2687. margin-left: 180px;
  2688. }
  2689. }
  2690. /* Modifier: `uk-description-list-line`
  2691. ========================================================================== */
  2692. .uk-description-list-line > dt {
  2693. font-weight: normal;
  2694. }
  2695. .uk-description-list-line > dt:nth-child(n+2) {
  2696. margin-top: 5px;
  2697. padding-top: 5px;
  2698. border-top: 1px solid #dddddd;
  2699. }
  2700. .uk-description-list-line > dd {
  2701. color: #999999;
  2702. }
  2703. /* ========================================================================
  2704. Component: Table
  2705. ========================================================================== */
  2706. /*
  2707. * 1. Remove most spacing between table cells.
  2708. * 2. Block element behavior
  2709. * 3. Style
  2710. */
  2711. .uk-table {
  2712. /* 1 */
  2713. border-collapse: collapse;
  2714. border-spacing: 0;
  2715. /* 2 */
  2716. width: 100%;
  2717. /* 3 */
  2718. margin-bottom: 20px;
  2719. }
  2720. /*
  2721. * Add margin if adjacent element
  2722. */
  2723. * + .uk-table {
  2724. margin-top: 20px;
  2725. }
  2726. .uk-table th,
  2727. .uk-table td {
  2728. padding: 8px 8px;
  2729. border-bottom: 1px solid #dddddd;
  2730. }
  2731. /*
  2732. * Set alignment
  2733. */
  2734. .uk-table th {
  2735. text-align: left;
  2736. }
  2737. .uk-table td {
  2738. vertical-align: top;
  2739. }
  2740. .uk-table thead th {
  2741. vertical-align: bottom;
  2742. }
  2743. /*
  2744. * Caption and footer
  2745. */
  2746. .uk-table caption,
  2747. .uk-table tfoot {
  2748. font-size: 12px;
  2749. font-style: italic;
  2750. }
  2751. .uk-table caption {
  2752. text-align: left;
  2753. color: #999999;
  2754. }
  2755. /*
  2756. * Active State
  2757. */
  2758. .uk-table tbody tr.uk-active {
  2759. background: #f0f0f0;
  2760. }
  2761. /* Sub-modifier: `uk-table-middle`
  2762. ========================================================================== */
  2763. .uk-table-middle,
  2764. .uk-table-middle td {
  2765. vertical-align: middle !important;
  2766. }
  2767. /* Modifier: `uk-table-striped`
  2768. ========================================================================== */
  2769. .uk-table-striped tbody tr:nth-of-type(odd) {
  2770. background: #fafafa;
  2771. }
  2772. /* Modifier: `uk-table-condensed`
  2773. ========================================================================== */
  2774. .uk-table-condensed td {
  2775. padding: 4px 8px;
  2776. }
  2777. /* Modifier: `uk-table-hover`
  2778. ========================================================================== */
  2779. .uk-table-hover tbody tr:hover {
  2780. background: #f0f0f0;
  2781. }
  2782. /* ========================================================================
  2783. Component: Form
  2784. ========================================================================== */
  2785. /*
  2786. * 1. Define consistent box sizing.
  2787. * Default is `content-box` with following exceptions set to `border-box`
  2788. * `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
  2789. * `input[type="search"]` in Chrome, Safari and Opera
  2790. * `input[type="color"]` in Firefox
  2791. * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
  2792. * 3. Remove `border-radius` in iOS.
  2793. * 4. Correct `font` properties and `color` not being inherited.
  2794. */
  2795. .uk-form input,
  2796. .uk-form select,
  2797. .uk-form textarea {
  2798. /* 1 */
  2799. box-sizing: border-box;
  2800. /* 2 */
  2801. margin: 0;
  2802. /* 3 */
  2803. border-radius: 0;
  2804. /* 4 */
  2805. font: inherit;
  2806. color: inherit;
  2807. }
  2808. /*
  2809. * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
  2810. */
  2811. .uk-form select {
  2812. text-transform: none;
  2813. }
  2814. /*
  2815. * 1. Correct `font` properties not being inherited.
  2816. * 2. Don't inherit the `font-weight` and use `bold` instead.
  2817. * NOTE: Both declarations don't work in Chrome, Safari and Opera.
  2818. */
  2819. .uk-form optgroup {
  2820. /* 1 */
  2821. font: inherit;
  2822. /* 2 */
  2823. font-weight: bold;
  2824. }
  2825. /*
  2826. * Removes inner padding and border in Firefox 4+.
  2827. */
  2828. .uk-form input::-moz-focus-inner {
  2829. border: 0;
  2830. padding: 0;
  2831. }
  2832. /*
  2833. * Removes excess padding in IE 8/9/10.
  2834. */
  2835. .uk-form input[type="checkbox"],
  2836. .uk-form input[type="radio"] {
  2837. padding: 0;
  2838. }
  2839. /*
  2840. * Improves consistency of cursor style for clickable elements
  2841. */
  2842. .uk-form input[type="checkbox"]:not(:disabled),
  2843. .uk-form input[type="radio"]:not(:disabled) {
  2844. cursor: pointer;
  2845. }
  2846. /*
  2847. * Remove default style in iOS.
  2848. */
  2849. .uk-form textarea,
  2850. .uk-form input:not([type]),
  2851. .uk-form input[type="text"],
  2852. .uk-form input[type="password"],
  2853. .uk-form input[type="email"],
  2854. .uk-form input[type="url"],
  2855. .uk-form input[type="search"],
  2856. .uk-form input[type="tel"],
  2857. .uk-form input[type="number"],
  2858. .uk-form input[type="datetime"] {
  2859. -webkit-appearance: none;
  2860. }
  2861. /*
  2862. * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
  2863. */
  2864. .uk-form input[type="search"]::-webkit-search-cancel-button,
  2865. .uk-form input[type="search"]::-webkit-search-decoration {
  2866. -webkit-appearance: none;
  2867. }
  2868. /*
  2869. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  2870. * `font-size` values of the `input`, it causes the cursor style of the
  2871. * decrement button to change from `default` to `text`.
  2872. */
  2873. .uk-form input[type="number"]::-webkit-inner-spin-button,
  2874. .uk-form input[type="number"]::-webkit-outer-spin-button {
  2875. height: auto;
  2876. }
  2877. /*
  2878. * Define consistent border, margin, and padding.
  2879. */
  2880. .uk-form fieldset {
  2881. border: none;
  2882. margin: 0;
  2883. padding: 0;
  2884. }
  2885. /*
  2886. * 1. Remove default vertical scrollbar in IE 8/9/10/11.
  2887. * 2. Improve readability and alignment in all browsers.
  2888. */
  2889. .uk-form textarea {
  2890. /* 1 */
  2891. overflow: auto;
  2892. /* 2 */
  2893. vertical-align: top;
  2894. }
  2895. /*
  2896. * Removes placeholder transparency in Firefox.
  2897. */
  2898. .uk-form ::-moz-placeholder {
  2899. opacity: 1;
  2900. }
  2901. /*
  2902. * Removes `box-shadow` for invalid controls in Firefox.
  2903. */
  2904. .uk-form :invalid {
  2905. box-shadow: none;
  2906. }
  2907. /*
  2908. * Vertical alignment
  2909. */
  2910. .uk-form input:not([type="radio"]):not([type="checkbox"]),
  2911. .uk-form select {
  2912. vertical-align: middle;
  2913. }
  2914. /* Style
  2915. ========================================================================== */
  2916. /*
  2917. * Remove margin from the last-child
  2918. */
  2919. .uk-form > :last-child {
  2920. margin-bottom: 0;
  2921. }
  2922. /*
  2923. * Controls
  2924. * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
  2925. * 1. Must be `height` because `min-height` is not working in OSX
  2926. * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
  2927. * 3. Vertical `padding` needed for `select` elements in Firefox
  2928. * 4. Style
  2929. */
  2930. .uk-form select,
  2931. .uk-form textarea,
  2932. .uk-form input:not([type]),
  2933. .uk-form input[type="text"],
  2934. .uk-form input[type="password"],
  2935. .uk-form input[type="datetime"],
  2936. .uk-form input[type="datetime-local"],
  2937. .uk-form input[type="date"],
  2938. .uk-form input[type="month"],
  2939. .uk-form input[type="time"],
  2940. .uk-form input[type="week"],
  2941. .uk-form input[type="number"],
  2942. .uk-form input[type="email"],
  2943. .uk-form input[type="url"],
  2944. .uk-form input[type="search"],
  2945. .uk-form input[type="tel"],
  2946. .uk-form input[type="color"] {
  2947. /* 1 */
  2948. height: 30px;
  2949. /* 2 */
  2950. max-width: 100%;
  2951. /* 3 */
  2952. padding: 4px 6px;
  2953. /* 4 */
  2954. border: 1px solid #dddddd;
  2955. background: #ffffff;
  2956. color: #444444;
  2957. -webkit-transition: all 0.2s linear;
  2958. -webkit-transition-property: border, background, color, box-shadow, padding;
  2959. transition: all 0.2s linear;
  2960. transition-property: border, background, color, box-shadow, padding;
  2961. border-radius: 4px;
  2962. }
  2963. .uk-form select:focus,
  2964. .uk-form textarea:focus,
  2965. .uk-form input:not([type]):focus,
  2966. .uk-form input[type="text"]:focus,
  2967. .uk-form input[type="password"]:focus,
  2968. .uk-form input[type="datetime"]:focus,
  2969. .uk-form input[type="datetime-local"]:focus,
  2970. .uk-form input[type="date"]:focus,
  2971. .uk-form input[type="month"]:focus,
  2972. .uk-form input[type="time"]:focus,
  2973. .uk-form input[type="week"]:focus,
  2974. .uk-form input[type="number"]:focus,
  2975. .uk-form input[type="email"]:focus,
  2976. .uk-form input[type="url"]:focus,
  2977. .uk-form input[type="search"]:focus,
  2978. .uk-form input[type="tel"]:focus,
  2979. .uk-form input[type="color"]:focus {
  2980. border-color: #99baca;
  2981. outline: 0;
  2982. background: #f5fbfe;
  2983. color: #444444;
  2984. }
  2985. .uk-form select:disabled,
  2986. .uk-form textarea:disabled,
  2987. .uk-form input:not([type]):disabled,
  2988. .uk-form input[type="text"]:disabled,
  2989. .uk-form input[type="password"]:disabled,
  2990. .uk-form input[type="datetime"]:disabled,
  2991. .uk-form input[type="datetime-local"]:disabled,
  2992. .uk-form input[type="date"]:disabled,
  2993. .uk-form input[type="month"]:disabled,
  2994. .uk-form input[type="time"]:disabled,
  2995. .uk-form input[type="week"]:disabled,
  2996. .uk-form input[type="number"]:disabled,
  2997. .uk-form input[type="email"]:disabled,
  2998. .uk-form input[type="url"]:disabled,
  2999. .uk-form input[type="search"]:disabled,
  3000. .uk-form input[type="tel"]:disabled,
  3001. .uk-form input[type="color"]:disabled {
  3002. border-color: #dddddd;
  3003. background-color: #fafafa;
  3004. color: #999999;
  3005. }
  3006. /*
  3007. * Placeholder
  3008. */
  3009. .uk-form :-ms-input-placeholder {
  3010. color: #999999 !important;
  3011. }
  3012. .uk-form ::-moz-placeholder {
  3013. color: #999999;
  3014. }
  3015. .uk-form ::-webkit-input-placeholder {
  3016. color: #999999;
  3017. }
  3018. .uk-form :disabled:-ms-input-placeholder {
  3019. color: #999999 !important;
  3020. }
  3021. .uk-form :disabled::-moz-placeholder {
  3022. color: #999999;
  3023. }
  3024. .uk-form :disabled::-webkit-input-placeholder {
  3025. color: #999999;
  3026. }
  3027. /*
  3028. * Legend
  3029. * 1. Behave like block element
  3030. * 2. Correct `color` not being inherited in IE 8/9/10/11.
  3031. * 3. Remove padding
  3032. * 4. `margin-bottom` is not working in Safari and Opera.
  3033. * Using `padding` and :after instead to create the border
  3034. * 5. Style
  3035. */
  3036. .uk-form legend {
  3037. /* 1 */
  3038. width: 100%;
  3039. /* 2 */
  3040. border: 0;
  3041. /* 3 */
  3042. padding: 0;
  3043. /* 4 */
  3044. padding-bottom: 20px;
  3045. /* 5 */
  3046. font-size: 18px;
  3047. line-height: 30px;
  3048. }
  3049. /*
  3050. * 1. Fixes IE9
  3051. */
  3052. .uk-form legend:after {
  3053. content: "";
  3054. display: block;
  3055. border-bottom: 1px solid #dddddd;
  3056. /* 1 */
  3057. width: 100%;
  3058. }
  3059. /* Size modifiers
  3060. * Higher specificity needed to override defaults
  3061. ========================================================================== */
  3062. select.uk-form-small,
  3063. textarea.uk-form-small,
  3064. input[type].uk-form-small,
  3065. input:not([type]).uk-form-small {
  3066. height: 25px;
  3067. padding: 3px 3px;
  3068. font-size: 12px;
  3069. }
  3070. select.uk-form-large,
  3071. textarea.uk-form-large,
  3072. input[type].uk-form-large,
  3073. input:not([type]).uk-form-large {
  3074. height: 40px;
  3075. padding: 8px 6px;
  3076. font-size: 16px;
  3077. }
  3078. /* Reset height
  3079. * Must be after size modifiers
  3080. ========================================================================== */
  3081. .uk-form textarea,
  3082. .uk-form select[multiple],
  3083. .uk-form select[size] {
  3084. height: auto;
  3085. }
  3086. /* Validation states
  3087. * Using !important to keep the selector simple
  3088. ========================================================================== */
  3089. /*
  3090. * Error state
  3091. */
  3092. .uk-form-danger {
  3093. border-color: #dc8d99 !important;
  3094. background: #fff7f8 !important;
  3095. color: #d85030 !important;
  3096. }
  3097. /*
  3098. * Success state
  3099. */
  3100. .uk-form-success {
  3101. border-color: #8ec73b !important;
  3102. background: #fafff2 !important;
  3103. color: #659f13 !important;
  3104. }
  3105. /* Style modifiers
  3106. * Using !important to keep the selector simple
  3107. ========================================================================== */
  3108. /*
  3109. * Blank form
  3110. */
  3111. .uk-form-blank {
  3112. border-color: transparent !important;
  3113. border-style: dashed !important;
  3114. background: none !important;
  3115. }
  3116. .uk-form-blank:focus {
  3117. border-color: #dddddd !important;
  3118. }
  3119. /* Size sub-modifiers
  3120. ========================================================================== */
  3121. /*
  3122. * Fixed widths
  3123. * Different widths for mini sized `input` and `select` elements
  3124. */
  3125. input.uk-form-width-mini {
  3126. width: 40px;
  3127. }
  3128. select.uk-form-width-mini {
  3129. width: 65px;
  3130. }
  3131. .uk-form-width-small {
  3132. width: 130px;
  3133. }
  3134. .uk-form-width-medium {
  3135. width: 200px;
  3136. }
  3137. .uk-form-width-large {
  3138. width: 500px;
  3139. }
  3140. /* Sub-objects: `uk-form-row`
  3141. * Groups labels and controls in rows
  3142. ========================================================================== */
  3143. /*
  3144. * Micro clearfix
  3145. * Needed for `uk-form-horizontal` modifier
  3146. */
  3147. .uk-form-row:before,
  3148. .uk-form-row:after {
  3149. content: "";
  3150. display: table;
  3151. }
  3152. .uk-form-row:after {
  3153. clear: both;
  3154. }
  3155. /*
  3156. * Vertical gutter
  3157. */
  3158. .uk-form-row + .uk-form-row {
  3159. margin-top: 20px;
  3160. }
  3161. /* Help text
  3162. * Sub-object: `uk-form-help-inline`, `uk-form-help-block`
  3163. ========================================================================== */
  3164. .uk-form-help-inline {
  3165. display: inline-block;
  3166. margin: 0 0 0 10px;
  3167. }
  3168. .uk-form-help-block {
  3169. margin: 5px 0 0 0;
  3170. }
  3171. /* Controls content
  3172. * Sub-object: `uk-form-controls`, `uk-form-controls-condensed`
  3173. ========================================================================== */
  3174. /*
  3175. * Remove margins
  3176. */
  3177. .uk-form-controls > :first-child {
  3178. margin-top: 0;
  3179. }
  3180. .uk-form-controls > :last-child {
  3181. margin-bottom: 0;
  3182. }
  3183. /*
  3184. * Group controls and text into blocks with a small spacing between blocks
  3185. */
  3186. .uk-form-controls-condensed {
  3187. margin: 5px 0;
  3188. }
  3189. /* Modifier: `uk-form-stacked`
  3190. * Requires sub-object: `uk-form-label`
  3191. ========================================================================== */
  3192. .uk-form-stacked .uk-form-label {
  3193. display: block;
  3194. margin-bottom: 5px;
  3195. font-weight: bold;
  3196. }
  3197. /* Modifier: `uk-form-horizontal`
  3198. * Requires sub-objects: `uk-form-label`, `uk-form-controls`
  3199. ========================================================================== */
  3200. /* Tablet portrait and smaller */
  3201. @media (max-width: 959px) {
  3202. /* Behave like `uk-form-stacked` */
  3203. .uk-form-horizontal .uk-form-label {
  3204. display: block;
  3205. margin-bottom: 5px;
  3206. font-weight: bold;
  3207. }
  3208. }
  3209. /* Desktop and bigger */
  3210. @media (min-width: 960px) {
  3211. .uk-form-horizontal .uk-form-label {
  3212. width: 200px;
  3213. margin-top: 5px;
  3214. float: left;
  3215. }
  3216. .uk-form-horizontal .uk-form-controls {
  3217. margin-left: 215px;
  3218. }
  3219. /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  3220. .uk-form-horizontal .uk-form-controls-text {
  3221. padding-top: 5px;
  3222. }
  3223. }
  3224. /* Sub-object: `uk-form-icon`
  3225. ========================================================================== */
  3226. /*
  3227. * 1. Container width fits its content
  3228. * 2. Create position context
  3229. * 3. Prevent `inline-block` consequences
  3230. */
  3231. .uk-form-icon {
  3232. /* 1 */
  3233. display: inline-block;
  3234. /* 2 */
  3235. position: relative;
  3236. /* 3 */
  3237. max-width: 100%;
  3238. }
  3239. /*
  3240. * 1. Make form element clickable through icon
  3241. */
  3242. .uk-form-icon > [class*='uk-icon-'] {
  3243. position: absolute;
  3244. top: 50%;
  3245. width: 30px;
  3246. margin-top: -7px;
  3247. font-size: 14px;
  3248. color: #999999;
  3249. text-align: center;
  3250. /* 1 */
  3251. pointer-events: none;
  3252. }
  3253. .uk-form-icon:not(.uk-form-icon-flip) > input {
  3254. padding-left: 30px !important;
  3255. }
  3256. /*
  3257. * Sub-modifier: `uk-form-icon-flip`
  3258. */
  3259. .uk-form-icon-flip > [class*='uk-icon-'] {
  3260. right: 0;
  3261. }
  3262. .uk-form-icon-flip > input {
  3263. padding-right: 30px !important;
  3264. }
  3265. /* ========================================================================
  3266. Component: Button
  3267. ========================================================================== */
  3268. /*
  3269. * Removes inner padding and border in Firefox 4+.
  3270. */
  3271. .uk-button::-moz-focus-inner {
  3272. border: 0;
  3273. padding: 0;
  3274. }
  3275. /*
  3276. * 1. Correct inability to style clickable `input` types in iOS.
  3277. * 2. Remove margins in Chrome, Safari and Opera.
  3278. * 3. Remove borders for `button`.
  3279. * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
  3280. * 5. Correct `font` properties and `color` not being inherited for `button`.
  3281. * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
  3282. * 7. Style
  3283. * 8. `line-height` is used to create a height
  3284. * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
  3285. * 10. Reset button group whitespace hack
  3286. * 11. Required for `a`.
  3287. */
  3288. .uk-button {
  3289. /* 1 */
  3290. -webkit-appearance: none;
  3291. /* 2 */
  3292. margin: 0;
  3293. /* 3 */
  3294. border: none;
  3295. /* 4 */
  3296. overflow: visible;
  3297. /* 5 */
  3298. font: inherit;
  3299. color: #444444;
  3300. /* 6 */
  3301. text-transform: none;
  3302. /* 7 */
  3303. display: inline-block;
  3304. box-sizing: border-box;
  3305. padding: 0 12px;
  3306. background: #f7f7f7;
  3307. vertical-align: middle;
  3308. /* 8 */
  3309. line-height: 28px;
  3310. /* 9 */
  3311. min-height: 30px;
  3312. /* 10 */
  3313. font-size: 1rem;
  3314. /* 11 */
  3315. text-decoration: none;
  3316. text-align: center;
  3317. border: 1px solid rgba(0, 0, 0, 0.2);
  3318. border-bottom-color: rgba(0, 0, 0, 0.3);
  3319. background-origin: border-box;
  3320. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  3321. background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  3322. border-radius: 4px;
  3323. text-shadow: 0 1px 0 #ffffff;
  3324. }
  3325. .uk-button:not(:disabled) {
  3326. cursor: pointer;
  3327. }
  3328. /*
  3329. * Hover
  3330. * 1. Apply hover style also to focus state
  3331. * 2. Remove default focus style
  3332. * 3. Required for `a` elements
  3333. */
  3334. .uk-button:hover,
  3335. .uk-button:focus {
  3336. background-color: #fafafa;
  3337. color: #444444;
  3338. /* 2 */
  3339. outline: none;
  3340. /* 3 */
  3341. text-decoration: none;
  3342. background-image: none;
  3343. }
  3344. /* Active */
  3345. .uk-button:active,
  3346. .uk-button.uk-active {
  3347. background-color: #f5f5f5;
  3348. color: #444444;
  3349. border-color: rgba(0, 0, 0, 0.2);
  3350. border-top-color: rgba(0, 0, 0, 0.3);
  3351. background-image: none;
  3352. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  3353. }
  3354. /* Color modifiers
  3355. ========================================================================== */
  3356. /*
  3357. * Modifier: `uk-button-primary`
  3358. */
  3359. .uk-button-primary {
  3360. background-color: #52b4df;
  3361. color: #ffffff;
  3362. background-image: -webkit-linear-gradient(top, #5cc0ea, #4cacd7);
  3363. background-image: linear-gradient(to bottom, #5cc0ea, #4cacd7);
  3364. border-color: rgba(0, 0, 0, 0.2);
  3365. border-bottom-color: rgba(0, 0, 0, 0.4);
  3366. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  3367. }
  3368. /* Hover */
  3369. .uk-button-primary:hover,
  3370. .uk-button-primary:focus {
  3371. background-color: #53b5de;
  3372. color: #ffffff;
  3373. background-image: none;
  3374. }
  3375. /* Active */
  3376. .uk-button-primary:active,
  3377. .uk-button-primary.uk-active {
  3378. background-color: #359ac4;
  3379. color: #ffffff;
  3380. background-image: none;
  3381. border-color: rgba(0, 0, 0, 0.2);
  3382. border-top-color: rgba(0, 0, 0, 0.4);
  3383. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  3384. }
  3385. /*
  3386. * Modifier: `uk-button-success`
  3387. */
  3388. .uk-button-success {
  3389. background-color: #82bb42;
  3390. color: #ffffff;
  3391. background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
  3392. background-image: linear-gradient(to bottom, #9fd256, #6fac34);
  3393. border-color: rgba(0, 0, 0, 0.2);
  3394. border-bottom-color: rgba(0, 0, 0, 0.4);
  3395. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  3396. }
  3397. /* Hover */
  3398. .uk-button-success:hover,
  3399. .uk-button-success:focus {
  3400. background-color: #8fce48;
  3401. color: #ffffff;
  3402. background-image: none;
  3403. }
  3404. /* Active */
  3405. .uk-button-success:active,
  3406. .uk-button-success.uk-active {
  3407. background-color: #76b430;
  3408. color: #ffffff;
  3409. background-image: none;
  3410. border-color: rgba(0, 0, 0, 0.2);
  3411. border-top-color: rgba(0, 0, 0, 0.4);
  3412. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  3413. }
  3414. /*
  3415. * Modifier: `uk-button-danger`
  3416. */
  3417. .uk-button-danger {
  3418. background-color: #d32c46;
  3419. color: #ffffff;
  3420. background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
  3421. background-image: linear-gradient(to bottom, #ee465a, #c11a39);
  3422. border-color: rgba(0, 0, 0, 0.2);
  3423. border-bottom-color: rgba(0, 0, 0, 0.4);
  3424. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  3425. }
  3426. /* Hover */
  3427. .uk-button-danger:hover,
  3428. .uk-button-danger:focus {
  3429. background-color: #e33551;
  3430. color: #ffffff;
  3431. background-image: none;
  3432. }
  3433. /* Active */
  3434. .uk-button-danger:active,
  3435. .uk-button-danger.uk-active {
  3436. background-color: #c91c37;
  3437. color: #ffffff;
  3438. background-image: none;
  3439. border-color: rgba(0, 0, 0, 0.2);
  3440. border-top-color: rgba(0, 0, 0, 0.4);
  3441. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  3442. }
  3443. /* Disabled state
  3444. * Overrides also the color modifiers
  3445. ========================================================================== */
  3446. /* Equal for all button types */
  3447. .uk-button:disabled {
  3448. background-color: #fafafa;
  3449. color: #999999;
  3450. border-color: rgba(0, 0, 0, 0.2);
  3451. background-image: none;
  3452. box-shadow: none;
  3453. text-shadow: 0 1px 0 #ffffff;
  3454. }
  3455. /* Modifier: `uk-button-link`
  3456. ========================================================================== */
  3457. /* Reset */
  3458. .uk-button-link,
  3459. .uk-button-link:hover,
  3460. .uk-button-link:focus,
  3461. .uk-button-link:active,
  3462. .uk-button-link.uk-active,
  3463. .uk-button-link:disabled {
  3464. border-color: transparent;
  3465. background: none;
  3466. box-shadow: none;
  3467. text-shadow: none;
  3468. }
  3469. /* Color */
  3470. .uk-button-link {
  3471. color: #1fa2d6;
  3472. }
  3473. .uk-button-link:hover,
  3474. .uk-button-link:focus,
  3475. .uk-button-link:active,
  3476. .uk-button-link.uk-active {
  3477. color: #0074a2;
  3478. text-decoration: underline;
  3479. }
  3480. .uk-button-link:disabled {
  3481. color: #999999;
  3482. }
  3483. /* Focus */
  3484. .uk-button-link:focus {
  3485. outline: 1px dotted;
  3486. }
  3487. /* Size modifiers
  3488. ========================================================================== */
  3489. .uk-button-mini {
  3490. min-height: 20px;
  3491. padding: 0 6px;
  3492. line-height: 18px;
  3493. font-size: 11px;
  3494. }
  3495. .uk-button-small {
  3496. min-height: 25px;
  3497. padding: 0 10px;
  3498. line-height: 23px;
  3499. font-size: 12px;
  3500. }
  3501. .uk-button-large {
  3502. min-height: 40px;
  3503. padding: 0 15px;
  3504. line-height: 38px;
  3505. font-size: 16px;
  3506. border-radius: 5px;
  3507. }
  3508. /* Sub-object `uk-button-group`
  3509. ========================================================================== */
  3510. /*
  3511. * 1. Behave like buttons
  3512. * 2. Create position context for dropdowns
  3513. * 3. Remove whitespace between child elements when using `inline-block`
  3514. * 4. Prevent buttons from wrapping
  3515. * 5. Remove whitespace between child elements when using `inline-block`
  3516. */
  3517. .uk-button-group {
  3518. /* 1 */
  3519. display: inline-block;
  3520. vertical-align: middle;
  3521. /* 2 */
  3522. position: relative;
  3523. /* 3 */
  3524. font-size: 0.001px;
  3525. /* 4 */
  3526. white-space: nowrap;
  3527. }
  3528. .uk-button-group > * {
  3529. display: inline-block;
  3530. }
  3531. /* 5 */
  3532. .uk-button-group .uk-button {
  3533. vertical-align: top;
  3534. }
  3535. /* Sub-object: `uk-button-dropdown`
  3536. ========================================================================== */
  3537. /*
  3538. * 1. Behave like buttons
  3539. * 2. Create position context for dropdowns
  3540. */
  3541. .uk-button-dropdown {
  3542. /* 1 */
  3543. display: inline-block;
  3544. vertical-align: middle;
  3545. /* 2 */
  3546. position: relative;
  3547. }
  3548. /* Sub-object `uk-button-group`
  3549. ========================================================================== */
  3550. /*
  3551. * Reset border-radius
  3552. */
  3553. .uk-button-group > .uk-button:not(:first-child):not(:last-child),
  3554. .uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
  3555. border-radius: 0;
  3556. }
  3557. .uk-button-group > .uk-button:first-child,
  3558. .uk-button-group > div:first-child .uk-button {
  3559. border-top-right-radius: 0;
  3560. border-bottom-right-radius: 0;
  3561. }
  3562. .uk-button-group > .uk-button:last-child,
  3563. .uk-button-group > div:last-child .uk-button {
  3564. border-top-left-radius: 0;
  3565. border-bottom-left-radius: 0;
  3566. }
  3567. /*
  3568. * Collapse border
  3569. */
  3570. .uk-button-group > .uk-button:nth-child(n+2),
  3571. .uk-button-group > div:nth-child(n+2) .uk-button {
  3572. margin-left: -1px;
  3573. }
  3574. /*
  3575. * Create position context to superimpose the successor elements border
  3576. * Known issue: If you use an `a` element as button and an icon inside,
  3577. * the active state will not work if you click the icon inside the button
  3578. * Workaround: Just use a `button` or `input` element as button
  3579. */
  3580. .uk-button-group .uk-button:hover,
  3581. .uk-button-group .uk-button:active,
  3582. .uk-button-group .uk-button.uk-active {
  3583. position: relative;
  3584. }
  3585. /* ========================================================================
  3586. Component: Icon
  3587. ========================================================================== */
  3588. @font-face {
  3589. font-family: 'FontAwesome';
  3590. src: url("../warp/vendor/uikit/fonts/fontawesome-webfont.woff2") format('woff2'), url("../warp/vendor/uikit/fonts/fontawesome-webfont.woff") format("woff"), url("../warp/vendor/uikit/fonts/fontawesome-webfont.ttf") format("truetype");
  3591. font-weight: normal;
  3592. font-style: normal;
  3593. }
  3594. /*
  3595. * 1. Allow margin
  3596. * 2. Prevent inherit font style
  3597. * 4. Correct line-height
  3598. * 5. Better font rendering
  3599. * 6. Remove `text-decoration` for anchors
  3600. */
  3601. [class*='uk-icon-'] {
  3602. font-family: FontAwesome;
  3603. /* 1 */
  3604. display: inline-block;
  3605. /* 2 */
  3606. font-weight: normal;
  3607. font-style: normal;
  3608. /* 4 */
  3609. line-height: 1;
  3610. /* 5 */
  3611. -webkit-font-smoothing: antialiased;
  3612. -moz-osx-font-smoothing: grayscale;
  3613. }
  3614. /* 6 */
  3615. [class*='uk-icon-'],
  3616. [class*='uk-icon-']:hover,
  3617. [class*='uk-icon-']:focus {
  3618. text-decoration: none;
  3619. }
  3620. /* Size modifiers
  3621. ========================================================================== */
  3622. .uk-icon-small {
  3623. font-size: 150%;
  3624. vertical-align: -10%;
  3625. }
  3626. .uk-icon-medium {
  3627. font-size: 200%;
  3628. vertical-align: -16%;
  3629. }
  3630. .uk-icon-large {
  3631. font-size: 250%;
  3632. vertical-align: -22%;
  3633. }
  3634. /* Modifier: `uk-icon-justify`
  3635. ========================================================================== */
  3636. .uk-icon-justify {
  3637. width: 1em;
  3638. text-align: center;
  3639. }
  3640. /* Modifier: `uk-icon-spin`
  3641. ========================================================================== */
  3642. .uk-icon-spin {
  3643. display: inline-block;
  3644. -webkit-animation: uk-rotate 2s infinite linear;
  3645. animation: uk-rotate 2s infinite linear;
  3646. }
  3647. /* Modifier: `uk-icon-hover`
  3648. ========================================================================== */
  3649. .uk-icon-hover {
  3650. color: #999999;
  3651. }
  3652. /*
  3653. * Hover
  3654. */
  3655. .uk-icon-hover:hover {
  3656. color: #444444;
  3657. }
  3658. /* Modifier: `uk-icon-button`
  3659. ========================================================================== */
  3660. .uk-icon-button {
  3661. box-sizing: border-box;
  3662. display: inline-block;
  3663. width: 35px;
  3664. height: 35px;
  3665. border-radius: 100%;
  3666. background: #f7f7f7;
  3667. line-height: 35px;
  3668. color: #444444;
  3669. font-size: 18px;
  3670. text-align: center;
  3671. border: 1px solid #cccccc;
  3672. border-bottom-color: #bbbbbb;
  3673. background-origin: border-box;
  3674. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  3675. background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  3676. text-shadow: 0 1px 0 #ffffff;
  3677. }
  3678. /*
  3679. * Hover
  3680. * 1. Apply hover style also to focus state
  3681. * 2. Remove default focus style
  3682. */
  3683. .uk-icon-button:hover,
  3684. .uk-icon-button:focus {
  3685. background-color: #fafafa;
  3686. color: #0074a2;
  3687. /* 2 */
  3688. outline: none;
  3689. background-image: none;
  3690. }
  3691. /* Active */
  3692. .uk-icon-button:active {
  3693. background-color: #f5f5f5;
  3694. color: #444444;
  3695. border-color: #cccccc;
  3696. border-top-color: #bbbbbb;
  3697. background-image: none;
  3698. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  3699. }
  3700. /* Icon mapping
  3701. ========================================================================== */
  3702. .uk-icon-glass:before {
  3703. content: "\f000";
  3704. }
  3705. .uk-icon-music:before {
  3706. content: "\f001";
  3707. }
  3708. .uk-icon-search:before {
  3709. content: "\f002";
  3710. }
  3711. .uk-icon-envelope-o:before {
  3712. content: "\f003";
  3713. }
  3714. .uk-icon-heart:before {
  3715. content: "\f004";
  3716. }
  3717. .uk-icon-star:before {
  3718. content: "\f005";
  3719. }
  3720. .uk-icon-star-o:before {
  3721. content: "\f006";
  3722. }
  3723. .uk-icon-user:before {
  3724. content: "\f007";
  3725. }
  3726. .uk-icon-film:before {
  3727. content: "\f008";
  3728. }
  3729. .uk-icon-th-large:before {
  3730. content: "\f009";
  3731. }
  3732. .uk-icon-th:before {
  3733. content: "\f00a";
  3734. }
  3735. .uk-icon-th-list:before {
  3736. content: "\f00b";
  3737. }
  3738. .uk-icon-check:before {
  3739. content: "\f00c";
  3740. }
  3741. .uk-icon-remove:before,
  3742. .uk-icon-close:before,
  3743. .uk-icon-times:before {
  3744. content: "\f00d";
  3745. }
  3746. .uk-icon-search-plus:before {
  3747. content: "\f00e";
  3748. }
  3749. .uk-icon-search-minus:before {
  3750. content: "\f010";
  3751. }
  3752. .uk-icon-power-off:before {
  3753. content: "\f011";
  3754. }
  3755. .uk-icon-signal:before {
  3756. content: "\f012";
  3757. }
  3758. .uk-icon-gear:before,
  3759. .uk-icon-cog:before {
  3760. content: "\f013";
  3761. }
  3762. .uk-icon-trash-o:before {
  3763. content: "\f014";
  3764. }
  3765. .uk-icon-home:before {
  3766. content: "\f015";
  3767. }
  3768. .uk-icon-file-o:before {
  3769. content: "\f016";
  3770. }
  3771. .uk-icon-clock-o:before {
  3772. content: "\f017";
  3773. }
  3774. .uk-icon-road:before {
  3775. content: "\f018";
  3776. }
  3777. .uk-icon-download:before {
  3778. content: "\f019";
  3779. }
  3780. .uk-icon-arrow-circle-o-down:before {
  3781. content: "\f01a";
  3782. }
  3783. .uk-icon-arrow-circle-o-up:before {
  3784. content: "\f01b";
  3785. }
  3786. .uk-icon-inbox:before {
  3787. content: "\f01c";
  3788. }
  3789. .uk-icon-play-circle-o:before {
  3790. content: "\f01d";
  3791. }
  3792. .uk-icon-rotate-right:before,
  3793. .uk-icon-repeat:before {
  3794. content: "\f01e";
  3795. }
  3796. .uk-icon-refresh:before {
  3797. content: "\f021";
  3798. }
  3799. .uk-icon-list-alt:before {
  3800. content: "\f022";
  3801. }
  3802. .uk-icon-lock:before {
  3803. content: "\f023";
  3804. }
  3805. .uk-icon-flag:before {
  3806. content: "\f024";
  3807. }
  3808. .uk-icon-headphones:before {
  3809. content: "\f025";
  3810. }
  3811. .uk-icon-volume-off:before {
  3812. content: "\f026";
  3813. }
  3814. .uk-icon-volume-down:before {
  3815. content: "\f027";
  3816. }
  3817. .uk-icon-volume-up:before {
  3818. content: "\f028";
  3819. }
  3820. .uk-icon-qrcode:before {
  3821. content: "\f029";
  3822. }
  3823. .uk-icon-barcode:before {
  3824. content: "\f02a";
  3825. }
  3826. .uk-icon-tag:before {
  3827. content: "\f02b";
  3828. }
  3829. .uk-icon-tags:before {
  3830. content: "\f02c";
  3831. }
  3832. .uk-icon-book:before {
  3833. content: "\f02d";
  3834. }
  3835. .uk-icon-bookmark:before {
  3836. content: "\f02e";
  3837. }
  3838. .uk-icon-print:before {
  3839. content: "\f02f";
  3840. }
  3841. .uk-icon-camera:before {
  3842. content: "\f030";
  3843. }
  3844. .uk-icon-font:before {
  3845. content: "\f031";
  3846. }
  3847. .uk-icon-bold:before {
  3848. content: "\f032";
  3849. }
  3850. .uk-icon-italic:before {
  3851. content: "\f033";
  3852. }
  3853. .uk-icon-text-height:before {
  3854. content: "\f034";
  3855. }
  3856. .uk-icon-text-width:before {
  3857. content: "\f035";
  3858. }
  3859. .uk-icon-align-left:before {
  3860. content: "\f036";
  3861. }
  3862. .uk-icon-align-center:before {
  3863. content: "\f037";
  3864. }
  3865. .uk-icon-align-right:before {
  3866. content: "\f038";
  3867. }
  3868. .uk-icon-align-justify:before {
  3869. content: "\f039";
  3870. }
  3871. .uk-icon-list:before {
  3872. content: "\f03a";
  3873. }
  3874. .uk-icon-dedent:before,
  3875. .uk-icon-outdent:before {
  3876. content: "\f03b";
  3877. }
  3878. .uk-icon-indent:before {
  3879. content: "\f03c";
  3880. }
  3881. .uk-icon-video-camera:before {
  3882. content: "\f03d";
  3883. }
  3884. .uk-icon-photo:before,
  3885. .uk-icon-image:before,
  3886. .uk-icon-picture-o:before {
  3887. content: "\f03e";
  3888. }
  3889. .uk-icon-pencil:before {
  3890. content: "\f040";
  3891. }
  3892. .uk-icon-map-marker:before {
  3893. content: "\f041";
  3894. }
  3895. .uk-icon-adjust:before {
  3896. content: "\f042";
  3897. }
  3898. .uk-icon-tint:before {
  3899. content: "\f043";
  3900. }
  3901. .uk-icon-edit:before,
  3902. .uk-icon-pencil-square-o:before {
  3903. content: "\f044";
  3904. }
  3905. .uk-icon-share-square-o:before {
  3906. content: "\f045";
  3907. }
  3908. .uk-icon-check-square-o:before {
  3909. content: "\f046";
  3910. }
  3911. .uk-icon-arrows:before {
  3912. content: "\f047";
  3913. }
  3914. .uk-icon-step-backward:before {
  3915. content: "\f048";
  3916. }
  3917. .uk-icon-fast-backward:before {
  3918. content: "\f049";
  3919. }
  3920. .uk-icon-backward:before {
  3921. content: "\f04a";
  3922. }
  3923. .uk-icon-play:before {
  3924. content: "\f04b";
  3925. }
  3926. .uk-icon-pause:before {
  3927. content: "\f04c";
  3928. }
  3929. .uk-icon-stop:before {
  3930. content: "\f04d";
  3931. }
  3932. .uk-icon-forward:before {
  3933. content: "\f04e";
  3934. }
  3935. .uk-icon-fast-forward:before {
  3936. content: "\f050";
  3937. }
  3938. .uk-icon-step-forward:before {
  3939. content: "\f051";
  3940. }
  3941. .uk-icon-eject:before {
  3942. content: "\f052";
  3943. }
  3944. .uk-icon-chevron-left:before {
  3945. content: "\f053";
  3946. }
  3947. .uk-icon-chevron-right:before {
  3948. content: "\f054";
  3949. }
  3950. .uk-icon-plus-circle:before {
  3951. content: "\f055";
  3952. }
  3953. .uk-icon-minus-circle:before {
  3954. content: "\f056";
  3955. }
  3956. .uk-icon-times-circle:before {
  3957. content: "\f057";
  3958. }
  3959. .uk-icon-check-circle:before {
  3960. content: "\f058";
  3961. }
  3962. .uk-icon-question-circle:before {
  3963. content: "\f059";
  3964. }
  3965. .uk-icon-info-circle:before {
  3966. content: "\f05a";
  3967. }
  3968. .uk-icon-crosshairs:before {
  3969. content: "\f05b";
  3970. }
  3971. .uk-icon-times-circle-o:before {
  3972. content: "\f05c";
  3973. }
  3974. .uk-icon-check-circle-o:before {
  3975. content: "\f05d";
  3976. }
  3977. .uk-icon-ban:before {
  3978. content: "\f05e";
  3979. }
  3980. .uk-icon-arrow-left:before {
  3981. content: "\f060";
  3982. }
  3983. .uk-icon-arrow-right:before {
  3984. content: "\f061";
  3985. }
  3986. .uk-icon-arrow-up:before {
  3987. content: "\f062";
  3988. }
  3989. .uk-icon-arrow-down:before {
  3990. content: "\f063";
  3991. }
  3992. .uk-icon-mail-forward:before,
  3993. .uk-icon-share:before {
  3994. content: "\f064";
  3995. }
  3996. .uk-icon-expand:before {
  3997. content: "\f065";
  3998. }
  3999. .uk-icon-compress:before {
  4000. content: "\f066";
  4001. }
  4002. .uk-icon-plus:before {
  4003. content: "\f067";
  4004. }
  4005. .uk-icon-minus:before {
  4006. content: "\f068";
  4007. }
  4008. .uk-icon-asterisk:before {
  4009. content: "\f069";
  4010. }
  4011. .uk-icon-exclamation-circle:before {
  4012. content: "\f06a";
  4013. }
  4014. .uk-icon-gift:before {
  4015. content: "\f06b";
  4016. }
  4017. .uk-icon-leaf:before {
  4018. content: "\f06c";
  4019. }
  4020. .uk-icon-fire:before {
  4021. content: "\f06d";
  4022. }
  4023. .uk-icon-eye:before {
  4024. content: "\f06e";
  4025. }
  4026. .uk-icon-eye-slash:before {
  4027. content: "\f070";
  4028. }
  4029. .uk-icon-warning:before,
  4030. .uk-icon-exclamation-triangle:before {
  4031. content: "\f071";
  4032. }
  4033. .uk-icon-plane:before {
  4034. content: "\f072";
  4035. }
  4036. .uk-icon-calendar:before {
  4037. content: "\f073";
  4038. }
  4039. .uk-icon-random:before {
  4040. content: "\f074";
  4041. }
  4042. .uk-icon-comment:before {
  4043. content: "\f075";
  4044. }
  4045. .uk-icon-magnet:before {
  4046. content: "\f076";
  4047. }
  4048. .uk-icon-chevron-up:before {
  4049. content: "\f077";
  4050. }
  4051. .uk-icon-chevron-down:before {
  4052. content: "\f078";
  4053. }
  4054. .uk-icon-retweet:before {
  4055. content: "\f079";
  4056. }
  4057. .uk-icon-shopping-cart:before {
  4058. content: "\f07a";
  4059. }
  4060. .uk-icon-folder:before {
  4061. content: "\f07b";
  4062. }
  4063. .uk-icon-folder-open:before {
  4064. content: "\f07c";
  4065. }
  4066. .uk-icon-arrows-v:before {
  4067. content: "\f07d";
  4068. }
  4069. .uk-icon-arrows-h:before {
  4070. content: "\f07e";
  4071. }
  4072. .uk-icon-bar-chart-o:before,
  4073. .uk-icon-bar-chart:before {
  4074. content: "\f080";
  4075. }
  4076. .uk-icon-twitter-square:before {
  4077. content: "\f081";
  4078. }
  4079. .uk-icon-facebook-square:before {
  4080. content: "\f082";
  4081. }
  4082. .uk-icon-camera-retro:before {
  4083. content: "\f083";
  4084. }
  4085. .uk-icon-key:before {
  4086. content: "\f084";
  4087. }
  4088. .uk-icon-gears:before,
  4089. .uk-icon-cogs:before {
  4090. content: "\f085";
  4091. }
  4092. .uk-icon-comments:before {
  4093. content: "\f086";
  4094. }
  4095. .uk-icon-thumbs-o-up:before {
  4096. content: "\f087";
  4097. }
  4098. .uk-icon-thumbs-o-down:before {
  4099. content: "\f088";
  4100. }
  4101. .uk-icon-star-half:before {
  4102. content: "\f089";
  4103. }
  4104. .uk-icon-heart-o:before {
  4105. content: "\f08a";
  4106. }
  4107. .uk-icon-sign-out:before {
  4108. content: "\f08b";
  4109. }
  4110. .uk-icon-linkedin-square:before {
  4111. content: "\f08c";
  4112. }
  4113. .uk-icon-thumb-tack:before {
  4114. content: "\f08d";
  4115. }
  4116. .uk-icon-external-link:before {
  4117. content: "\f08e";
  4118. }
  4119. .uk-icon-sign-in:before {
  4120. content: "\f090";
  4121. }
  4122. .uk-icon-trophy:before {
  4123. content: "\f091";
  4124. }
  4125. .uk-icon-github-square:before {
  4126. content: "\f092";
  4127. }
  4128. .uk-icon-upload:before {
  4129. content: "\f093";
  4130. }
  4131. .uk-icon-lemon-o:before {
  4132. content: "\f094";
  4133. }
  4134. .uk-icon-phone:before {
  4135. content: "\f095";
  4136. }
  4137. .uk-icon-square-o:before {
  4138. content: "\f096";
  4139. }
  4140. .uk-icon-bookmark-o:before {
  4141. content: "\f097";
  4142. }
  4143. .uk-icon-phone-square:before {
  4144. content: "\f098";
  4145. }
  4146. .uk-icon-twitter:before {
  4147. content: "\f099";
  4148. }
  4149. .uk-icon-facebook-f:before,
  4150. .uk-icon-facebook:before {
  4151. content: "\f09a";
  4152. }
  4153. .uk-icon-github:before {
  4154. content: "\f09b";
  4155. }
  4156. .uk-icon-unlock:before {
  4157. content: "\f09c";
  4158. }
  4159. .uk-icon-credit-card:before {
  4160. content: "\f09d";
  4161. }
  4162. .uk-icon-rss:before {
  4163. content: "\f09e";
  4164. }
  4165. .uk-icon-hdd-o:before {
  4166. content: "\f0a0";
  4167. }
  4168. .uk-icon-bullhorn:before {
  4169. content: "\f0a1";
  4170. }
  4171. .uk-icon-bell:before {
  4172. content: "\f0f3";
  4173. }
  4174. .uk-icon-certificate:before {
  4175. content: "\f0a3";
  4176. }
  4177. .uk-icon-hand-o-right:before {
  4178. content: "\f0a4";
  4179. }
  4180. .uk-icon-hand-o-left:before {
  4181. content: "\f0a5";
  4182. }
  4183. .uk-icon-hand-o-up:before {
  4184. content: "\f0a6";
  4185. }
  4186. .uk-icon-hand-o-down:before {
  4187. content: "\f0a7";
  4188. }
  4189. .uk-icon-arrow-circle-left:before {
  4190. content: "\f0a8";
  4191. }
  4192. .uk-icon-arrow-circle-right:before {
  4193. content: "\f0a9";
  4194. }
  4195. .uk-icon-arrow-circle-up:before {
  4196. content: "\f0aa";
  4197. }
  4198. .uk-icon-arrow-circle-down:before {
  4199. content: "\f0ab";
  4200. }
  4201. .uk-icon-globe:before {
  4202. content: "\f0ac";
  4203. }
  4204. .uk-icon-wrench:before {
  4205. content: "\f0ad";
  4206. }
  4207. .uk-icon-tasks:before {
  4208. content: "\f0ae";
  4209. }
  4210. .uk-icon-filter:before {
  4211. content: "\f0b0";
  4212. }
  4213. .uk-icon-briefcase:before {
  4214. content: "\f0b1";
  4215. }
  4216. .uk-icon-arrows-alt:before {
  4217. content: "\f0b2";
  4218. }
  4219. .uk-icon-group:before,
  4220. .uk-icon-users:before {
  4221. content: "\f0c0";
  4222. }
  4223. .uk-icon-chain:before,
  4224. .uk-icon-link:before {
  4225. content: "\f0c1";
  4226. }
  4227. .uk-icon-cloud:before {
  4228. content: "\f0c2";
  4229. }
  4230. .uk-icon-flask:before {
  4231. content: "\f0c3";
  4232. }
  4233. .uk-icon-cut:before,
  4234. .uk-icon-scissors:before {
  4235. content: "\f0c4";
  4236. }
  4237. .uk-icon-copy:before,
  4238. .uk-icon-files-o:before {
  4239. content: "\f0c5";
  4240. }
  4241. .uk-icon-paperclip:before {
  4242. content: "\f0c6";
  4243. }
  4244. .uk-icon-save:before,
  4245. .uk-icon-floppy-o:before {
  4246. content: "\f0c7";
  4247. }
  4248. .uk-icon-square:before {
  4249. content: "\f0c8";
  4250. }
  4251. .uk-icon-navicon:before,
  4252. .uk-icon-reorder:before,
  4253. .uk-icon-bars:before {
  4254. content: "\f0c9";
  4255. }
  4256. .uk-icon-list-ul:before {
  4257. content: "\f0ca";
  4258. }
  4259. .uk-icon-list-ol:before {
  4260. content: "\f0cb";
  4261. }
  4262. .uk-icon-strikethrough:before {
  4263. content: "\f0cc";
  4264. }
  4265. .uk-icon-underline:before {
  4266. content: "\f0cd";
  4267. }
  4268. .uk-icon-table:before {
  4269. content: "\f0ce";
  4270. }
  4271. .uk-icon-magic:before {
  4272. content: "\f0d0";
  4273. }
  4274. .uk-icon-truck:before {
  4275. content: "\f0d1";
  4276. }
  4277. .uk-icon-pinterest:before {
  4278. content: "\f0d2";
  4279. }
  4280. .uk-icon-pinterest-square:before {
  4281. content: "\f0d3";
  4282. }
  4283. .uk-icon-google-plus-square:before {
  4284. content: "\f0d4";
  4285. }
  4286. .uk-icon-google-plus:before {
  4287. content: "\f0d5";
  4288. }
  4289. .uk-icon-money:before {
  4290. content: "\f0d6";
  4291. }
  4292. .uk-icon-caret-down:before {
  4293. content: "\f0d7";
  4294. }
  4295. .uk-icon-caret-up:before {
  4296. content: "\f0d8";
  4297. }
  4298. .uk-icon-caret-left:before {
  4299. content: "\f0d9";
  4300. }
  4301. .uk-icon-caret-right:before {
  4302. content: "\f0da";
  4303. }
  4304. .uk-icon-columns:before {
  4305. content: "\f0db";
  4306. }
  4307. .uk-icon-unsorted:before,
  4308. .uk-icon-sort:before {
  4309. content: "\f0dc";
  4310. }
  4311. .uk-icon-sort-down:before,
  4312. .uk-icon-sort-desc:before {
  4313. content: "\f0dd";
  4314. }
  4315. .uk-icon-sort-up:before,
  4316. .uk-icon-sort-asc:before {
  4317. content: "\f0de";
  4318. }
  4319. .uk-icon-envelope:before {
  4320. content: "\f0e0";
  4321. }
  4322. .uk-icon-linkedin:before {
  4323. content: "\f0e1";
  4324. }
  4325. .uk-icon-rotate-left:before,
  4326. .uk-icon-undo:before {
  4327. content: "\f0e2";
  4328. }
  4329. .uk-icon-legal:before,
  4330. .uk-icon-gavel:before {
  4331. content: "\f0e3";
  4332. }
  4333. .uk-icon-dashboard:before,
  4334. .uk-icon-tachometer:before {
  4335. content: "\f0e4";
  4336. }
  4337. .uk-icon-comment-o:before {
  4338. content: "\f0e5";
  4339. }
  4340. .uk-icon-comments-o:before {
  4341. content: "\f0e6";
  4342. }
  4343. .uk-icon-flash:before,
  4344. .uk-icon-bolt:before {
  4345. content: "\f0e7";
  4346. }
  4347. .uk-icon-sitemap:before {
  4348. content: "\f0e8";
  4349. }
  4350. .uk-icon-umbrella:before {
  4351. content: "\f0e9";
  4352. }
  4353. .uk-icon-paste:before,
  4354. .uk-icon-clipboard:before {
  4355. content: "\f0ea";
  4356. }
  4357. .uk-icon-lightbulb-o:before {
  4358. content: "\f0eb";
  4359. }
  4360. .uk-icon-exchange:before {
  4361. content: "\f0ec";
  4362. }
  4363. .uk-icon-cloud-download:before {
  4364. content: "\f0ed";
  4365. }
  4366. .uk-icon-cloud-upload:before {
  4367. content: "\f0ee";
  4368. }
  4369. .uk-icon-user-md:before {
  4370. content: "\f0f0";
  4371. }
  4372. .uk-icon-stethoscope:before {
  4373. content: "\f0f1";
  4374. }
  4375. .uk-icon-suitcase:before {
  4376. content: "\f0f2";
  4377. }
  4378. .uk-icon-bell-o:before {
  4379. content: "\f0a2";
  4380. }
  4381. .uk-icon-coffee:before {
  4382. content: "\f0f4";
  4383. }
  4384. .uk-icon-cutlery:before {
  4385. content: "\f0f5";
  4386. }
  4387. .uk-icon-file-text-o:before {
  4388. content: "\f0f6";
  4389. }
  4390. .uk-icon-building-o:before {
  4391. content: "\f0f7";
  4392. }
  4393. .uk-icon-hospital-o:before {
  4394. content: "\f0f8";
  4395. }
  4396. .uk-icon-ambulance:before {
  4397. content: "\f0f9";
  4398. }
  4399. .uk-icon-medkit:before {
  4400. content: "\f0fa";
  4401. }
  4402. .uk-icon-fighter-jet:before {
  4403. content: "\f0fb";
  4404. }
  4405. .uk-icon-beer:before {
  4406. content: "\f0fc";
  4407. }
  4408. .uk-icon-h-square:before {
  4409. content: "\f0fd";
  4410. }
  4411. .uk-icon-plus-square:before {
  4412. content: "\f0fe";
  4413. }
  4414. .uk-icon-angle-double-left:before {
  4415. content: "\f100";
  4416. }
  4417. .uk-icon-angle-double-right:before {
  4418. content: "\f101";
  4419. }
  4420. .uk-icon-angle-double-up:before {
  4421. content: "\f102";
  4422. }
  4423. .uk-icon-angle-double-down:before {
  4424. content: "\f103";
  4425. }
  4426. .uk-icon-angle-left:before {
  4427. content: "\f104";
  4428. }
  4429. .uk-icon-angle-right:before {
  4430. content: "\f105";
  4431. }
  4432. .uk-icon-angle-up:before {
  4433. content: "\f106";
  4434. }
  4435. .uk-icon-angle-down:before {
  4436. content: "\f107";
  4437. }
  4438. .uk-icon-desktop:before {
  4439. content: "\f108";
  4440. }
  4441. .uk-icon-laptop:before {
  4442. content: "\f109";
  4443. }
  4444. .uk-icon-tablet:before {
  4445. content: "\f10a";
  4446. }
  4447. .uk-icon-mobile-phone:before,
  4448. .uk-icon-mobile:before {
  4449. content: "\f10b";
  4450. }
  4451. .uk-icon-circle-o:before {
  4452. content: "\f10c";
  4453. }
  4454. .uk-icon-quote-left:before {
  4455. content: "\f10d";
  4456. }
  4457. .uk-icon-quote-right:before {
  4458. content: "\f10e";
  4459. }
  4460. .uk-icon-spinner:before {
  4461. content: "\f110";
  4462. }
  4463. .uk-icon-circle:before {
  4464. content: "\f111";
  4465. }
  4466. .uk-icon-mail-reply:before,
  4467. .uk-icon-reply:before {
  4468. content: "\f112";
  4469. }
  4470. .uk-icon-github-alt:before {
  4471. content: "\f113";
  4472. }
  4473. .uk-icon-folder-o:before {
  4474. content: "\f114";
  4475. }
  4476. .uk-icon-folder-open-o:before {
  4477. content: "\f115";
  4478. }
  4479. .uk-icon-smile-o:before {
  4480. content: "\f118";
  4481. }
  4482. .uk-icon-frown-o:before {
  4483. content: "\f119";
  4484. }
  4485. .uk-icon-meh-o:before {
  4486. content: "\f11a";
  4487. }
  4488. .uk-icon-gamepad:before {
  4489. content: "\f11b";
  4490. }
  4491. .uk-icon-keyboard-o:before {
  4492. content: "\f11c";
  4493. }
  4494. .uk-icon-flag-o:before {
  4495. content: "\f11d";
  4496. }
  4497. .uk-icon-flag-checkered:before {
  4498. content: "\f11e";
  4499. }
  4500. .uk-icon-terminal:before {
  4501. content: "\f120";
  4502. }
  4503. .uk-icon-code:before {
  4504. content: "\f121";
  4505. }
  4506. .uk-icon-mail-reply-all:before,
  4507. .uk-icon-reply-all:before {
  4508. content: "\f122";
  4509. }
  4510. .uk-icon-star-half-empty:before,
  4511. .uk-icon-star-half-full:before,
  4512. .uk-icon-star-half-o:before {
  4513. content: "\f123";
  4514. }
  4515. .uk-icon-location-arrow:before {
  4516. content: "\f124";
  4517. }
  4518. .uk-icon-crop:before {
  4519. content: "\f125";
  4520. }
  4521. .uk-icon-code-fork:before {
  4522. content: "\f126";
  4523. }
  4524. .uk-icon-unlink:before,
  4525. .uk-icon-chain-broken:before {
  4526. content: "\f127";
  4527. }
  4528. .uk-icon-question:before {
  4529. content: "\f128";
  4530. }
  4531. .uk-icon-info:before {
  4532. content: "\f129";
  4533. }
  4534. .uk-icon-exclamation:before {
  4535. content: "\f12a";
  4536. }
  4537. .uk-icon-superscript:before {
  4538. content: "\f12b";
  4539. }
  4540. .uk-icon-subscript:before {
  4541. content: "\f12c";
  4542. }
  4543. .uk-icon-eraser:before {
  4544. content: "\f12d";
  4545. }
  4546. .uk-icon-puzzle-piece:before {
  4547. content: "\f12e";
  4548. }
  4549. .uk-icon-microphone:before {
  4550. content: "\f130";
  4551. }
  4552. .uk-icon-microphone-slash:before {
  4553. content: "\f131";
  4554. }
  4555. .uk-icon-shield:before {
  4556. content: "\f132";
  4557. }
  4558. .uk-icon-calendar-o:before {
  4559. content: "\f133";
  4560. }
  4561. .uk-icon-fire-extinguisher:before {
  4562. content: "\f134";
  4563. }
  4564. .uk-icon-rocket:before {
  4565. content: "\f135";
  4566. }
  4567. .uk-icon-maxcdn:before {
  4568. content: "\f136";
  4569. }
  4570. .uk-icon-chevron-circle-left:before {
  4571. content: "\f137";
  4572. }
  4573. .uk-icon-chevron-circle-right:before {
  4574. content: "\f138";
  4575. }
  4576. .uk-icon-chevron-circle-up:before {
  4577. content: "\f139";
  4578. }
  4579. .uk-icon-chevron-circle-down:before {
  4580. content: "\f13a";
  4581. }
  4582. .uk-icon-html5:before {
  4583. content: "\f13b";
  4584. }
  4585. .uk-icon-css3:before {
  4586. content: "\f13c";
  4587. }
  4588. .uk-icon-anchor:before {
  4589. content: "\f13d";
  4590. }
  4591. .uk-icon-unlock-alt:before {
  4592. content: "\f13e";
  4593. }
  4594. .uk-icon-bullseye:before {
  4595. content: "\f140";
  4596. }
  4597. .uk-icon-ellipsis-h:before {
  4598. content: "\f141";
  4599. }
  4600. .uk-icon-ellipsis-v:before {
  4601. content: "\f142";
  4602. }
  4603. .uk-icon-rss-square:before {
  4604. content: "\f143";
  4605. }
  4606. .uk-icon-play-circle:before {
  4607. content: "\f144";
  4608. }
  4609. .uk-icon-ticket:before {
  4610. content: "\f145";
  4611. }
  4612. .uk-icon-minus-square:before {
  4613. content: "\f146";
  4614. }
  4615. .uk-icon-minus-square-o:before {
  4616. content: "\f147";
  4617. }
  4618. .uk-icon-level-up:before {
  4619. content: "\f148";
  4620. }
  4621. .uk-icon-level-down:before {
  4622. content: "\f149";
  4623. }
  4624. .uk-icon-check-square:before {
  4625. content: "\f14a";
  4626. }
  4627. .uk-icon-pencil-square:before {
  4628. content: "\f14b";
  4629. }
  4630. .uk-icon-external-link-square:before {
  4631. content: "\f14c";
  4632. }
  4633. .uk-icon-share-square:before {
  4634. content: "\f14d";
  4635. }
  4636. .uk-icon-compass:before {
  4637. content: "\f14e";
  4638. }
  4639. .uk-icon-toggle-down:before,
  4640. .uk-icon-caret-square-o-down:before {
  4641. content: "\f150";
  4642. }
  4643. .uk-icon-toggle-up:before,
  4644. .uk-icon-caret-square-o-up:before {
  4645. content: "\f151";
  4646. }
  4647. .uk-icon-toggle-right:before,
  4648. .uk-icon-caret-square-o-right:before {
  4649. content: "\f152";
  4650. }
  4651. .uk-icon-euro:before,
  4652. .uk-icon-eur:before {
  4653. content: "\f153";
  4654. }
  4655. .uk-icon-gbp:before {
  4656. content: "\f154";
  4657. }
  4658. .uk-icon-dollar:before,
  4659. .uk-icon-usd:before {
  4660. content: "\f155";
  4661. }
  4662. .uk-icon-rupee:before,
  4663. .uk-icon-inr:before {
  4664. content: "\f156";
  4665. }
  4666. .uk-icon-cny:before,
  4667. .uk-icon-rmb:before,
  4668. .uk-icon-yen:before,
  4669. .uk-icon-jpy:before {
  4670. content: "\f157";
  4671. }
  4672. .uk-icon-ruble:before,
  4673. .uk-icon-rouble:before,
  4674. .uk-icon-rub:before {
  4675. content: "\f158";
  4676. }
  4677. .uk-icon-won:before,
  4678. .uk-icon-krw:before {
  4679. content: "\f159";
  4680. }
  4681. .uk-icon-bitcoin:before,
  4682. .uk-icon-btc:before {
  4683. content: "\f15a";
  4684. }
  4685. .uk-icon-file:before {
  4686. content: "\f15b";
  4687. }
  4688. .uk-icon-file-text:before {
  4689. content: "\f15c";
  4690. }
  4691. .uk-icon-sort-alpha-asc:before {
  4692. content: "\f15d";
  4693. }
  4694. .uk-icon-sort-alpha-desc:before {
  4695. content: "\f15e";
  4696. }
  4697. .uk-icon-sort-amount-asc:before {
  4698. content: "\f160";
  4699. }
  4700. .uk-icon-sort-amount-desc:before {
  4701. content: "\f161";
  4702. }
  4703. .uk-icon-sort-numeric-asc:before {
  4704. content: "\f162";
  4705. }
  4706. .uk-icon-sort-numeric-desc:before {
  4707. content: "\f163";
  4708. }
  4709. .uk-icon-thumbs-up:before {
  4710. content: "\f164";
  4711. }
  4712. .uk-icon-thumbs-down:before {
  4713. content: "\f165";
  4714. }
  4715. .uk-icon-youtube-square:before {
  4716. content: "\f166";
  4717. }
  4718. .uk-icon-youtube:before {
  4719. content: "\f167";
  4720. }
  4721. .uk-icon-xing:before {
  4722. content: "\f168";
  4723. }
  4724. .uk-icon-xing-square:before {
  4725. content: "\f169";
  4726. }
  4727. .uk-icon-youtube-play:before {
  4728. content: "\f16a";
  4729. }
  4730. .uk-icon-dropbox:before {
  4731. content: "\f16b";
  4732. }
  4733. .uk-icon-stack-overflow:before {
  4734. content: "\f16c";
  4735. }
  4736. .uk-icon-instagram:before {
  4737. content: "\f16d";
  4738. }
  4739. .uk-icon-flickr:before {
  4740. content: "\f16e";
  4741. }
  4742. .uk-icon-adn:before {
  4743. content: "\f170";
  4744. }
  4745. .uk-icon-bitbucket:before {
  4746. content: "\f171";
  4747. }
  4748. .uk-icon-bitbucket-square:before {
  4749. content: "\f172";
  4750. }
  4751. .uk-icon-tumblr:before {
  4752. content: "\f173";
  4753. }
  4754. .uk-icon-tumblr-square:before {
  4755. content: "\f174";
  4756. }
  4757. .uk-icon-long-arrow-down:before {
  4758. content: "\f175";
  4759. }
  4760. .uk-icon-long-arrow-up:before {
  4761. content: "\f176";
  4762. }
  4763. .uk-icon-long-arrow-left:before {
  4764. content: "\f177";
  4765. }
  4766. .uk-icon-long-arrow-right:before {
  4767. content: "\f178";
  4768. }
  4769. .uk-icon-apple:before {
  4770. content: "\f179";
  4771. }
  4772. .uk-icon-windows:before {
  4773. content: "\f17a";
  4774. }
  4775. .uk-icon-android:before {
  4776. content: "\f17b";
  4777. }
  4778. .uk-icon-linux:before {
  4779. content: "\f17c";
  4780. }
  4781. .uk-icon-dribbble:before {
  4782. content: "\f17d";
  4783. }
  4784. .uk-icon-skype:before {
  4785. content: "\f17e";
  4786. }
  4787. .uk-icon-foursquare:before {
  4788. content: "\f180";
  4789. }
  4790. .uk-icon-trello:before {
  4791. content: "\f181";
  4792. }
  4793. .uk-icon-female:before {
  4794. content: "\f182";
  4795. }
  4796. .uk-icon-male:before {
  4797. content: "\f183";
  4798. }
  4799. .uk-icon-gittip:before,
  4800. .uk-icon-gratipay:before {
  4801. content: "\f184";
  4802. }
  4803. .uk-icon-sun-o:before {
  4804. content: "\f185";
  4805. }
  4806. .uk-icon-moon-o:before {
  4807. content: "\f186";
  4808. }
  4809. .uk-icon-archive:before {
  4810. content: "\f187";
  4811. }
  4812. .uk-icon-bug:before {
  4813. content: "\f188";
  4814. }
  4815. .uk-icon-vk:before {
  4816. content: "\f189";
  4817. }
  4818. .uk-icon-weibo:before {
  4819. content: "\f18a";
  4820. }
  4821. .uk-icon-renren:before {
  4822. content: "\f18b";
  4823. }
  4824. .uk-icon-pagelines:before {
  4825. content: "\f18c";
  4826. }
  4827. .uk-icon-stack-exchange:before {
  4828. content: "\f18d";
  4829. }
  4830. .uk-icon-arrow-circle-o-right:before {
  4831. content: "\f18e";
  4832. }
  4833. .uk-icon-arrow-circle-o-left:before {
  4834. content: "\f190";
  4835. }
  4836. .uk-icon-toggle-left:before,
  4837. .uk-icon-caret-square-o-left:before {
  4838. content: "\f191";
  4839. }
  4840. .uk-icon-dot-circle-o:before {
  4841. content: "\f192";
  4842. }
  4843. .uk-icon-wheelchair:before {
  4844. content: "\f193";
  4845. }
  4846. .uk-icon-vimeo-square:before {
  4847. content: "\f194";
  4848. }
  4849. .uk-icon-turkish-lira:before,
  4850. .uk-icon-try:before {
  4851. content: "\f195";
  4852. }
  4853. .uk-icon-plus-square-o:before {
  4854. content: "\f196";
  4855. }
  4856. .uk-icon-space-shuttle:before {
  4857. content: "\f197";
  4858. }
  4859. .uk-icon-slack:before {
  4860. content: "\f198";
  4861. }
  4862. .uk-icon-envelope-square:before {
  4863. content: "\f199";
  4864. }
  4865. .uk-icon-wordpress:before {
  4866. content: "\f19a";
  4867. }
  4868. .uk-icon-openid:before {
  4869. content: "\f19b";
  4870. }
  4871. .uk-icon-institution:before,
  4872. .uk-icon-bank:before,
  4873. .uk-icon-university:before {
  4874. content: "\f19c";
  4875. }
  4876. .uk-icon-mortar-board:before,
  4877. .uk-icon-graduation-cap:before {
  4878. content: "\f19d";
  4879. }
  4880. .uk-icon-yahoo:before {
  4881. content: "\f19e";
  4882. }
  4883. .uk-icon-google:before {
  4884. content: "\f1a0";
  4885. }
  4886. .uk-icon-reddit:before {
  4887. content: "\f1a1";
  4888. }
  4889. .uk-icon-reddit-square:before {
  4890. content: "\f1a2";
  4891. }
  4892. .uk-icon-stumbleupon-circle:before {
  4893. content: "\f1a3";
  4894. }
  4895. .uk-icon-stumbleupon:before {
  4896. content: "\f1a4";
  4897. }
  4898. .uk-icon-delicious:before {
  4899. content: "\f1a5";
  4900. }
  4901. .uk-icon-digg:before {
  4902. content: "\f1a6";
  4903. }
  4904. .uk-icon-pied-piper:before {
  4905. content: "\f1a7";
  4906. }
  4907. .uk-icon-pied-piper-alt:before {
  4908. content: "\f1a8";
  4909. }
  4910. .uk-icon-drupal:before {
  4911. content: "\f1a9";
  4912. }
  4913. .uk-icon-joomla:before {
  4914. content: "\f1aa";
  4915. }
  4916. .uk-icon-language:before {
  4917. content: "\f1ab";
  4918. }
  4919. .uk-icon-fax:before {
  4920. content: "\f1ac";
  4921. }
  4922. .uk-icon-building:before {
  4923. content: "\f1ad";
  4924. }
  4925. .uk-icon-child:before {
  4926. content: "\f1ae";
  4927. }
  4928. .uk-icon-paw:before {
  4929. content: "\f1b0";
  4930. }
  4931. .uk-icon-spoon:before {
  4932. content: "\f1b1";
  4933. }
  4934. .uk-icon-cube:before {
  4935. content: "\f1b2";
  4936. }
  4937. .uk-icon-cubes:before {
  4938. content: "\f1b3";
  4939. }
  4940. .uk-icon-behance:before {
  4941. content: "\f1b4";
  4942. }
  4943. .uk-icon-behance-square:before {
  4944. content: "\f1b5";
  4945. }
  4946. .uk-icon-steam:before {
  4947. content: "\f1b6";
  4948. }
  4949. .uk-icon-steam-square:before {
  4950. content: "\f1b7";
  4951. }
  4952. .uk-icon-recycle:before {
  4953. content: "\f1b8";
  4954. }
  4955. .uk-icon-automobile:before,
  4956. .uk-icon-car:before {
  4957. content: "\f1b9";
  4958. }
  4959. .uk-icon-cab:before,
  4960. .uk-icon-taxi:before {
  4961. content: "\f1ba";
  4962. }
  4963. .uk-icon-tree:before {
  4964. content: "\f1bb";
  4965. }
  4966. .uk-icon-spotify:before {
  4967. content: "\f1bc";
  4968. }
  4969. .uk-icon-deviantart:before {
  4970. content: "\f1bd";
  4971. }
  4972. .uk-icon-soundcloud:before {
  4973. content: "\f1be";
  4974. }
  4975. .uk-icon-database:before {
  4976. content: "\f1c0";
  4977. }
  4978. .uk-icon-file-pdf-o:before {
  4979. content: "\f1c1";
  4980. }
  4981. .uk-icon-file-word-o:before {
  4982. content: "\f1c2";
  4983. }
  4984. .uk-icon-file-excel-o:before {
  4985. content: "\f1c3";
  4986. }
  4987. .uk-icon-file-powerpoint-o:before {
  4988. content: "\f1c4";
  4989. }
  4990. .uk-icon-file-photo-o:before,
  4991. .uk-icon-file-picture-o:before,
  4992. .uk-icon-file-image-o:before {
  4993. content: "\f1c5";
  4994. }
  4995. .uk-icon-file-zip-o:before,
  4996. .uk-icon-file-archive-o:before {
  4997. content: "\f1c6";
  4998. }
  4999. .uk-icon-file-sound-o:before,
  5000. .uk-icon-file-audio-o:before {
  5001. content: "\f1c7";
  5002. }
  5003. .uk-icon-file-movie-o:before,
  5004. .uk-icon-file-video-o:before {
  5005. content: "\f1c8";
  5006. }
  5007. .uk-icon-file-code-o:before {
  5008. content: "\f1c9";
  5009. }
  5010. .uk-icon-vine:before {
  5011. content: "\f1ca";
  5012. }
  5013. .uk-icon-codepen:before {
  5014. content: "\f1cb";
  5015. }
  5016. .uk-icon-jsfiddle:before {
  5017. content: "\f1cc";
  5018. }
  5019. .uk-icon-life-bouy:before,
  5020. .uk-icon-life-buoy:before,
  5021. .uk-icon-life-saver:before,
  5022. .uk-icon-support:before,
  5023. .uk-icon-life-ring:before {
  5024. content: "\f1cd";
  5025. }
  5026. .uk-icon-circle-o-notch:before {
  5027. content: "\f1ce";
  5028. }
  5029. .uk-icon-ra:before,
  5030. .uk-icon-rebel:before {
  5031. content: "\f1d0";
  5032. }
  5033. .uk-icon-ge:before,
  5034. .uk-icon-empire:before {
  5035. content: "\f1d1";
  5036. }
  5037. .uk-icon-git-square:before {
  5038. content: "\f1d2";
  5039. }
  5040. .uk-icon-git:before {
  5041. content: "\f1d3";
  5042. }
  5043. .uk-icon-hacker-news:before {
  5044. content: "\f1d4";
  5045. }
  5046. .uk-icon-tencent-weibo:before {
  5047. content: "\f1d5";
  5048. }
  5049. .uk-icon-qq:before {
  5050. content: "\f1d6";
  5051. }
  5052. .uk-icon-wechat:before,
  5053. .uk-icon-weixin:before {
  5054. content: "\f1d7";
  5055. }
  5056. .uk-icon-send:before,
  5057. .uk-icon-paper-plane:before {
  5058. content: "\f1d8";
  5059. }
  5060. .uk-icon-send-o:before,
  5061. .uk-icon-paper-plane-o:before {
  5062. content: "\f1d9";
  5063. }
  5064. .uk-icon-history:before {
  5065. content: "\f1da";
  5066. }
  5067. .uk-icon-genderless:before,
  5068. .uk-icon-circle-thin:before {
  5069. content: "\f1db";
  5070. }
  5071. .uk-icon-header:before {
  5072. content: "\f1dc";
  5073. }
  5074. .uk-icon-paragraph:before {
  5075. content: "\f1dd";
  5076. }
  5077. .uk-icon-sliders:before {
  5078. content: "\f1de";
  5079. }
  5080. .uk-icon-share-alt:before {
  5081. content: "\f1e0";
  5082. }
  5083. .uk-icon-share-alt-square:before {
  5084. content: "\f1e1";
  5085. }
  5086. .uk-icon-bomb:before {
  5087. content: "\f1e2";
  5088. }
  5089. .uk-icon-soccer-ball-o:before,
  5090. .uk-icon-futbol-o:before {
  5091. content: "\f1e3";
  5092. }
  5093. .uk-icon-tty:before {
  5094. content: "\f1e4";
  5095. }
  5096. .uk-icon-binoculars:before {
  5097. content: "\f1e5";
  5098. }
  5099. .uk-icon-plug:before {
  5100. content: "\f1e6";
  5101. }
  5102. .uk-icon-slideshare:before {
  5103. content: "\f1e7";
  5104. }
  5105. .uk-icon-twitch:before {
  5106. content: "\f1e8";
  5107. }
  5108. .uk-icon-yelp:before {
  5109. content: "\f1e9";
  5110. }
  5111. .uk-icon-newspaper-o:before {
  5112. content: "\f1ea";
  5113. }
  5114. .uk-icon-wifi:before {
  5115. content: "\f1eb";
  5116. }
  5117. .uk-icon-calculator:before {
  5118. content: "\f1ec";
  5119. }
  5120. .uk-icon-paypal:before {
  5121. content: "\f1ed";
  5122. }
  5123. .uk-icon-google-wallet:before {
  5124. content: "\f1ee";
  5125. }
  5126. .uk-icon-cc-visa:before {
  5127. content: "\f1f0";
  5128. }
  5129. .uk-icon-cc-mastercard:before {
  5130. content: "\f1f1";
  5131. }
  5132. .uk-icon-cc-discover:before {
  5133. content: "\f1f2";
  5134. }
  5135. .uk-icon-cc-amex:before {
  5136. content: "\f1f3";
  5137. }
  5138. .uk-icon-cc-paypal:before {
  5139. content: "\f1f4";
  5140. }
  5141. .uk-icon-cc-stripe:before {
  5142. content: "\f1f5";
  5143. }
  5144. .uk-icon-bell-slash:before {
  5145. content: "\f1f6";
  5146. }
  5147. .uk-icon-bell-slash-o:before {
  5148. content: "\f1f7";
  5149. }
  5150. .uk-icon-trash:before {
  5151. content: "\f1f8";
  5152. }
  5153. .uk-icon-copyright:before {
  5154. content: "\f1f9";
  5155. }
  5156. .uk-icon-at:before {
  5157. content: "\f1fa";
  5158. }
  5159. .uk-icon-eyedropper:before {
  5160. content: "\f1fb";
  5161. }
  5162. .uk-icon-paint-brush:before {
  5163. content: "\f1fc";
  5164. }
  5165. .uk-icon-birthday-cake:before {
  5166. content: "\f1fd";
  5167. }
  5168. .uk-icon-area-chart:before {
  5169. content: "\f1fe";
  5170. }
  5171. .uk-icon-pie-chart:before {
  5172. content: "\f200";
  5173. }
  5174. .uk-icon-line-chart:before {
  5175. content: "\f201";
  5176. }
  5177. .uk-icon-lastfm:before {
  5178. content: "\f202";
  5179. }
  5180. .uk-icon-lastfm-square:before {
  5181. content: "\f203";
  5182. }
  5183. .uk-icon-toggle-off:before {
  5184. content: "\f204";
  5185. }
  5186. .uk-icon-toggle-on:before {
  5187. content: "\f205";
  5188. }
  5189. .uk-icon-bicycle:before {
  5190. content: "\f206";
  5191. }
  5192. .uk-icon-bus:before {
  5193. content: "\f207";
  5194. }
  5195. .uk-icon-ioxhost:before {
  5196. content: "\f208";
  5197. }
  5198. .uk-icon-angellist:before {
  5199. content: "\f209";
  5200. }
  5201. .uk-icon-cc:before {
  5202. content: "\f20a";
  5203. }
  5204. .uk-icon-shekel:before,
  5205. .uk-icon-sheqel:before,
  5206. .uk-icon-ils:before {
  5207. content: "\f20b";
  5208. }
  5209. .uk-icon-meanpath:before {
  5210. content: "\f20c";
  5211. }
  5212. .uk-icon-buysellads:before {
  5213. content: "\f20d";
  5214. }
  5215. .uk-icon-connectdevelop:before {
  5216. content: "\f20e";
  5217. }
  5218. .uk-icon-dashcube:before {
  5219. content: "\f210";
  5220. }
  5221. .uk-icon-forumbee:before {
  5222. content: "\f211";
  5223. }
  5224. .uk-icon-leanpub:before {
  5225. content: "\f212";
  5226. }
  5227. .uk-icon-sellsy:before {
  5228. content: "\f213";
  5229. }
  5230. .uk-icon-shirtsinbulk:before {
  5231. content: "\f214";
  5232. }
  5233. .uk-icon-simplybuilt:before {
  5234. content: "\f215";
  5235. }
  5236. .uk-icon-skyatlas:before {
  5237. content: "\f216";
  5238. }
  5239. .uk-icon-cart-plus:before {
  5240. content: "\f217";
  5241. }
  5242. .uk-icon-cart-arrow-down:before {
  5243. content: "\f218";
  5244. }
  5245. .uk-icon-diamond:before {
  5246. content: "\f219";
  5247. }
  5248. .uk-icon-ship:before {
  5249. content: "\f21a";
  5250. }
  5251. .uk-icon-user-secret:before {
  5252. content: "\f21b";
  5253. }
  5254. .uk-icon-motorcycle:before {
  5255. content: "\f21c";
  5256. }
  5257. .uk-icon-street-view:before {
  5258. content: "\f21d";
  5259. }
  5260. .uk-icon-heartbeat:before {
  5261. content: "\f21e";
  5262. }
  5263. .uk-icon-venus:before {
  5264. content: "\f221";
  5265. }
  5266. .uk-icon-mars:before {
  5267. content: "\f222";
  5268. }
  5269. .uk-icon-mercury:before {
  5270. content: "\f223";
  5271. }
  5272. .uk-icon-transgender:before {
  5273. content: "\f224";
  5274. }
  5275. .uk-icon-transgender-alt:before {
  5276. content: "\f225";
  5277. }
  5278. .uk-icon-venus-double:before {
  5279. content: "\f226";
  5280. }
  5281. .uk-icon-mars-double:before {
  5282. content: "\f227";
  5283. }
  5284. .uk-icon-venus-mars:before {
  5285. content: "\f228";
  5286. }
  5287. .uk-icon-mars-stroke:before {
  5288. content: "\f229";
  5289. }
  5290. .uk-icon-mars-stroke-v:before {
  5291. content: "\f22a";
  5292. }
  5293. .uk-icon-mars-stroke-h:before {
  5294. content: "\f22b";
  5295. }
  5296. .uk-icon-neuter:before {
  5297. content: "\f22c";
  5298. }
  5299. .uk-icon-facebook-official:before {
  5300. content: "\f230";
  5301. }
  5302. .uk-icon-pinterest-p:before {
  5303. content: "\f231";
  5304. }
  5305. .uk-icon-whatsapp:before {
  5306. content: "\f232";
  5307. }
  5308. .uk-icon-server:before {
  5309. content: "\f233";
  5310. }
  5311. .uk-icon-user-plus:before {
  5312. content: "\f234";
  5313. }
  5314. .uk-icon-user-times:before {
  5315. content: "\f235";
  5316. }
  5317. .uk-icon-hotel:before,
  5318. .uk-icon-bed:before {
  5319. content: "\f236";
  5320. }
  5321. .uk-icon-viacoin:before {
  5322. content: "\f237";
  5323. }
  5324. .uk-icon-train:before {
  5325. content: "\f238";
  5326. }
  5327. .uk-icon-subway:before {
  5328. content: "\f239";
  5329. }
  5330. .uk-icon-medium-logo:before {
  5331. content: "\f23a";
  5332. }
  5333. .uk-icon-500px:before {
  5334. content: "\f26e";
  5335. }
  5336. .uk-icon-amazon:before {
  5337. content: "\f270";
  5338. }
  5339. .uk-icon-balance-scale:before {
  5340. content: "\f24e";
  5341. }
  5342. .uk-icon-battery-empty:before,
  5343. .uk-icon-battery-0:before {
  5344. content: "\f244";
  5345. }
  5346. .uk-icon-battery-quarter:before,
  5347. .uk-icon-battery-1:before {
  5348. content: "\f243";
  5349. }
  5350. .uk-icon-battery-half:before,
  5351. .uk-icon-battery-2:before {
  5352. content: "\f242";
  5353. }
  5354. .uk-icon-battery-three-quarters:before,
  5355. .uk-icon-battery-3:before {
  5356. content: "\f241";
  5357. }
  5358. .uk-icon-battery-full:before,
  5359. .uk-icon-battery-4:before {
  5360. content: "\f240";
  5361. }
  5362. .uk-icon-black-tie:before {
  5363. content: "\f27e";
  5364. }
  5365. .uk-icon-calendar-check-o:before {
  5366. content: "\f274";
  5367. }
  5368. .uk-icon-calendar-minus-o:before {
  5369. content: "\f272";
  5370. }
  5371. .uk-icon-calendar-plus-o:before {
  5372. content: "\f271";
  5373. }
  5374. .uk-icon-calendar-times-o:before {
  5375. content: "\f273";
  5376. }
  5377. .uk-icon-cc-diners-club:before {
  5378. content: "\f24c";
  5379. }
  5380. .uk-icon-cc-jcb:before {
  5381. content: "\f24b";
  5382. }
  5383. .uk-icon-chrome:before {
  5384. content: "\f268";
  5385. }
  5386. .uk-icon-clone:before {
  5387. content: "\f24d";
  5388. }
  5389. .uk-icon-commenting:before {
  5390. content: "\f27a";
  5391. }
  5392. .uk-icon-commenting-o:before {
  5393. content: "\f27b";
  5394. }
  5395. .uk-icon-contao:before {
  5396. content: "\f26d";
  5397. }
  5398. .uk-icon-creative-commons:before {
  5399. content: "\f25e";
  5400. }
  5401. .uk-icon-expeditedssl:before {
  5402. content: "\f23e";
  5403. }
  5404. .uk-icon-firefox:before {
  5405. content: "\f269";
  5406. }
  5407. .uk-icon-fonticons:before {
  5408. content: "\f280";
  5409. }
  5410. .uk-icon-get-pocket:before {
  5411. content: "\f265";
  5412. }
  5413. .uk-icon-gg:before {
  5414. content: "\f260";
  5415. }
  5416. .uk-icon-gg-circle:before {
  5417. content: "\f261";
  5418. }
  5419. .uk-icon-hand-lizard-o:before {
  5420. content: "\f258";
  5421. }
  5422. .uk-icon-hand-stop-o:before,
  5423. .uk-icon-hand-paper-o:before {
  5424. content: "\f256";
  5425. }
  5426. .uk-icon-hand-peace-o:before {
  5427. content: "\f25b";
  5428. }
  5429. .uk-icon-hand-pointer-o:before {
  5430. content: "\f25a";
  5431. }
  5432. .uk-icon-hand-grab-o:before,
  5433. .uk-icon-hand-rock-o:before {
  5434. content: "\f255";
  5435. }
  5436. .uk-icon-hand-scissors-o:before {
  5437. content: "\f257";
  5438. }
  5439. .uk-icon-hand-spock-o:before {
  5440. content: "\f259";
  5441. }
  5442. .uk-icon-hourglass:before {
  5443. content: "\f254";
  5444. }
  5445. .uk-icon-hourglass-o:before {
  5446. content: "\f250";
  5447. }
  5448. .uk-icon-hourglass-1:before,
  5449. .uk-icon-hourglass-start:before {
  5450. content: "\f251";
  5451. }
  5452. .uk-icon-hourglass-2:before,
  5453. .uk-icon-hourglass-half:before {
  5454. content: "\f252";
  5455. }
  5456. .uk-icon-hourglass-3:before,
  5457. .uk-icon-hourglass-end:before {
  5458. content: "\f253";
  5459. }
  5460. .uk-icon-houzz:before {
  5461. content: "\f27c";
  5462. }
  5463. .uk-icon-i-cursor:before {
  5464. content: "\f246";
  5465. }
  5466. .uk-icon-industry:before {
  5467. content: "\f275";
  5468. }
  5469. .uk-icon-internet-explorer:before {
  5470. content: "\f26b";
  5471. }
  5472. .uk-icon-map:before {
  5473. content: "\f279";
  5474. }
  5475. .uk-icon-map-o:before {
  5476. content: "\f278";
  5477. }
  5478. .uk-icon-map-pin:before {
  5479. content: "\f276";
  5480. }
  5481. .uk-icon-map-signs:before {
  5482. content: "\f277";
  5483. }
  5484. .uk-icon-mouse-pointer:before {
  5485. content: "\f245";
  5486. }
  5487. .uk-icon-object-group:before {
  5488. content: "\f247";
  5489. }
  5490. .uk-icon-object-ungroup:before {
  5491. content: "\f248";
  5492. }
  5493. .uk-icon-odnoklassniki:before {
  5494. content: "\f263";
  5495. }
  5496. .uk-icon-odnoklassniki-square:before {
  5497. content: "\f264";
  5498. }
  5499. .uk-icon-opencart:before {
  5500. content: "\f23d";
  5501. }
  5502. .uk-icon-opera:before {
  5503. content: "\f26a";
  5504. }
  5505. .uk-icon-optin-monster:before {
  5506. content: "\f23c";
  5507. }
  5508. .uk-icon-registered:before {
  5509. content: "\f25d";
  5510. }
  5511. .uk-icon-safari:before {
  5512. content: "\f267";
  5513. }
  5514. .uk-icon-sticky-note:before {
  5515. content: "\f249";
  5516. }
  5517. .uk-icon-sticky-note-o:before {
  5518. content: "\f24a";
  5519. }
  5520. .uk-icon-tv:before,
  5521. .uk-icon-television:before {
  5522. content: "\f26c";
  5523. }
  5524. .uk-icon-trademark:before {
  5525. content: "\f25c";
  5526. }
  5527. .uk-icon-tripadvisor:before {
  5528. content: "\f262";
  5529. }
  5530. .uk-icon-vimeo:before {
  5531. content: "\f27d";
  5532. }
  5533. .uk-icon-wikipedia-w:before {
  5534. content: "\f266";
  5535. }
  5536. .uk-icon-yc:before,
  5537. .uk-icon-y-combinator:before {
  5538. content: "\f23b";
  5539. }
  5540. .uk-icon-yc-square:before,
  5541. .uk-icon-y-combinator-square:before {
  5542. content: "\f1d4";
  5543. }
  5544. .uk-icon-bluetooth:before {
  5545. content: "\f293";
  5546. }
  5547. .uk-icon-bluetooth-b:before {
  5548. content: "\f294";
  5549. }
  5550. .uk-icon-codiepie:before {
  5551. content: "\f284";
  5552. }
  5553. .uk-icon-credit-card-alt:before {
  5554. content: "\f283";
  5555. }
  5556. .uk-icon-edge:before {
  5557. content: "\f282";
  5558. }
  5559. .uk-icon-fort-awesome:before {
  5560. content: "\f286";
  5561. }
  5562. .uk-icon-hashtag:before {
  5563. content: "\f292";
  5564. }
  5565. .uk-icon-mixcloud:before {
  5566. content: "\f289";
  5567. }
  5568. .uk-icon-modx:before {
  5569. content: "\f285";
  5570. }
  5571. .uk-icon-pause-circle:before {
  5572. content: "\f28b";
  5573. }
  5574. .uk-icon-pause-circle-o:before {
  5575. content: "\f28c";
  5576. }
  5577. .uk-icon-percent:before {
  5578. content: "\f295";
  5579. }
  5580. .uk-icon-product-hunt:before {
  5581. content: "\f288";
  5582. }
  5583. .uk-icon-reddit-alien:before {
  5584. content: "\f281";
  5585. }
  5586. .uk-icon-scribd:before {
  5587. content: "\f28a";
  5588. }
  5589. .uk-icon-shopping-bag:before {
  5590. content: "\f290";
  5591. }
  5592. .uk-icon-shopping-basket:before {
  5593. content: "\f291";
  5594. }
  5595. .uk-icon-stop-circle:before {
  5596. content: "\f28d";
  5597. }
  5598. .uk-icon-stop-circle-o:before {
  5599. content: "\f28e";
  5600. }
  5601. .uk-icon-usb:before {
  5602. content: "\f287";
  5603. }
  5604. .uk-icon-american-sign-language-interpreting:before,
  5605. .uk-icon-asl-interpreting:before {
  5606. content: "\f2a3";
  5607. }
  5608. .uk-icon-assistive-listening-systems:before {
  5609. content: "\f2a2";
  5610. }
  5611. .uk-icon-audio-description:before {
  5612. content: "\f29e";
  5613. }
  5614. .uk-icon-blind:before {
  5615. content: "\f29d";
  5616. }
  5617. .uk-icon-braille:before {
  5618. content: "\f2a1";
  5619. }
  5620. .uk-icon-deaf:before,
  5621. .uk-icon-deafness:before {
  5622. content: "\f2a4";
  5623. }
  5624. .uk-icon-envira:before {
  5625. content: "\f299";
  5626. }
  5627. .uk-icon-font-awesome:before,
  5628. .uk-icon-fa:before {
  5629. content: "\f2b4";
  5630. }
  5631. .uk-icon-first-order:before {
  5632. content: "\f2b0";
  5633. }
  5634. .uk-icon-gitlab:before {
  5635. content: "\f296";
  5636. }
  5637. .uk-icon-glide:before {
  5638. content: "\f2a5";
  5639. }
  5640. .uk-icon-glide-g:before {
  5641. content: "\f2a6";
  5642. }
  5643. .uk-icon-hard-of-hearing:before {
  5644. content: "\f2a4";
  5645. }
  5646. .uk-icon-low-vision:before {
  5647. content: "\f2a8";
  5648. }
  5649. .uk-icon-question-circle-o:before {
  5650. content: "\f29c";
  5651. }
  5652. .uk-icon-sign-language:before,
  5653. .uk-icon-signing:before {
  5654. content: "\f2a7";
  5655. }
  5656. .uk-icon-snapchat:before {
  5657. content: "\f2ab";
  5658. }
  5659. .uk-icon-snapchat-ghost:before {
  5660. content: "\f2ac";
  5661. }
  5662. .uk-icon-snapchat-square:before {
  5663. content: "\f2ad";
  5664. }
  5665. .uk-icon-themeisle:before {
  5666. content: "\f2b2";
  5667. }
  5668. .uk-icon-universal-access:before {
  5669. content: "\f29a";
  5670. }
  5671. .uk-icon-viadeo:before {
  5672. content: "\f2a9";
  5673. }
  5674. .uk-icon-viadeo-square:before {
  5675. content: "\f2aa";
  5676. }
  5677. .uk-icon-volume-control-phone:before {
  5678. content: "\f2a0";
  5679. }
  5680. .uk-icon-wheelchair-alt:before {
  5681. content: "\f29b";
  5682. }
  5683. .uk-icon-wpbeginner:before {
  5684. content: "\f297";
  5685. }
  5686. .uk-icon-wpforms:before {
  5687. content: "\f298";
  5688. }
  5689. .uk-icon-yoast:before {
  5690. content: "\f2b1";
  5691. }
  5692. /* ========================================================================
  5693. Component: Close
  5694. ========================================================================== */
  5695. /*
  5696. * Removes inner padding and border in Firefox 4+.
  5697. */
  5698. .uk-close::-moz-focus-inner {
  5699. border: 0;
  5700. padding: 0;
  5701. }
  5702. /*
  5703. * 1. Correct inability to style clickable `input` types in iOS.
  5704. * 2. Remove margins in Chrome, Safari and Opera.
  5705. * 3. Remove borders for `button`.
  5706. * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
  5707. * 5. Correct `font` properties and `color` not being inherited for `button`.
  5708. * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
  5709. * 7. Remove default `button` padding and background color
  5710. * 8. Style
  5711. */
  5712. .uk-close {
  5713. /* 1 */
  5714. -webkit-appearance: none;
  5715. /* 2 */
  5716. margin: 0;
  5717. /* 3 */
  5718. border: none;
  5719. /* 4 */
  5720. overflow: visible;
  5721. /* 5 */
  5722. font: inherit;
  5723. color: inherit;
  5724. /* 6 */
  5725. text-transform: none;
  5726. /* 7. */
  5727. padding: 0;
  5728. background: transparent;
  5729. /* 8 */
  5730. display: inline-block;
  5731. box-sizing: content-box;
  5732. width: 20px;
  5733. line-height: 20px;
  5734. text-align: center;
  5735. vertical-align: middle;
  5736. opacity: 0.3;
  5737. }
  5738. /* Icon */
  5739. .uk-close:after {
  5740. display: block;
  5741. content: "\f00d";
  5742. font-family: FontAwesome;
  5743. }
  5744. /*
  5745. * Hover
  5746. * 1. Apply hover style also to focus state
  5747. * 2. Remove default focus style
  5748. * 3. Required for `a` elements
  5749. */
  5750. .uk-close:hover,
  5751. .uk-close:focus {
  5752. opacity: 0.5;
  5753. /* 2 */
  5754. outline: none;
  5755. /* 3 */
  5756. color: inherit;
  5757. text-decoration: none;
  5758. cursor: pointer;
  5759. }
  5760. /* Modifier
  5761. ========================================================================== */
  5762. .uk-close-alt {
  5763. padding: 2px;
  5764. border-radius: 50%;
  5765. background: #ffffff;
  5766. opacity: 1;
  5767. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
  5768. }
  5769. /* Hover */
  5770. .uk-close-alt:hover,
  5771. .uk-close-alt:focus {
  5772. opacity: 1;
  5773. }
  5774. /* Icon */
  5775. .uk-close-alt:after {
  5776. opacity: 0.5;
  5777. }
  5778. .uk-close-alt:hover:after,
  5779. .uk-close-alt:focus:after {
  5780. opacity: 0.8;
  5781. }
  5782. /* ========================================================================
  5783. Component: Badge
  5784. ========================================================================== */
  5785. .uk-badge {
  5786. display: inline-block;
  5787. padding: 0 5px;
  5788. background: #52b4df;
  5789. font-size: 11px;
  5790. font-weight: normal;
  5791. line-height: 15px;
  5792. color: #ffffff;
  5793. text-align: center;
  5794. vertical-align: middle;
  5795. text-transform: none;
  5796. border: 1px solid rgba(0, 0, 0, 0.2);
  5797. border-bottom-color: rgba(0, 0, 0, 0.3);
  5798. background-origin: border-box;
  5799. background-image: -webkit-linear-gradient(top, #5cc0ea, #4cacd7);
  5800. background-image: linear-gradient(to bottom, #5cc0ea, #4cacd7);
  5801. border-radius: 2px;
  5802. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  5803. }
  5804. /*
  5805. * Keep color when badge is a link
  5806. */
  5807. a.uk-badge:hover {
  5808. color: #ffffff;
  5809. }
  5810. /* Modifier: `uk-badge-notification`;
  5811. ========================================================================== */
  5812. .uk-badge-notification {
  5813. box-sizing: border-box;
  5814. min-width: 18px;
  5815. border-radius: 500px;
  5816. font-size: 12px;
  5817. line-height: 18px;
  5818. }
  5819. /* Color modifier
  5820. ========================================================================== */
  5821. /*
  5822. * Modifier: `uk-badge-success`
  5823. */
  5824. .uk-badge-success {
  5825. background-color: #82bb42;
  5826. background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
  5827. background-image: linear-gradient(to bottom, #9fd256, #6fac34);
  5828. }
  5829. /*
  5830. * Modifier: `uk-badge-warning`
  5831. */
  5832. .uk-badge-warning {
  5833. background-color: #f9a124;
  5834. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  5835. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  5836. }
  5837. /*
  5838. * Modifier: `uk-badge-danger`
  5839. */
  5840. .uk-badge-danger {
  5841. background-color: #d32c46;
  5842. background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
  5843. background-image: linear-gradient(to bottom, #ee465a, #c11a39);
  5844. }
  5845. /* ========================================================================
  5846. Component: Alert
  5847. ========================================================================== */
  5848. .uk-alert {
  5849. margin-bottom: 20px;
  5850. padding: 10px;
  5851. background: #ebf7fd;
  5852. color: #2d7091;
  5853. border: 1px solid rgba(45, 112, 145, 0.3);
  5854. border-radius: 4px;
  5855. text-shadow: 0 1px 0 #ffffff;
  5856. }
  5857. /*
  5858. * Add margin if adjacent element
  5859. */
  5860. * + .uk-alert {
  5861. margin-top: 20px;
  5862. }
  5863. /*
  5864. * Remove margin from the last-child
  5865. */
  5866. .uk-alert > :last-child {
  5867. margin-bottom: 0;
  5868. }
  5869. /*
  5870. * Keep color for headings if the default heading color is changed
  5871. */
  5872. .uk-alert h1,
  5873. .uk-alert h2,
  5874. .uk-alert h3,
  5875. .uk-alert h4,
  5876. .uk-alert h5,
  5877. .uk-alert h6 {
  5878. color: inherit;
  5879. }
  5880. /* Close in alert
  5881. ========================================================================== */
  5882. .uk-alert > .uk-close:first-child {
  5883. float: right;
  5884. }
  5885. /*
  5886. * Remove margin from adjacent element
  5887. */
  5888. .uk-alert > .uk-close:first-child + * {
  5889. margin-top: 0;
  5890. }
  5891. /* Modifier: `uk-alert-success`
  5892. ========================================================================== */
  5893. .uk-alert-success {
  5894. background: #f2fae3;
  5895. color: #659f13;
  5896. border-color: rgba(101, 159, 19, 0.3);
  5897. }
  5898. /* Modifier: `uk-alert-warning`
  5899. ========================================================================== */
  5900. .uk-alert-warning {
  5901. background: #fffceb;
  5902. color: #e28327;
  5903. border-color: rgba(226, 131, 39, 0.3);
  5904. }
  5905. /* Modifier: `uk-alert-danger`
  5906. ========================================================================== */
  5907. .uk-alert-danger {
  5908. background: #fff1f0;
  5909. color: #d85030;
  5910. border-color: rgba(216, 80, 48, 0.3);
  5911. }
  5912. /* Modifier: `uk-alert-large`
  5913. ========================================================================== */
  5914. .uk-alert-large {
  5915. padding: 20px;
  5916. }
  5917. .uk-alert-large > .uk-close:first-child {
  5918. margin: -10px -10px 0 0;
  5919. }
  5920. /* ========================================================================
  5921. Component: Thumbnail
  5922. ========================================================================== */
  5923. /*
  5924. * 1. Container width fits its content
  5925. * 2. Responsive behavior
  5926. * 3. Corrects `max-width` behavior sed
  5927. * 4. Required for `figure` element
  5928. * 5. Style
  5929. */
  5930. .uk-thumbnail {
  5931. /* 1 */
  5932. display: inline-block;
  5933. /* 2 */
  5934. max-width: 100%;
  5935. /* 3 */
  5936. box-sizing: border-box;
  5937. /* 3 */
  5938. margin: 0;
  5939. /* 4 */
  5940. padding: 4px;
  5941. border: 1px solid #dddddd;
  5942. background: #ffffff;
  5943. border-radius: 4px;
  5944. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  5945. }
  5946. /*
  5947. * Hover state for `a` elements
  5948. * 1. Apply hover style also to focus state
  5949. * 2. Needed for caption
  5950. * 3. Remove default focus style
  5951. */
  5952. a.uk-thumbnail:hover,
  5953. a.uk-thumbnail:focus {
  5954. border-color: #aaaaaa;
  5955. background-color: #ffffff;
  5956. /* 2 */
  5957. text-decoration: none;
  5958. /* 3 */
  5959. outline: none;
  5960. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  5961. }
  5962. /* Caption
  5963. ========================================================================== */
  5964. .uk-thumbnail-caption {
  5965. padding-top: 4px;
  5966. text-align: center;
  5967. color: #444444;
  5968. }
  5969. /* Sizes
  5970. ========================================================================== */
  5971. .uk-thumbnail-mini {
  5972. width: 150px;
  5973. }
  5974. .uk-thumbnail-small {
  5975. width: 200px;
  5976. }
  5977. .uk-thumbnail-medium {
  5978. width: 300px;
  5979. }
  5980. .uk-thumbnail-large {
  5981. width: 400px;
  5982. }
  5983. .uk-thumbnail-expand,
  5984. .uk-thumbnail-expand > img {
  5985. width: 100%;
  5986. }
  5987. /* ========================================================================
  5988. Component: Overlay
  5989. ========================================================================== */
  5990. /*
  5991. * 1. Container width fits its content
  5992. * 2. Create position context
  5993. * 3. Set max-width for responsive images to prevent `inline-block` consequences
  5994. * 4. Remove the gap between the container and its child element
  5995. * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
  5996. * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
  5997. * 7. Reset margin
  5998. */
  5999. .uk-overlay {
  6000. /* 1 */
  6001. display: inline-block;
  6002. /* 2 */
  6003. position: relative;
  6004. /* 3 */
  6005. max-width: 100%;
  6006. /* 4 */
  6007. vertical-align: middle;
  6008. /* 5 */
  6009. overflow: hidden;
  6010. /* 6 */
  6011. -webkit-transform: translateZ(0);
  6012. /* 7 */
  6013. margin: 0;
  6014. }
  6015. /* 6 for Safari */
  6016. .uk-overlay.uk-border-circle {
  6017. -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
  6018. }
  6019. /*
  6020. * Remove margin from content
  6021. */
  6022. .uk-overlay > :first-child {
  6023. margin-bottom: 0;
  6024. }
  6025. /* Sub-object `uk-overlay-panel`
  6026. ========================================================================== */
  6027. /*
  6028. * 1. Position cover
  6029. * 2. Style
  6030. */
  6031. .uk-overlay-panel {
  6032. /* 1 */
  6033. position: absolute;
  6034. top: 0;
  6035. bottom: 0;
  6036. left: 0;
  6037. right: 0;
  6038. /* 2 */
  6039. padding: 20px;
  6040. color: #ffffff;
  6041. }
  6042. /*
  6043. * Remove margin from the last-child
  6044. */
  6045. .uk-overlay-panel > :last-child,
  6046. .uk-overlay-panel.uk-flex > * > :last-child {
  6047. margin-bottom: 0;
  6048. }
  6049. /*
  6050. * Keep color for headings if the default heading color is changed
  6051. */
  6052. .uk-overlay-panel h1,
  6053. .uk-overlay-panel h2,
  6054. .uk-overlay-panel h3,
  6055. .uk-overlay-panel h4,
  6056. .uk-overlay-panel h5,
  6057. .uk-overlay-panel h6 {
  6058. color: inherit;
  6059. }
  6060. .uk-overlay-panel a:not([class]) {
  6061. color: inherit;
  6062. text-decoration: underline;
  6063. }
  6064. .uk-overlay-panel a[class*='uk-icon-']:not(.uk-icon-button) {
  6065. color: inherit;
  6066. }
  6067. /* Sub-object `uk-overlay-hover` and `uk-overlay-active`
  6068. ========================================================================== */
  6069. .uk-overlay-hover:not(:hover):not(.uk-hover) .uk-overlay-panel:not(.uk-ignore) {
  6070. opacity: 0;
  6071. }
  6072. .uk-overlay-active :not(.uk-active) > .uk-overlay-panel:not(.uk-ignore) {
  6073. opacity: 0;
  6074. }
  6075. /* Modifier `uk-overlay-background`
  6076. ========================================================================== */
  6077. .uk-overlay-background {
  6078. background: rgba(0, 0, 0, 0.5);
  6079. }
  6080. /* Modifier `uk-overlay-image`
  6081. ========================================================================== */
  6082. /*
  6083. * Reset panel
  6084. */
  6085. .uk-overlay-image {
  6086. padding: 0;
  6087. }
  6088. /* Position modifiers
  6089. ========================================================================== */
  6090. .uk-overlay-top {
  6091. bottom: auto;
  6092. }
  6093. .uk-overlay-bottom {
  6094. top: auto;
  6095. }
  6096. .uk-overlay-left {
  6097. right: auto;
  6098. }
  6099. .uk-overlay-right {
  6100. left: auto;
  6101. }
  6102. /* Sub-object `uk-overlay-icon`
  6103. ========================================================================== */
  6104. .uk-overlay-icon:before {
  6105. content: "\f002";
  6106. position: absolute;
  6107. top: 50%;
  6108. left: 50%;
  6109. width: 50px;
  6110. height: 50px;
  6111. margin-top: -25px;
  6112. margin-left: -25px;
  6113. font-size: 50px;
  6114. line-height: 1;
  6115. font-family: FontAwesome;
  6116. text-align: center;
  6117. color: #ffffff;
  6118. }
  6119. /* Transitions
  6120. ========================================================================== */
  6121. .uk-overlay-fade,
  6122. .uk-overlay-scale,
  6123. .uk-overlay-spin,
  6124. .uk-overlay-grayscale,
  6125. .uk-overlay-blur,
  6126. [class*='uk-overlay-slide'] {
  6127. transition-duration: 0.3s;
  6128. transition-timing-function: ease-out;
  6129. transition-property: opacity, transform, filter;
  6130. }
  6131. .uk-overlay-active .uk-overlay-fade,
  6132. .uk-overlay-active .uk-overlay-scale,
  6133. .uk-overlay-active .uk-overlay-spin,
  6134. .uk-overlay-active [class*='uk-overlay-slide'] {
  6135. transition-duration: 0.8s;
  6136. }
  6137. /*
  6138. * Fade
  6139. */
  6140. .uk-overlay-fade {
  6141. opacity: 0.7;
  6142. }
  6143. .uk-overlay-hover:hover .uk-overlay-fade,
  6144. .uk-overlay-hover.uk-hover .uk-overlay-fade,
  6145. .uk-overlay-active .uk-active > .uk-overlay-fade {
  6146. opacity: 1;
  6147. }
  6148. /*
  6149. * Scale
  6150. */
  6151. .uk-overlay-scale {
  6152. -webkit-transform: scale(1);
  6153. transform: scale(1);
  6154. }
  6155. .uk-overlay-hover:hover .uk-overlay-scale,
  6156. .uk-overlay-hover.uk-hover .uk-overlay-scale,
  6157. .uk-overlay-active .uk-active > .uk-overlay-scale {
  6158. -webkit-transform: scale(1.1);
  6159. transform: scale(1.1);
  6160. }
  6161. /*
  6162. * Spin
  6163. */
  6164. .uk-overlay-spin {
  6165. -webkit-transform: scale(1) rotate(0deg);
  6166. transform: scale(1) rotate(0deg);
  6167. }
  6168. .uk-overlay-hover:hover .uk-overlay-spin,
  6169. .uk-overlay-hover.uk-hover .uk-overlay-spin,
  6170. .uk-overlay-active .uk-active > .uk-overlay-spin {
  6171. -webkit-transform: scale(1.1) rotate(3deg);
  6172. transform: scale(1.1) rotate(3deg);
  6173. }
  6174. /*
  6175. * Grayscale
  6176. */
  6177. .uk-overlay-grayscale {
  6178. -webkit-filter: grayscale(100%);
  6179. filter: grayscale(100%);
  6180. }
  6181. .uk-overlay-hover:hover .uk-overlay-grayscale,
  6182. .uk-overlay-hover.uk-hover .uk-overlay-grayscale,
  6183. .uk-overlay-active .uk-active > .uk-overlay-grayscale {
  6184. -webkit-filter: grayscale(0%);
  6185. filter: grayscale(0%);
  6186. }
  6187. /*
  6188. * Slide
  6189. */
  6190. [class*='uk-overlay-slide'] {
  6191. opacity: 0;
  6192. }
  6193. /* Top */
  6194. .uk-overlay-slide-top {
  6195. -webkit-transform: translateY(-100%);
  6196. transform: translateY(-100%);
  6197. }
  6198. /* Bottom */
  6199. .uk-overlay-slide-bottom {
  6200. -webkit-transform: translateY(100%);
  6201. transform: translateY(100%);
  6202. }
  6203. /* Left */
  6204. .uk-overlay-slide-left {
  6205. -webkit-transform: translateX(-100%);
  6206. transform: translateX(-100%);
  6207. }
  6208. /* Right */
  6209. .uk-overlay-slide-right {
  6210. -webkit-transform: translateX(100%);
  6211. transform: translateX(100%);
  6212. }
  6213. /* Hover */
  6214. .uk-overlay-hover:hover [class*='uk-overlay-slide'],
  6215. .uk-overlay-hover.uk-hover [class*='uk-overlay-slide'],
  6216. .uk-overlay-active .uk-active > [class*='uk-overlay-slide'] {
  6217. opacity: 1;
  6218. -webkit-transform: translateX(0) translateY(0);
  6219. transform: translateX(0) translateY(0);
  6220. }
  6221. /* DEPRECATED
  6222. * Sub-object `uk-overlay-area`
  6223. ========================================================================== */
  6224. /*
  6225. * 1. Set position
  6226. * 2. Set style
  6227. * 3. Fade-in transition
  6228. */
  6229. .uk-overlay-area {
  6230. /* 1 */
  6231. position: absolute;
  6232. top: 0;
  6233. bottom: 0;
  6234. left: 0;
  6235. right: 0;
  6236. /* 2 */
  6237. background: rgba(0, 0, 0, 0.3);
  6238. /* 3 */
  6239. opacity: 0;
  6240. -webkit-transition: opacity 0.15s linear;
  6241. transition: opacity 0.15s linear;
  6242. -webkit-transform: translate3d(0, 0, 0);
  6243. }
  6244. /*
  6245. * Hover
  6246. * 1. `uk-hover` to support touch devices
  6247. * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
  6248. */
  6249. .uk-overlay:hover .uk-overlay-area,
  6250. .uk-overlay.uk-hover .uk-overlay-area,
  6251. .uk-overlay-toggle:hover .uk-overlay-area,
  6252. .uk-overlay-toggle.uk-hover .uk-overlay-area {
  6253. opacity: 1;
  6254. }
  6255. /*
  6256. * Icon
  6257. */
  6258. .uk-overlay-area:empty:before {
  6259. content: "\f002";
  6260. position: absolute;
  6261. top: 50%;
  6262. left: 50%;
  6263. width: 50px;
  6264. height: 50px;
  6265. margin-top: -25px;
  6266. margin-left: -25px;
  6267. font-size: 50px;
  6268. line-height: 1;
  6269. font-family: FontAwesome;
  6270. text-align: center;
  6271. color: #ffffff;
  6272. }
  6273. /* DEPRECATED
  6274. * Sub-object `uk-overlay-area-content`
  6275. ========================================================================== */
  6276. /*
  6277. * Remove whitespace between child elements when using `inline-block`
  6278. * Needed for Firefox
  6279. */
  6280. .uk-overlay-area:not(:empty) {
  6281. font-size: 0.001px;
  6282. }
  6283. /*
  6284. * 1. Needed for vertical alignment
  6285. */
  6286. .uk-overlay-area:not(:empty):before {
  6287. content: '';
  6288. display: inline-block;
  6289. height: 100%;
  6290. vertical-align: middle;
  6291. }
  6292. /*
  6293. * 1. Set vertical alignment
  6294. * 2. Reset whitespace hack
  6295. * 3. Set horizontal alignment
  6296. * 4. Set style
  6297. */
  6298. .uk-overlay-area-content {
  6299. /* 1 */
  6300. display: inline-block;
  6301. box-sizing: border-box;
  6302. width: 100%;
  6303. vertical-align: middle;
  6304. /* 2 */
  6305. font-size: 1rem;
  6306. /* 3 */
  6307. text-align: center;
  6308. /* 4 */
  6309. padding: 0 15px;
  6310. color: #ffffff;
  6311. }
  6312. /*
  6313. * Remove margin from the last-child
  6314. */
  6315. .uk-overlay-area-content > :last-child {
  6316. margin-bottom: 0;
  6317. }
  6318. /*
  6319. * Links in overlay area
  6320. */
  6321. .uk-overlay-area-content a:not([class]),
  6322. .uk-overlay-area-content a:not([class]):hover {
  6323. color: inherit;
  6324. }
  6325. /* DEPRECATED
  6326. * Sub-object `uk-overlay-caption`
  6327. ========================================================================== */
  6328. /*
  6329. * 1. Set position
  6330. * 2. Set style
  6331. * 3. Fade-in transition
  6332. */
  6333. .uk-overlay-caption {
  6334. /* 1 */
  6335. position: absolute;
  6336. bottom: 0;
  6337. left: 0;
  6338. right: 0;
  6339. /* 2 */
  6340. padding: 15px;
  6341. background: rgba(0, 0, 0, 0.5);
  6342. color: #ffffff;
  6343. /* 3 */
  6344. opacity: 0;
  6345. -webkit-transition: opacity 0.15s linear;
  6346. transition: opacity 0.15s linear;
  6347. -webkit-transform: translate3d(0, 0, 0);
  6348. }
  6349. /*
  6350. * Hover
  6351. * 1. `uk-hover` to support touch devices
  6352. * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
  6353. */
  6354. .uk-overlay:hover .uk-overlay-caption,
  6355. .uk-overlay.uk-hover .uk-overlay-caption,
  6356. .uk-overlay-toggle:hover .uk-overlay-caption,
  6357. .uk-overlay-toggle.uk-hover .uk-overlay-caption {
  6358. opacity: 1;
  6359. }
  6360. /* ========================================================================
  6361. Component: Column
  6362. ========================================================================== */
  6363. [class*='uk-column-'] {
  6364. -webkit-column-gap: 25px;
  6365. -moz-column-gap: 25px;
  6366. column-gap: 25px;
  6367. }
  6368. /* Width modifiers
  6369. ========================================================================== */
  6370. .uk-column-1-2 {
  6371. -webkit-column-count: 2;
  6372. -moz-column-count: 2;
  6373. column-count: 2;
  6374. }
  6375. .uk-column-1-3 {
  6376. -webkit-column-count: 3;
  6377. -moz-column-count: 3;
  6378. column-count: 3;
  6379. }
  6380. .uk-column-1-4 {
  6381. -webkit-column-count: 4;
  6382. -moz-column-count: 4;
  6383. column-count: 4;
  6384. }
  6385. .uk-column-1-5 {
  6386. -webkit-column-count: 5;
  6387. -moz-column-count: 5;
  6388. column-count: 5;
  6389. }
  6390. .uk-column-1-6 {
  6391. -webkit-column-count: 6;
  6392. -moz-column-count: 6;
  6393. column-count: 6;
  6394. }
  6395. /* Phone landscape and bigger */
  6396. @media (min-width: 480px) {
  6397. .uk-column-small-1-2 {
  6398. -webkit-column-count: 2;
  6399. -moz-column-count: 2;
  6400. column-count: 2;
  6401. }
  6402. .uk-column-small-1-3 {
  6403. -webkit-column-count: 3;
  6404. -moz-column-count: 3;
  6405. column-count: 3;
  6406. }
  6407. .uk-column-small-1-4 {
  6408. -webkit-column-count: 4;
  6409. -moz-column-count: 4;
  6410. column-count: 4;
  6411. }
  6412. .uk-column-small-1-5 {
  6413. -webkit-column-count: 5;
  6414. -moz-column-count: 5;
  6415. column-count: 5;
  6416. }
  6417. .uk-column-small-1-6 {
  6418. -webkit-column-count: 6;
  6419. -moz-column-count: 6;
  6420. column-count: 6;
  6421. }
  6422. }
  6423. /* Tablet and bigger */
  6424. @media (min-width: 768px) {
  6425. .uk-column-medium-1-2 {
  6426. -webkit-column-count: 2;
  6427. -moz-column-count: 2;
  6428. column-count: 2;
  6429. }
  6430. .uk-column-medium-1-3 {
  6431. -webkit-column-count: 3;
  6432. -moz-column-count: 3;
  6433. column-count: 3;
  6434. }
  6435. .uk-column-medium-1-4 {
  6436. -webkit-column-count: 4;
  6437. -moz-column-count: 4;
  6438. column-count: 4;
  6439. }
  6440. .uk-column-medium-1-5 {
  6441. -webkit-column-count: 5;
  6442. -moz-column-count: 5;
  6443. column-count: 5;
  6444. }
  6445. .uk-column-medium-1-6 {
  6446. -webkit-column-count: 6;
  6447. -moz-column-count: 6;
  6448. column-count: 6;
  6449. }
  6450. }
  6451. /* Desktop and bigger */
  6452. @media (min-width: 960px) {
  6453. .uk-column-large-1-2 {
  6454. -webkit-column-count: 2;
  6455. -moz-column-count: 2;
  6456. column-count: 2;
  6457. }
  6458. .uk-column-large-1-3 {
  6459. -webkit-column-count: 3;
  6460. -moz-column-count: 3;
  6461. column-count: 3;
  6462. }
  6463. .uk-column-large-1-4 {
  6464. -webkit-column-count: 4;
  6465. -moz-column-count: 4;
  6466. column-count: 4;
  6467. }
  6468. .uk-column-large-1-5 {
  6469. -webkit-column-count: 5;
  6470. -moz-column-count: 5;
  6471. column-count: 5;
  6472. }
  6473. .uk-column-large-1-6 {
  6474. -webkit-column-count: 6;
  6475. -moz-column-count: 6;
  6476. column-count: 6;
  6477. }
  6478. }
  6479. /* Large screen and bigger */
  6480. @media (min-width: 1220px) {
  6481. .uk-column-xlarge-1-2 {
  6482. -webkit-column-count: 2;
  6483. -moz-column-count: 2;
  6484. column-count: 2;
  6485. }
  6486. .uk-column-xlarge-1-3 {
  6487. -webkit-column-count: 3;
  6488. -moz-column-count: 3;
  6489. column-count: 3;
  6490. }
  6491. .uk-column-xlarge-1-4 {
  6492. -webkit-column-count: 4;
  6493. -moz-column-count: 4;
  6494. column-count: 4;
  6495. }
  6496. .uk-column-xlarge-1-5 {
  6497. -webkit-column-count: 5;
  6498. -moz-column-count: 5;
  6499. column-count: 5;
  6500. }
  6501. .uk-column-xlarge-1-6 {
  6502. -webkit-column-count: 6;
  6503. -moz-column-count: 6;
  6504. column-count: 6;
  6505. }
  6506. }
  6507. /* ========================================================================
  6508. Component: Animation
  6509. ========================================================================== */
  6510. [class*='uk-animation-'] {
  6511. -webkit-animation-duration: 0.5s;
  6512. animation-duration: 0.5s;
  6513. -webkit-animation-timing-function: ease-out;
  6514. animation-timing-function: ease-out;
  6515. -webkit-animation-fill-mode: both;
  6516. animation-fill-mode: both;
  6517. }
  6518. /* Hide animated element if scrollspy is used */
  6519. @media screen {
  6520. [data-uk-scrollspy*='uk-animation-']:not([data-uk-scrollspy*='target']) {
  6521. opacity: 0;
  6522. }
  6523. }
  6524. /*
  6525. * Fade
  6526. * Higher specificity (!important) needed because of reverse modifier
  6527. */
  6528. .uk-animation-fade {
  6529. -webkit-animation-name: uk-fade;
  6530. animation-name: uk-fade;
  6531. -webkit-animation-duration: 0.8s;
  6532. animation-duration: 0.8s;
  6533. -webkit-animation-timing-function: linear !important;
  6534. animation-timing-function: linear !important;
  6535. }
  6536. /*
  6537. * Fade with scale
  6538. */
  6539. .uk-animation-scale-up {
  6540. -webkit-animation-name: uk-fade-scale-02;
  6541. animation-name: uk-fade-scale-02;
  6542. }
  6543. .uk-animation-scale-down {
  6544. -webkit-animation-name: uk-fade-scale-18;
  6545. animation-name: uk-fade-scale-18;
  6546. }
  6547. /*
  6548. * Fade with slide
  6549. */
  6550. .uk-animation-slide-top {
  6551. -webkit-animation-name: uk-fade-top;
  6552. animation-name: uk-fade-top;
  6553. }
  6554. .uk-animation-slide-bottom {
  6555. -webkit-animation-name: uk-fade-bottom;
  6556. animation-name: uk-fade-bottom;
  6557. }
  6558. .uk-animation-slide-left {
  6559. -webkit-animation-name: uk-fade-left;
  6560. animation-name: uk-fade-left;
  6561. }
  6562. .uk-animation-slide-right {
  6563. -webkit-animation-name: uk-fade-right;
  6564. animation-name: uk-fade-right;
  6565. }
  6566. /*
  6567. * Scale
  6568. */
  6569. .uk-animation-scale {
  6570. -webkit-animation-name: uk-scale-12;
  6571. animation-name: uk-scale-12;
  6572. }
  6573. /*
  6574. * Shake
  6575. */
  6576. .uk-animation-shake {
  6577. -webkit-animation-name: uk-shake;
  6578. animation-name: uk-shake;
  6579. }
  6580. /* Direction modifiers
  6581. ========================================================================== */
  6582. .uk-animation-reverse {
  6583. -webkit-animation-direction: reverse;
  6584. animation-direction: reverse;
  6585. -webkit-animation-timing-function: ease-in;
  6586. animation-timing-function: ease-in;
  6587. }
  6588. /* Duration modifiers
  6589. ========================================================================== */
  6590. .uk-animation-15 {
  6591. -webkit-animation-duration: 15s;
  6592. animation-duration: 15s;
  6593. }
  6594. /* Origin modifiers
  6595. ========================================================================== */
  6596. .uk-animation-top-left {
  6597. -webkit-transform-origin: 0 0;
  6598. transform-origin: 0 0;
  6599. }
  6600. .uk-animation-top-center {
  6601. -webkit-transform-origin: 50% 0;
  6602. transform-origin: 50% 0;
  6603. }
  6604. .uk-animation-top-right {
  6605. -webkit-transform-origin: 100% 0;
  6606. transform-origin: 100% 0;
  6607. }
  6608. .uk-animation-middle-left {
  6609. -webkit-transform-origin: 0 50%;
  6610. transform-origin: 0 50%;
  6611. }
  6612. .uk-animation-middle-right {
  6613. -webkit-transform-origin: 100% 50%;
  6614. transform-origin: 100% 50%;
  6615. }
  6616. .uk-animation-bottom-left {
  6617. -webkit-transform-origin: 0 100%;
  6618. transform-origin: 0 100%;
  6619. }
  6620. .uk-animation-bottom-center {
  6621. -webkit-transform-origin: 50% 100%;
  6622. transform-origin: 50% 100%;
  6623. }
  6624. .uk-animation-bottom-right {
  6625. -webkit-transform-origin: 100% 100%;
  6626. transform-origin: 100% 100%;
  6627. }
  6628. /* Sub-object: `uk-animation-hover`
  6629. ========================================================================== */
  6630. /*
  6631. * Enable animation only on hover
  6632. * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
  6633. */
  6634. .uk-animation-hover:not(:hover),
  6635. .uk-animation-hover:not(:hover) [class*='uk-animation-'],
  6636. .uk-touch .uk-animation-hover:not(.uk-hover),
  6637. .uk-touch .uk-animation-hover:not(.uk-hover) [class*='uk-animation-'] {
  6638. -webkit-animation-name: none;
  6639. animation-name: none;
  6640. }
  6641. /* Keyframes: Fade
  6642. * Used by dropdown, datepicker and slideshow component
  6643. ========================================================================== */
  6644. @-webkit-keyframes uk-fade {
  6645. 0% {
  6646. opacity: 0;
  6647. }
  6648. 100% {
  6649. opacity: 1;
  6650. }
  6651. }
  6652. @keyframes uk-fade {
  6653. 0% {
  6654. opacity: 0;
  6655. }
  6656. 100% {
  6657. opacity: 1;
  6658. }
  6659. }
  6660. /* Keyframes: Fade with slide
  6661. ========================================================================== */
  6662. /*
  6663. * Top
  6664. */
  6665. @-webkit-keyframes uk-fade-top {
  6666. 0% {
  6667. opacity: 0;
  6668. -webkit-transform: translateY(-100%);
  6669. }
  6670. 100% {
  6671. opacity: 1;
  6672. -webkit-transform: translateY(0);
  6673. }
  6674. }
  6675. @keyframes uk-fade-top {
  6676. 0% {
  6677. opacity: 0;
  6678. transform: translateY(-100%);
  6679. }
  6680. 100% {
  6681. opacity: 1;
  6682. transform: translateY(0);
  6683. }
  6684. }
  6685. /*
  6686. * Bottom
  6687. */
  6688. @-webkit-keyframes uk-fade-bottom {
  6689. 0% {
  6690. opacity: 0;
  6691. -webkit-transform: translateY(100%);
  6692. }
  6693. 100% {
  6694. opacity: 1;
  6695. -webkit-transform: translateY(0);
  6696. }
  6697. }
  6698. @keyframes uk-fade-bottom {
  6699. 0% {
  6700. opacity: 0;
  6701. transform: translateY(100%);
  6702. }
  6703. 100% {
  6704. opacity: 1;
  6705. transform: translateY(0);
  6706. }
  6707. }
  6708. /*
  6709. * Left
  6710. */
  6711. @-webkit-keyframes uk-fade-left {
  6712. 0% {
  6713. opacity: 0;
  6714. -webkit-transform: translateX(-100%);
  6715. }
  6716. 100% {
  6717. opacity: 1;
  6718. -webkit-transform: translateX(0);
  6719. }
  6720. }
  6721. @keyframes uk-fade-left {
  6722. 0% {
  6723. opacity: 0;
  6724. transform: translateX(-100%);
  6725. }
  6726. 100% {
  6727. opacity: 1;
  6728. transform: translateX(0);
  6729. }
  6730. }
  6731. /*
  6732. * Right
  6733. */
  6734. @-webkit-keyframes uk-fade-right {
  6735. 0% {
  6736. opacity: 0;
  6737. -webkit-transform: translateX(100%);
  6738. }
  6739. 100% {
  6740. opacity: 1;
  6741. -webkit-transform: translateX(0);
  6742. }
  6743. }
  6744. @keyframes uk-fade-right {
  6745. 0% {
  6746. opacity: 0;
  6747. transform: translateX(100%);
  6748. }
  6749. 100% {
  6750. opacity: 1;
  6751. transform: translateX(0);
  6752. }
  6753. }
  6754. /* Keyframes: Fade with scale
  6755. ========================================================================== */
  6756. /*
  6757. * Scale by 0.2
  6758. */
  6759. @-webkit-keyframes uk-fade-scale-02 {
  6760. 0% {
  6761. opacity: 0;
  6762. -webkit-transform: scale(0.2);
  6763. }
  6764. 100% {
  6765. opacity: 1;
  6766. -webkit-transform: scale(1);
  6767. }
  6768. }
  6769. @keyframes uk-fade-scale-02 {
  6770. 0% {
  6771. opacity: 0;
  6772. transform: scale(0.2);
  6773. }
  6774. 100% {
  6775. opacity: 1;
  6776. transform: scale(1);
  6777. }
  6778. }
  6779. /*
  6780. * Scale by 1.5
  6781. * Used by slideshow component
  6782. */
  6783. @-webkit-keyframes uk-fade-scale-15 {
  6784. 0% {
  6785. opacity: 0;
  6786. -webkit-transform: scale(1.5);
  6787. }
  6788. 100% {
  6789. opacity: 1;
  6790. -webkit-transform: scale(1);
  6791. }
  6792. }
  6793. @keyframes uk-fade-scale-15 {
  6794. 0% {
  6795. opacity: 0;
  6796. transform: scale(1.5);
  6797. }
  6798. 100% {
  6799. opacity: 1;
  6800. transform: scale(1);
  6801. }
  6802. }
  6803. /*
  6804. * Scale by 1.8
  6805. */
  6806. @-webkit-keyframes uk-fade-scale-18 {
  6807. 0% {
  6808. opacity: 0;
  6809. -webkit-transform: scale(1.8);
  6810. }
  6811. 100% {
  6812. opacity: 1;
  6813. -webkit-transform: scale(1);
  6814. }
  6815. }
  6816. @keyframes uk-fade-scale-18 {
  6817. 0% {
  6818. opacity: 0;
  6819. transform: scale(1.8);
  6820. }
  6821. 100% {
  6822. opacity: 1;
  6823. transform: scale(1);
  6824. }
  6825. }
  6826. /* Keyframes: Slide
  6827. * Used by slideshow component
  6828. ========================================================================== */
  6829. /*
  6830. * Left
  6831. */
  6832. @-webkit-keyframes uk-slide-left {
  6833. 0% {
  6834. -webkit-transform: translateX(-100%);
  6835. }
  6836. 100% {
  6837. -webkit-transform: translateX(0);
  6838. }
  6839. }
  6840. @keyframes uk-slide-left {
  6841. 0% {
  6842. transform: translateX(-100%);
  6843. }
  6844. 100% {
  6845. transform: translateX(0);
  6846. }
  6847. }
  6848. /*
  6849. * Right
  6850. */
  6851. @-webkit-keyframes uk-slide-right {
  6852. 0% {
  6853. -webkit-transform: translateX(100%);
  6854. }
  6855. 100% {
  6856. -webkit-transform: translateX(0);
  6857. }
  6858. }
  6859. @keyframes uk-slide-right {
  6860. 0% {
  6861. transform: translateX(100%);
  6862. }
  6863. 100% {
  6864. transform: translateX(0);
  6865. }
  6866. }
  6867. /*
  6868. * Left third
  6869. */
  6870. @-webkit-keyframes uk-slide-left-33 {
  6871. 0% {
  6872. -webkit-transform: translateX(33%);
  6873. }
  6874. 100% {
  6875. -webkit-transform: translateX(0);
  6876. }
  6877. }
  6878. @keyframes uk-slide-left-33 {
  6879. 0% {
  6880. transform: translateX(33%);
  6881. }
  6882. 100% {
  6883. transform: translateX(0);
  6884. }
  6885. }
  6886. /*
  6887. * Right third
  6888. */
  6889. @-webkit-keyframes uk-slide-right-33 {
  6890. 0% {
  6891. -webkit-transform: translateX(-33%);
  6892. }
  6893. 100% {
  6894. -webkit-transform: translateX(0);
  6895. }
  6896. }
  6897. @keyframes uk-slide-right-33 {
  6898. 0% {
  6899. transform: translateX(-33%);
  6900. }
  6901. 100% {
  6902. transform: translateX(0);
  6903. }
  6904. }
  6905. /* Keyframes: Scale
  6906. ========================================================================== */
  6907. @-webkit-keyframes uk-scale-12 {
  6908. 0% {
  6909. -webkit-transform: scale(1.2);
  6910. }
  6911. 100% {
  6912. -webkit-transform: scale(1);
  6913. }
  6914. }
  6915. @keyframes uk-scale-12 {
  6916. 0% {
  6917. transform: scale(1.2);
  6918. }
  6919. 100% {
  6920. transform: scale(1);
  6921. }
  6922. }
  6923. /* Keyframes: Rotate
  6924. * Used by icon component
  6925. ========================================================================== */
  6926. @-webkit-keyframes uk-rotate {
  6927. 0% {
  6928. -webkit-transform: rotate(0deg);
  6929. }
  6930. 100% {
  6931. -webkit-transform: rotate(359deg);
  6932. }
  6933. }
  6934. @keyframes uk-rotate {
  6935. 0% {
  6936. transform: rotate(0deg);
  6937. }
  6938. 100% {
  6939. transform: rotate(359deg);
  6940. }
  6941. }
  6942. /* Keyframes: Shake
  6943. ========================================================================== */
  6944. @-webkit-keyframes uk-shake {
  6945. 0%,
  6946. 100% {
  6947. -webkit-transform: translateX(0);
  6948. }
  6949. 10% {
  6950. -webkit-transform: translateX(-9px);
  6951. }
  6952. 20% {
  6953. -webkit-transform: translateX(8px);
  6954. }
  6955. 30% {
  6956. -webkit-transform: translateX(-7px);
  6957. }
  6958. 40% {
  6959. -webkit-transform: translateX(6px);
  6960. }
  6961. 50% {
  6962. -webkit-transform: translateX(-5px);
  6963. }
  6964. 60% {
  6965. -webkit-transform: translateX(4px);
  6966. }
  6967. 70% {
  6968. -webkit-transform: translateX(-3px);
  6969. }
  6970. 80% {
  6971. -webkit-transform: translateX(2px);
  6972. }
  6973. 90% {
  6974. -webkit-transform: translateX(-1px);
  6975. }
  6976. }
  6977. @keyframes uk-shake {
  6978. 0%,
  6979. 100% {
  6980. transform: translateX(0);
  6981. }
  6982. 10% {
  6983. transform: translateX(-9px);
  6984. }
  6985. 20% {
  6986. transform: translateX(8px);
  6987. }
  6988. 30% {
  6989. transform: translateX(-7px);
  6990. }
  6991. 40% {
  6992. transform: translateX(6px);
  6993. }
  6994. 50% {
  6995. transform: translateX(-5px);
  6996. }
  6997. 60% {
  6998. transform: translateX(4px);
  6999. }
  7000. 70% {
  7001. transform: translateX(-3px);
  7002. }
  7003. 80% {
  7004. transform: translateX(2px);
  7005. }
  7006. 90% {
  7007. transform: translateX(-1px);
  7008. }
  7009. }
  7010. /* Keyframes: Fade with slide fixed
  7011. * Used by dropdown and search component
  7012. ========================================================================== */
  7013. /*
  7014. * Top fixed
  7015. */
  7016. @-webkit-keyframes uk-slide-top-fixed {
  7017. 0% {
  7018. opacity: 0;
  7019. -webkit-transform: translateY(-10px);
  7020. }
  7021. 100% {
  7022. opacity: 1;
  7023. -webkit-transform: translateY(0);
  7024. }
  7025. }
  7026. @keyframes uk-slide-top-fixed {
  7027. 0% {
  7028. opacity: 0;
  7029. transform: translateY(-10px);
  7030. }
  7031. 100% {
  7032. opacity: 1;
  7033. transform: translateY(0);
  7034. }
  7035. }
  7036. /*
  7037. * Bottom fixed
  7038. */
  7039. @-webkit-keyframes uk-slide-bottom-fixed {
  7040. 0% {
  7041. opacity: 0;
  7042. -webkit-transform: translateY(10px);
  7043. }
  7044. 100% {
  7045. opacity: 1;
  7046. -webkit-transform: translateY(0);
  7047. }
  7048. }
  7049. @keyframes uk-slide-bottom-fixed {
  7050. 0% {
  7051. opacity: 0;
  7052. transform: translateY(10px);
  7053. }
  7054. 100% {
  7055. opacity: 1;
  7056. transform: translateY(0);
  7057. }
  7058. }
  7059. /* ========================================================================
  7060. Component: Dropdown
  7061. ========================================================================== */
  7062. /*
  7063. * 1. Hide by default
  7064. * 2. Set position
  7065. * 3. Box-sizing is needed for `uk-dropdown-justify`
  7066. * 4. Set width
  7067. */
  7068. .uk-dropdown,
  7069. .uk-dropdown-blank {
  7070. /* 1 */
  7071. display: none;
  7072. /* 2 */
  7073. position: absolute;
  7074. z-index: 1020;
  7075. /* 3 */
  7076. box-sizing: border-box;
  7077. /* 4 */
  7078. width: 220px;
  7079. }
  7080. /*
  7081. * Dropdown style
  7082. * 1. Reset button group whitespace hack
  7083. */
  7084. .uk-dropdown {
  7085. padding: 15px;
  7086. background: #ffffff;
  7087. color: #444444;
  7088. /* 1 */
  7089. font-size: 1rem;
  7090. vertical-align: top;
  7091. border: 1px solid #cbcbcb;
  7092. border-radius: 4px;
  7093. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  7094. }
  7095. /* Focus */
  7096. .uk-dropdown:focus {
  7097. outline: none;
  7098. }
  7099. /*
  7100. * 1. Show dropdown
  7101. * 2. Set animation
  7102. * 3. Needed for scale animation
  7103. */
  7104. .uk-open > .uk-dropdown,
  7105. .uk-open > .uk-dropdown-blank {
  7106. /* 1 */
  7107. display: block;
  7108. /* 2 */
  7109. -webkit-animation: uk-fade 0.2s ease-in-out;
  7110. animation: uk-fade 0.2s ease-in-out;
  7111. /* 3 */
  7112. -webkit-transform-origin: 0 0;
  7113. transform-origin: 0 0;
  7114. }
  7115. /* Alignment modifiers
  7116. ========================================================================== */
  7117. /*
  7118. * Modifier
  7119. */
  7120. .uk-dropdown-top {
  7121. margin-top: -5px;
  7122. }
  7123. .uk-dropdown-bottom {
  7124. margin-top: 5px;
  7125. }
  7126. .uk-dropdown-left {
  7127. margin-left: -5px;
  7128. }
  7129. .uk-dropdown-right {
  7130. margin-left: 5px;
  7131. }
  7132. /* Nav in dropdown
  7133. ========================================================================== */
  7134. .uk-dropdown .uk-nav {
  7135. margin: 0 -15px;
  7136. }
  7137. /* Grid and panel in dropdown
  7138. ========================================================================== */
  7139. /*
  7140. * Vertical gutter
  7141. */
  7142. /*
  7143. * Grid
  7144. * Higher specificity to override large gutter
  7145. */
  7146. .uk-grid .uk-dropdown-grid + .uk-dropdown-grid {
  7147. margin-top: 15px;
  7148. }
  7149. /* Panels */
  7150. .uk-dropdown-grid > [class*='uk-width-'] > .uk-panel + .uk-panel {
  7151. margin-top: 15px;
  7152. }
  7153. /* Tablet and bigger */
  7154. @media (min-width: 768px) {
  7155. /*
  7156. * Horizontal gutter
  7157. */
  7158. .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid {
  7159. margin-left: -15px;
  7160. margin-right: -15px;
  7161. }
  7162. .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-'] {
  7163. padding-left: 15px;
  7164. padding-right: 15px;
  7165. }
  7166. /*
  7167. * Column divider
  7168. */
  7169. .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
  7170. border-left: 1px solid #dddddd;
  7171. }
  7172. /*
  7173. * Width multiplier for dropdown columns
  7174. */
  7175. .uk-dropdown-width-2:not(.uk-dropdown-stack) {
  7176. width: 440px;
  7177. }
  7178. .uk-dropdown-width-3:not(.uk-dropdown-stack) {
  7179. width: 660px;
  7180. }
  7181. .uk-dropdown-width-4:not(.uk-dropdown-stack) {
  7182. width: 880px;
  7183. }
  7184. .uk-dropdown-width-5:not(.uk-dropdown-stack) {
  7185. width: 1100px;
  7186. }
  7187. }
  7188. /* Phone landscape and smaller */
  7189. @media (max-width: 767px) {
  7190. /*
  7191. * Stack columns and take full width
  7192. */
  7193. .uk-dropdown-grid > [class*='uk-width-'] {
  7194. width: 100%;
  7195. }
  7196. /*
  7197. * Vertical gutter
  7198. */
  7199. .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
  7200. margin-top: 15px;
  7201. }
  7202. }
  7203. /*
  7204. * Stack grid columns
  7205. */
  7206. .uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-'] {
  7207. width: 100%;
  7208. }
  7209. .uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
  7210. margin-top: 15px;
  7211. }
  7212. /* Modifier `uk-dropdown-small`
  7213. ========================================================================== */
  7214. /*
  7215. * Set min-width and text expands dropdown if needed
  7216. */
  7217. .uk-dropdown-small {
  7218. min-width: 150px;
  7219. width: auto;
  7220. padding: 5px;
  7221. white-space: nowrap;
  7222. }
  7223. /*
  7224. * Nav in dropdown
  7225. */
  7226. .uk-dropdown-small .uk-nav {
  7227. margin: 0 -5px;
  7228. }
  7229. /* Modifier: `uk-dropdown-navbar`
  7230. ========================================================================== */
  7231. .uk-dropdown-navbar {
  7232. margin-top: 6px;
  7233. background: #ffffff;
  7234. color: #444444;
  7235. left: -1px;
  7236. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  7237. }
  7238. .uk-open > .uk-dropdown-navbar {
  7239. -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  7240. animation: uk-slide-top-fixed 0.2s ease-in-out;
  7241. }
  7242. /* Modifier `uk-dropdown-scrollable`
  7243. ========================================================================== */
  7244. /*
  7245. * Usefull for long lists
  7246. */
  7247. .uk-dropdown-scrollable {
  7248. overflow-y: auto;
  7249. max-height: 200px;
  7250. }
  7251. /* Sub-object: `uk-dropdown-overlay`
  7252. ========================================================================== */
  7253. .uk-dropdown-navbar.uk-dropdown-flip {
  7254. left: auto;
  7255. }
  7256. /* ========================================================================
  7257. Component: Modal
  7258. ========================================================================== */
  7259. /*
  7260. * This is the modal overlay and modal dialog container
  7261. * 1. Hide by default
  7262. * 2. Set fixed position
  7263. * 3. Allow scrolling for the modal dialog
  7264. * 4. Mask the background page
  7265. * 5. Fade-in transition
  7266. * 6. Deactivate browser history navigation in IE11
  7267. * 7. force hardware acceleration to prevent browser rendering hiccups
  7268. */
  7269. .uk-modal {
  7270. /* 1 */
  7271. display: none;
  7272. /* 2 */
  7273. position: fixed;
  7274. top: 0;
  7275. right: 0;
  7276. bottom: 0;
  7277. left: 0;
  7278. z-index: 1010;
  7279. /* 3 */
  7280. overflow-y: auto;
  7281. -webkit-overflow-scrolling: touch;
  7282. /* 4 */
  7283. background: rgba(0, 0, 0, 0.6);
  7284. /* 5 */
  7285. opacity: 0;
  7286. -webkit-transition: opacity 0.15s linear;
  7287. transition: opacity 0.15s linear;
  7288. /* 6 */
  7289. touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  7290. /* 7 */
  7291. -webkit-transform: translateZ(0);
  7292. transform: translateZ(0);
  7293. }
  7294. /*
  7295. * Open state
  7296. */
  7297. .uk-modal.uk-open {
  7298. opacity: 1;
  7299. }
  7300. /*
  7301. * Prevents duplicated scrollbar caused by 4.
  7302. */
  7303. .uk-modal-page,
  7304. .uk-modal-page body {
  7305. overflow: hidden;
  7306. }
  7307. /* Sub-object: `uk-modal-dialog`
  7308. ========================================================================== */
  7309. /*
  7310. * 1. Create position context for caption, spinner and close button
  7311. * 2. Set box sizing
  7312. * 3. Set style
  7313. * 4. Slide-in transition
  7314. */
  7315. .uk-modal-dialog {
  7316. /* 1 */
  7317. position: relative;
  7318. /* 2 */
  7319. box-sizing: border-box;
  7320. margin: 50px auto;
  7321. padding: 20px;
  7322. width: 600px;
  7323. max-width: 100%;
  7324. max-width: calc(100% - 20px);
  7325. /* 3 */
  7326. background: #ffffff;
  7327. /* 4 */
  7328. opacity: 0;
  7329. -webkit-transform: translateY(-100px);
  7330. transform: translateY(-100px);
  7331. -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  7332. transition: opacity 0.3s linear, transform 0.3s ease-out;
  7333. border-radius: 4px;
  7334. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  7335. }
  7336. /* Phone landscape and smaller */
  7337. @media (max-width: 767px) {
  7338. /*
  7339. * Fit in small screen
  7340. */
  7341. .uk-modal-dialog {
  7342. width: auto;
  7343. margin: 10px auto;
  7344. }
  7345. }
  7346. /*
  7347. * Open state
  7348. */
  7349. .uk-open .uk-modal-dialog {
  7350. /* 4 */
  7351. opacity: 1;
  7352. -webkit-transform: translateY(0);
  7353. transform: translateY(0);
  7354. }
  7355. /*
  7356. * Remove margin from the last-child
  7357. */
  7358. .uk-modal-dialog > :not([class*='uk-modal-']):last-child {
  7359. margin-bottom: 0;
  7360. }
  7361. /* Close in modal
  7362. ========================================================================== */
  7363. .uk-modal-dialog > .uk-close:first-child {
  7364. margin: -10px -10px 0 0;
  7365. float: right;
  7366. }
  7367. /*
  7368. * Remove margin from adjacent element
  7369. */
  7370. .uk-modal-dialog > .uk-close:first-child + :not([class*='uk-modal-']) {
  7371. margin-top: 0;
  7372. }
  7373. /* Modifier: `uk-modal-dialog-lightbox`
  7374. ========================================================================== */
  7375. .uk-modal-dialog-lightbox {
  7376. margin: 15px auto;
  7377. padding: 0;
  7378. max-width: 95%;
  7379. max-width: calc(100% - 30px);
  7380. min-height: 50px;
  7381. border-radius: 0;
  7382. }
  7383. /*
  7384. * Close button
  7385. */
  7386. .uk-modal-dialog-lightbox > .uk-close:first-child {
  7387. position: absolute;
  7388. top: -12px;
  7389. right: -12px;
  7390. margin: 0;
  7391. float: none;
  7392. }
  7393. /* Phone landscape and smaller */
  7394. @media (max-width: 767px) {
  7395. .uk-modal-dialog-lightbox > .uk-close:first-child {
  7396. top: -7px;
  7397. right: -7px;
  7398. }
  7399. }
  7400. /* Modifier: `uk-modal-dialog-blank`
  7401. ========================================================================== */
  7402. .uk-modal-dialog-blank {
  7403. margin: 0;
  7404. padding: 0;
  7405. width: 100%;
  7406. max-width: 100%;
  7407. -webkit-transition: opacity 0.3s linear;
  7408. transition: opacity 0.3s linear;
  7409. }
  7410. /*
  7411. * Close button
  7412. */
  7413. .uk-modal-dialog-blank > .uk-close:first-child {
  7414. position: absolute;
  7415. top: 20px;
  7416. right: 20px;
  7417. z-index: 1;
  7418. margin: 0;
  7419. float: none;
  7420. }
  7421. /* Modifier: `uk-modal-dialog-large`
  7422. ========================================================================== */
  7423. /* Tablet and bigger */
  7424. @media (min-width: 768px) {
  7425. .uk-modal-dialog-large {
  7426. width: 930px;
  7427. }
  7428. }
  7429. /* Large screen and bigger */
  7430. @media (min-width: 1220px) {
  7431. .uk-modal-dialog-large {
  7432. width: 1130px;
  7433. }
  7434. }
  7435. /* Sub-Object: `uk-modal-header` and `uk-modal-footer`
  7436. ========================================================================== */
  7437. .uk-modal-header {
  7438. margin-bottom: 20px;
  7439. margin: -20px -20px 20px -20px;
  7440. padding: 20px;
  7441. border-bottom: 1px solid #dddddd;
  7442. border-radius: 4px 4px 0 0;
  7443. background: #fafafa;
  7444. }
  7445. .uk-modal-footer {
  7446. margin-top: 20px;
  7447. margin: 20px -20px -20px -20px;
  7448. padding: 20px;
  7449. border-top: 1px solid #dddddd;
  7450. border-radius: 0 0 4px 4px;
  7451. background: #fafafa;
  7452. }
  7453. /*
  7454. * Remove margin from the last-child
  7455. */
  7456. .uk-modal-header > :last-child,
  7457. .uk-modal-footer > :last-child {
  7458. margin-bottom: 0;
  7459. }
  7460. /* Sub-Object: `uk-modal-caption`
  7461. ========================================================================== */
  7462. .uk-modal-caption {
  7463. position: absolute;
  7464. left: 0;
  7465. right: 0;
  7466. bottom: -20px;
  7467. margin-bottom: -10px;
  7468. color: #ffffff;
  7469. text-align: center;
  7470. overflow: hidden;
  7471. text-overflow: ellipsis;
  7472. white-space: nowrap;
  7473. }
  7474. /* Sub-Object: `uk-modal-spinner`
  7475. ========================================================================== */
  7476. .uk-modal-spinner {
  7477. position: absolute;
  7478. top: 50%;
  7479. left: 50%;
  7480. -webkit-transform: translate(-50%, -50%);
  7481. transform: translate(-50%, -50%);
  7482. font-size: 25px;
  7483. color: #ddd;
  7484. }
  7485. .uk-modal-spinner:after {
  7486. content: "\f110";
  7487. display: block;
  7488. font-family: FontAwesome;
  7489. -webkit-animation: uk-rotate 2s infinite linear;
  7490. animation: uk-rotate 2s infinite linear;
  7491. }
  7492. /* ========================================================================
  7493. Component: Off-canvas
  7494. ========================================================================== */
  7495. /*
  7496. * This is the offcanvas overlay and bar container
  7497. * 1. Hide by default
  7498. * 2. Set fixed position
  7499. * 3. Deactivate browser touch actions in IE11
  7500. * 4. Mask the background page
  7501. */
  7502. .uk-offcanvas {
  7503. /* 1 */
  7504. display: none;
  7505. /* 2 */
  7506. position: fixed;
  7507. top: 0;
  7508. right: 0;
  7509. bottom: 0;
  7510. left: 0;
  7511. z-index: 1000;
  7512. /* 3 */
  7513. touch-action: none;
  7514. /* 4 */
  7515. background: rgba(0, 0, 0, 0.1);
  7516. }
  7517. .uk-offcanvas.uk-active {
  7518. display: block;
  7519. }
  7520. /* Sub-object `uk-offcanvas-page`
  7521. ========================================================================== */
  7522. /*
  7523. * Prepares the whole HTML page to slide-out
  7524. * 1. Fix the main page and disallow scrolling
  7525. * 2. Side-out transition
  7526. * 3. Needed for the transition to work instead of just letting it pop to the side
  7527. */
  7528. .uk-offcanvas-page {
  7529. /* 1 */
  7530. position: fixed;
  7531. /* 2 */
  7532. -webkit-transition: margin-left 0.3s ease-in-out;
  7533. transition: margin-left 0.3s ease-in-out;
  7534. /* 3 */
  7535. margin-left: 0;
  7536. }
  7537. /* Sub-object `uk-offcanvas-bar`
  7538. ========================================================================== */
  7539. /*
  7540. * This is the offcanvas bar
  7541. * 1. Set fixed position
  7542. * 2. Size and style
  7543. * 3. Allow scrolling
  7544. * 4. Side-out transition
  7545. * 5. Deactivate scroll chaining in IE11
  7546. */
  7547. .uk-offcanvas-bar {
  7548. /* 1 */
  7549. position: fixed;
  7550. top: 0;
  7551. bottom: 0;
  7552. left: 0;
  7553. -webkit-transform: translateX(-100%);
  7554. transform: translateX(-100%);
  7555. z-index: 1001;
  7556. /* 2 */
  7557. width: 270px;
  7558. max-width: 100%;
  7559. background: #333333;
  7560. /* 3 */
  7561. overflow-y: auto;
  7562. -webkit-overflow-scrolling: touch;
  7563. /* 4 */
  7564. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  7565. transition: transform 0.3s ease-in-out;
  7566. /* 5 */
  7567. -ms-scroll-chaining: none;
  7568. }
  7569. .uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  7570. -webkit-transform: translateX(0%);
  7571. transform: translateX(0%);
  7572. }
  7573. /* Modifier `uk-offcanvas-bar-flip`
  7574. ========================================================================== */
  7575. .uk-offcanvas-bar-flip {
  7576. left: auto;
  7577. right: 0;
  7578. -webkit-transform: translateX(100%);
  7579. transform: translateX(100%);
  7580. }
  7581. /* Offcanvase modes
  7582. ========================================================================== */
  7583. .uk-offcanvas-bar[mode='none'] {
  7584. -webkit-transition: none;
  7585. transition: none;
  7586. }
  7587. .uk-offcanvas-bar[mode='reveal'] {
  7588. -webkit-transform: translateX(0%);
  7589. transform: translateX(0%);
  7590. clip: rect(0, 0, 100vh, 0);
  7591. -webkit-transition: -webkit-transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  7592. transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  7593. }
  7594. .uk-offcanvas-bar-flip[mode='reveal'] {
  7595. clip: none;
  7596. -webkit-transform: translateX(100%);
  7597. transform: translateX(100%);
  7598. }
  7599. .uk-offcanvas-bar-flip[mode='reveal'] > * {
  7600. -webkit-transform: translateX(-100%);
  7601. transform: translateX(-100%);
  7602. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  7603. transition: transform 0.3s ease-in-out;
  7604. }
  7605. .uk-offcanvas.uk-active .uk-offcanvas-bar-flip[mode='reveal'].uk-offcanvas-bar-show > * {
  7606. -webkit-transform: translateX(0%);
  7607. transform: translateX(0%);
  7608. }
  7609. /* Panel in offcanvas
  7610. ========================================================================== */
  7611. .uk-offcanvas .uk-panel {
  7612. margin: 20px 15px;
  7613. color: #777777;
  7614. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  7615. }
  7616. .uk-offcanvas .uk-panel-title {
  7617. color: #cccccc;
  7618. }
  7619. .uk-offcanvas .uk-panel a:not([class]) {
  7620. color: #cccccc;
  7621. }
  7622. .uk-offcanvas .uk-panel a:not([class]):hover {
  7623. color: #ffffff;
  7624. }
  7625. .uk-offcanvas-bar:after {
  7626. content: "";
  7627. display: block;
  7628. position: absolute;
  7629. top: 0;
  7630. bottom: 0;
  7631. right: 0;
  7632. width: 1px;
  7633. background: rgba(0, 0, 0, 0.6);
  7634. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
  7635. }
  7636. .uk-offcanvas-bar-flip:after {
  7637. right: auto;
  7638. left: 0;
  7639. width: 1px;
  7640. background: rgba(0, 0, 0, 0.6);
  7641. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
  7642. }
  7643. /* ========================================================================
  7644. Component: Switcher
  7645. ========================================================================== */
  7646. /*
  7647. * 1. Deactivate browser history navigation in IE11
  7648. */
  7649. .uk-switcher {
  7650. margin: 0;
  7651. padding: 0;
  7652. list-style: none;
  7653. /* 1 */
  7654. touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  7655. }
  7656. /*
  7657. * Items
  7658. */
  7659. .uk-switcher > :not(.uk-active) {
  7660. display: none;
  7661. }
  7662. /* ========================================================================
  7663. Component: Text
  7664. ========================================================================== */
  7665. /* Size modifiers
  7666. ========================================================================== */
  7667. .uk-text-small {
  7668. font-size: 11px;
  7669. line-height: 16px;
  7670. }
  7671. .uk-text-large {
  7672. font-size: 18px;
  7673. line-height: 24px;
  7674. font-weight: normal;
  7675. }
  7676. /* Weight modifiers
  7677. ========================================================================== */
  7678. .uk-text-bold {
  7679. font-weight: bold;
  7680. }
  7681. /* Color modifiers
  7682. ========================================================================== */
  7683. .uk-text-muted {
  7684. color: #999999 !important;
  7685. }
  7686. .uk-text-primary {
  7687. color: #2d7091 !important;
  7688. }
  7689. .uk-text-success {
  7690. color: #659f13 !important;
  7691. }
  7692. .uk-text-warning {
  7693. color: #e28327 !important;
  7694. }
  7695. .uk-text-danger {
  7696. color: #d85030 !important;
  7697. }
  7698. .uk-text-contrast {
  7699. color: #ffffff !important;
  7700. }
  7701. /* Alignment modifiers
  7702. ========================================================================== */
  7703. .uk-text-left {
  7704. text-align: left !important;
  7705. }
  7706. .uk-text-right {
  7707. text-align: right !important;
  7708. }
  7709. .uk-text-center {
  7710. text-align: center !important;
  7711. }
  7712. .uk-text-justify {
  7713. text-align: justify !important;
  7714. }
  7715. .uk-text-top {
  7716. vertical-align: top !important;
  7717. }
  7718. .uk-text-middle {
  7719. vertical-align: middle !important;
  7720. }
  7721. .uk-text-bottom {
  7722. vertical-align: bottom !important;
  7723. }
  7724. /* Only tablets portrait and smaller */
  7725. @media (max-width: 959px) {
  7726. .uk-text-center-medium {
  7727. text-align: center !important;
  7728. }
  7729. .uk-text-left-medium {
  7730. text-align: left !important;
  7731. }
  7732. }
  7733. /* Phone landscape and smaller */
  7734. @media (max-width: 767px) {
  7735. .uk-text-center-small {
  7736. text-align: center !important;
  7737. }
  7738. .uk-text-left-small {
  7739. text-align: left !important;
  7740. }
  7741. }
  7742. /* Wrap modifiers
  7743. ========================================================================== */
  7744. /*
  7745. * Prevent text from wrapping onto multiple lines
  7746. */
  7747. .uk-text-nowrap {
  7748. white-space: nowrap;
  7749. }
  7750. /*
  7751. * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
  7752. */
  7753. .uk-text-truncate {
  7754. overflow: hidden;
  7755. text-overflow: ellipsis;
  7756. white-space: nowrap;
  7757. }
  7758. /*
  7759. * Break strings if their length exceeds the width of their container
  7760. */
  7761. .uk-text-break {
  7762. word-wrap: break-word;
  7763. -webkit-hyphens: auto;
  7764. -ms-hyphens: auto;
  7765. -moz-hyphens: auto;
  7766. hyphens: auto;
  7767. }
  7768. /* Transform modifiers
  7769. ========================================================================== */
  7770. .uk-text-capitalize {
  7771. text-transform: capitalize !important;
  7772. }
  7773. .uk-text-lowercase {
  7774. text-transform: lowercase !important;
  7775. }
  7776. .uk-text-uppercase {
  7777. text-transform: uppercase !important;
  7778. }
  7779. /* ========================================================================
  7780. Component: Utility
  7781. ========================================================================== */
  7782. /* Container
  7783. ========================================================================== */
  7784. .uk-container {
  7785. box-sizing: border-box;
  7786. max-width: 980px;
  7787. padding: 0 25px;
  7788. }
  7789. /* Large screen and bigger */
  7790. @media (min-width: 1220px) {
  7791. .uk-container {
  7792. max-width: 1200px;
  7793. padding: 0 35px;
  7794. }
  7795. }
  7796. /*
  7797. * Micro clearfix
  7798. */
  7799. .uk-container:before,
  7800. .uk-container:after {
  7801. content: "";
  7802. display: table;
  7803. }
  7804. .uk-container:after {
  7805. clear: both;
  7806. }
  7807. /*
  7808. * Center container
  7809. */
  7810. .uk-container-center {
  7811. margin-left: auto;
  7812. margin-right: auto;
  7813. }
  7814. /* Clearing
  7815. ========================================================================== */
  7816. /*
  7817. * Micro clearfix
  7818. * `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
  7819. * `table` is used again with `:after` because `clear` only works with block elements.
  7820. * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
  7821. */
  7822. .uk-clearfix:before {
  7823. content: "";
  7824. display: table-cell;
  7825. }
  7826. .uk-clearfix:after {
  7827. content: "";
  7828. display: table;
  7829. clear: both;
  7830. }
  7831. /*
  7832. * Create a new block formatting context
  7833. */
  7834. .uk-nbfc {
  7835. overflow: hidden;
  7836. }
  7837. .uk-nbfc-alt {
  7838. display: table-cell;
  7839. width: 10000px;
  7840. }
  7841. /* Alignment of block elements
  7842. ========================================================================== */
  7843. /*
  7844. * Float blocks
  7845. * 1. Prevent content overflow on small devices
  7846. */
  7847. .uk-float-left {
  7848. float: left;
  7849. }
  7850. .uk-float-right {
  7851. float: right;
  7852. }
  7853. /* 1 */
  7854. [class*='uk-float-'] {
  7855. max-width: 100%;
  7856. }
  7857. /* Alignment of images and objects
  7858. ========================================================================== */
  7859. /*
  7860. * Alignment
  7861. */
  7862. [class*='uk-align-'] {
  7863. display: block;
  7864. margin-bottom: 20px;
  7865. }
  7866. .uk-align-left {
  7867. margin-right: 20px;
  7868. float: left;
  7869. }
  7870. .uk-align-right {
  7871. margin-left: 20px;
  7872. float: right;
  7873. }
  7874. /* Tablet and bigger */
  7875. @media (min-width: 768px) {
  7876. .uk-align-medium-left {
  7877. margin-right: 20px;
  7878. float: left;
  7879. }
  7880. .uk-align-medium-right {
  7881. margin-left: 20px;
  7882. float: right;
  7883. }
  7884. }
  7885. .uk-align-center {
  7886. margin-left: auto;
  7887. margin-right: auto;
  7888. }
  7889. /* Vertical alignment
  7890. ========================================================================== */
  7891. /*
  7892. * Remove whitespace between child elements when using `inline-block`
  7893. */
  7894. .uk-vertical-align {
  7895. font-size: 0.001px;
  7896. }
  7897. /*
  7898. * The `uk-vertical-align` container needs a specific height
  7899. */
  7900. .uk-vertical-align:before {
  7901. content: '';
  7902. display: inline-block;
  7903. height: 100%;
  7904. vertical-align: middle;
  7905. }
  7906. /*
  7907. * Sub-object which can have any height
  7908. * 1. Reset whitespace hack
  7909. */
  7910. .uk-vertical-align-middle,
  7911. .uk-vertical-align-bottom {
  7912. display: inline-block;
  7913. max-width: 100%;
  7914. /* 1 */
  7915. font-size: 1rem;
  7916. }
  7917. .uk-vertical-align-middle {
  7918. vertical-align: middle;
  7919. }
  7920. .uk-vertical-align-bottom {
  7921. vertical-align: bottom;
  7922. }
  7923. /* Height
  7924. ========================================================================== */
  7925. /*
  7926. * More robust if padding and border are used
  7927. */
  7928. [class*='uk-height'] {
  7929. box-sizing: border-box;
  7930. }
  7931. /*
  7932. * Useful to extend the `html` and `body` element to the full height of the page.
  7933. */
  7934. .uk-height-1-1 {
  7935. height: 100%;
  7936. }
  7937. /*
  7938. * Useful to create image teasers
  7939. */
  7940. .uk-height-viewport {
  7941. height: 100vh;
  7942. min-height: 600px;
  7943. }
  7944. /* Responsive objects
  7945. * Note: Images are already responsive by default, see Base component
  7946. ========================================================================== */
  7947. /*
  7948. * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
  7949. */
  7950. .uk-responsive-width,
  7951. .uk-responsive-height {
  7952. box-sizing: border-box;
  7953. }
  7954. /*
  7955. * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
  7956. * `important` needed to override `uk-img-preserve img`
  7957. */
  7958. .uk-responsive-width {
  7959. max-width: 100% !important;
  7960. height: auto;
  7961. }
  7962. /*
  7963. * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
  7964. * Only works if the parent element has a fixed height.
  7965. */
  7966. .uk-responsive-height {
  7967. max-height: 100%;
  7968. width: auto;
  7969. }
  7970. /* Margin
  7971. ========================================================================== */
  7972. /*
  7973. * Create a block with the same margin of a paragraph
  7974. * Add margin if adjacent element
  7975. */
  7976. .uk-margin {
  7977. margin-bottom: 20px;
  7978. }
  7979. * + .uk-margin {
  7980. margin-top: 20px;
  7981. }
  7982. .uk-margin-top {
  7983. margin-top: 20px !important;
  7984. }
  7985. .uk-margin-bottom {
  7986. margin-bottom: 20px !important;
  7987. }
  7988. .uk-margin-left {
  7989. margin-left: 20px !important;
  7990. }
  7991. .uk-margin-right {
  7992. margin-right: 20px !important;
  7993. }
  7994. /*
  7995. * Larger margins
  7996. */
  7997. .uk-margin-large {
  7998. margin-bottom: 50px;
  7999. }
  8000. * + .uk-margin-large {
  8001. margin-top: 50px;
  8002. }
  8003. .uk-margin-large-top {
  8004. margin-top: 50px !important;
  8005. }
  8006. .uk-margin-large-bottom {
  8007. margin-bottom: 50px !important;
  8008. }
  8009. .uk-margin-large-left {
  8010. margin-left: 50px !important;
  8011. }
  8012. .uk-margin-large-right {
  8013. margin-right: 50px !important;
  8014. }
  8015. /*
  8016. * Smaller margins
  8017. */
  8018. .uk-margin-small {
  8019. margin-bottom: 5px;
  8020. }
  8021. * + .uk-margin-small {
  8022. margin-top: 5px;
  8023. }
  8024. .uk-margin-small-top {
  8025. margin-top: 5px !important;
  8026. }
  8027. .uk-margin-small-bottom {
  8028. margin-bottom: 5px !important;
  8029. }
  8030. .uk-margin-small-left {
  8031. margin-left: 5px !important;
  8032. }
  8033. .uk-margin-small-right {
  8034. margin-right: 5px !important;
  8035. }
  8036. /*
  8037. * Remove margins
  8038. */
  8039. .uk-margin-remove {
  8040. margin: 0 !important;
  8041. }
  8042. .uk-margin-top-remove {
  8043. margin-top: 0 !important;
  8044. }
  8045. .uk-margin-bottom-remove {
  8046. margin-bottom: 0 !important;
  8047. }
  8048. /* Padding
  8049. ========================================================================== */
  8050. .uk-padding-remove {
  8051. padding: 0 !important;
  8052. }
  8053. .uk-padding-top-remove {
  8054. padding-top: 0 !important;
  8055. }
  8056. .uk-padding-bottom-remove {
  8057. padding-bottom: 0 !important;
  8058. }
  8059. .uk-padding-vertical-remove {
  8060. padding-top: 0 !important;
  8061. padding-bottom: 0 !important;
  8062. }
  8063. /* Border
  8064. ========================================================================== */
  8065. .uk-border-circle {
  8066. border-radius: 50%;
  8067. }
  8068. .uk-border-rounded {
  8069. border-radius: 5px;
  8070. }
  8071. /* Headings
  8072. ========================================================================== */
  8073. .uk-heading-large {
  8074. font-size: 36px;
  8075. line-height: 42px;
  8076. }
  8077. /* Tablet and bigger */
  8078. @media (min-width: 768px) {
  8079. .uk-heading-large {
  8080. font-size: 52px;
  8081. line-height: 64px;
  8082. }
  8083. }
  8084. /* Link
  8085. ========================================================================== */
  8086. /*
  8087. * Let links appear in default text color
  8088. */
  8089. .uk-link-muted,
  8090. .uk-link-muted a {
  8091. color: #444444;
  8092. }
  8093. .uk-link-muted:hover,
  8094. .uk-link-muted a:hover {
  8095. color: #444444;
  8096. }
  8097. /*
  8098. * Reset link style
  8099. */
  8100. .uk-link-reset,
  8101. .uk-link-reset a,
  8102. .uk-link-reset:hover,
  8103. .uk-link-reset a:hover,
  8104. .uk-link-reset:focus,
  8105. .uk-link-reset a:focus {
  8106. color: inherit;
  8107. text-decoration: none;
  8108. }
  8109. /* Scrollable
  8110. ========================================================================== */
  8111. /*
  8112. * Enable scrolling for preformatted text
  8113. */
  8114. .uk-scrollable-text {
  8115. height: 300px;
  8116. overflow-y: scroll;
  8117. -webkit-overflow-scrolling: touch;
  8118. resize: both;
  8119. }
  8120. /*
  8121. * Box with scrolling enabled
  8122. */
  8123. .uk-scrollable-box {
  8124. box-sizing: border-box;
  8125. height: 170px;
  8126. padding: 10px;
  8127. border: 1px solid #dddddd;
  8128. overflow: auto;
  8129. -webkit-overflow-scrolling: touch;
  8130. resize: both;
  8131. border-radius: 3px;
  8132. }
  8133. .uk-scrollable-box > :last-child {
  8134. margin-bottom: 0;
  8135. }
  8136. /* Overflow
  8137. ========================================================================== */
  8138. .uk-overflow-hidden {
  8139. overflow: hidden;
  8140. }
  8141. /*
  8142. * Enable scrollbars if content is clipped
  8143. */
  8144. .uk-overflow-container {
  8145. overflow: auto;
  8146. -webkit-overflow-scrolling: touch;
  8147. }
  8148. .uk-overflow-container > :last-child {
  8149. margin-bottom: 0;
  8150. }
  8151. /* Position
  8152. ========================================================================== */
  8153. .uk-position-absolute,
  8154. [class*='uk-position-top'],
  8155. [class*='uk-position-bottom'] {
  8156. position: absolute !important;
  8157. }
  8158. /* Don't use `width: 100%` because it is wrong if the parent has padding. */
  8159. .uk-position-top {
  8160. top: 0;
  8161. left: 0;
  8162. right: 0;
  8163. }
  8164. .uk-position-bottom {
  8165. bottom: 0;
  8166. left: 0;
  8167. right: 0;
  8168. }
  8169. .uk-position-top-left {
  8170. top: 0;
  8171. left: 0;
  8172. }
  8173. .uk-position-top-right {
  8174. top: 0;
  8175. right: 0;
  8176. }
  8177. .uk-position-bottom-left {
  8178. bottom: 0;
  8179. left: 0;
  8180. }
  8181. .uk-position-bottom-right {
  8182. bottom: 0;
  8183. right: 0;
  8184. }
  8185. /*
  8186. * Cover
  8187. */
  8188. .uk-position-cover {
  8189. position: absolute;
  8190. top: 0;
  8191. bottom: 0;
  8192. left: 0;
  8193. right: 0;
  8194. }
  8195. /*
  8196. * Relative
  8197. */
  8198. .uk-position-relative {
  8199. position: relative !important;
  8200. }
  8201. /*
  8202. * Z-index
  8203. */
  8204. .uk-position-z-index {
  8205. z-index: 1;
  8206. }
  8207. /* Display
  8208. ========================================================================== */
  8209. /*
  8210. * Display
  8211. * 1. Required if child is a responsive image
  8212. */
  8213. .uk-display-block {
  8214. display: block !important;
  8215. }
  8216. .uk-display-inline {
  8217. display: inline !important;
  8218. }
  8219. .uk-display-inline-block {
  8220. display: inline-block !important;
  8221. /* 1 */
  8222. max-width: 100%;
  8223. }
  8224. /*
  8225. * Visibility
  8226. * Avoids setting display to `block` so it works also with `inline-block` and `table`
  8227. */
  8228. /* Desktop and bigger */
  8229. @media (min-width: 960px) {
  8230. .uk-visible-small {
  8231. display: none !important;
  8232. }
  8233. .uk-visible-medium {
  8234. display: none !important;
  8235. }
  8236. .uk-hidden-large {
  8237. display: none !important;
  8238. }
  8239. }
  8240. /* Tablets portrait */
  8241. @media (min-width: 768px) and (max-width: 959px) {
  8242. .uk-visible-small {
  8243. display: none !important;
  8244. }
  8245. .uk-visible-large {
  8246. display: none !important ;
  8247. }
  8248. .uk-hidden-medium {
  8249. display: none !important;
  8250. }
  8251. }
  8252. /* Phone landscape and smaller*/
  8253. @media (max-width: 767px) {
  8254. .uk-visible-medium {
  8255. display: none !important;
  8256. }
  8257. .uk-visible-large {
  8258. display: none !important;
  8259. }
  8260. .uk-hidden-small {
  8261. display: none !important;
  8262. }
  8263. }
  8264. /* Remove from the flow and screen readers on any device */
  8265. .uk-hidden {
  8266. display: none !important;
  8267. visibility: hidden !important;
  8268. }
  8269. /* It's hidden, but still affects layout */
  8270. .uk-invisible {
  8271. visibility: hidden !important;
  8272. }
  8273. /* Show on hover */
  8274. .uk-visible-hover:hover .uk-hidden,
  8275. .uk-visible-hover:hover .uk-invisible {
  8276. display: block !important;
  8277. visibility: visible !important;
  8278. }
  8279. .uk-visible-hover-inline:hover .uk-hidden,
  8280. .uk-visible-hover-inline:hover .uk-invisible {
  8281. display: inline-block !important;
  8282. visibility: visible !important;
  8283. }
  8284. /* Hide on touch */
  8285. .uk-touch .uk-hidden-touch,
  8286. .uk-notouch .uk-hidden-notouch {
  8287. display: none !important;
  8288. }
  8289. /* ========================================================================
  8290. Component: Flex
  8291. ========================================================================== */
  8292. .uk-flex {
  8293. display: -ms-flexbox;
  8294. display: -webkit-flex;
  8295. display: flex;
  8296. }
  8297. .uk-flex-inline {
  8298. display: -ms-inline-flexbox;
  8299. display: -webkit-inline-flex;
  8300. display: inline-flex;
  8301. }
  8302. /*
  8303. * Fixes initial flex-shrink value in IE10
  8304. */
  8305. .uk-flex > *,
  8306. .uk-flex-inline > * {
  8307. -ms-flex-negative: 1;
  8308. }
  8309. /* Alignment
  8310. ========================================================================== */
  8311. /*
  8312. * Vertical alignment
  8313. * Default value is `stretch`
  8314. */
  8315. .uk-flex-top {
  8316. -ms-flex-align: start;
  8317. -webkit-align-items: flex-start;
  8318. align-items: flex-start;
  8319. }
  8320. .uk-flex-middle {
  8321. -ms-flex-align: center;
  8322. -webkit-align-items: center;
  8323. align-items: center;
  8324. }
  8325. .uk-flex-bottom {
  8326. -ms-flex-align: end;
  8327. -webkit-align-items: flex-end;
  8328. align-items: flex-end;
  8329. }
  8330. /*
  8331. * Horizontal alignment
  8332. * Default value is `flex-start`
  8333. */
  8334. .uk-flex-center {
  8335. -ms-flex-pack: center;
  8336. -webkit-justify-content: center;
  8337. justify-content: center;
  8338. }
  8339. .uk-flex-right {
  8340. -ms-flex-pack: end;
  8341. -webkit-justify-content: flex-end;
  8342. justify-content: flex-end;
  8343. }
  8344. .uk-flex-space-between {
  8345. -ms-flex-pack: justify;
  8346. -webkit-justify-content: space-between;
  8347. justify-content: space-between;
  8348. }
  8349. .uk-flex-space-around {
  8350. -ms-flex-pack: distribute;
  8351. -webkit-justify-content: space-around;
  8352. justify-content: space-around;
  8353. }
  8354. /* Direction
  8355. ========================================================================== */
  8356. .uk-flex-row-reverse {
  8357. -ms-flex-direction: row-reverse;
  8358. -webkit-flex-direction: row-reverse;
  8359. flex-direction: row-reverse;
  8360. }
  8361. .uk-flex-column {
  8362. -ms-flex-direction: column;
  8363. -webkit-flex-direction: column;
  8364. flex-direction: column;
  8365. }
  8366. .uk-flex-column-reverse {
  8367. -ms-flex-direction: column-reverse;
  8368. -webkit-flex-direction: column-reverse;
  8369. flex-direction: column-reverse;
  8370. }
  8371. /* Wrap
  8372. ========================================================================== */
  8373. .uk-flex-nowrap {
  8374. -ms-flex-wrap: nowrap;
  8375. -webkit-flex-wrap: nowrap;
  8376. flex-wrap: nowrap;
  8377. }
  8378. .uk-flex-wrap {
  8379. -ms-flex-wrap: wrap;
  8380. -webkit-flex-wrap: wrap;
  8381. flex-wrap: wrap;
  8382. }
  8383. .uk-flex-wrap-reverse {
  8384. -ms-flex-wrap: wrap-reverse;
  8385. -webkit-flex-wrap: wrap-reverse;
  8386. flex-wrap: wrap-reverse;
  8387. }
  8388. /*
  8389. * Horizontal alignment
  8390. * Default value is `stretch`
  8391. */
  8392. .uk-flex-wrap-top {
  8393. -ms-flex-line-pack: start;
  8394. -webkit-align-content: flex-start;
  8395. align-content: flex-start;
  8396. }
  8397. .uk-flex-wrap-middle {
  8398. -ms-flex-line-pack: center;
  8399. -webkit-align-content: center;
  8400. align-content: center;
  8401. }
  8402. .uk-flex-wrap-bottom {
  8403. -ms-flex-line-pack: end;
  8404. -webkit-align-content: flex-end;
  8405. align-content: flex-end;
  8406. }
  8407. .uk-flex-wrap-space-between {
  8408. -ms-flex-line-pack: justify;
  8409. -webkit-align-content: space-between;
  8410. align-content: space-between;
  8411. }
  8412. .uk-flex-wrap-space-around {
  8413. -ms-flex-line-pack: distribute;
  8414. -webkit-align-content: space-around;
  8415. align-content: space-around;
  8416. }
  8417. /* Item ordering
  8418. ========================================================================== */
  8419. /*
  8420. * Default is 0
  8421. */
  8422. .uk-flex-order-first {
  8423. -ms-flex-order: -1;
  8424. -webkit-order: -1;
  8425. order: -1;
  8426. }
  8427. .uk-flex-order-last {
  8428. -ms-flex-order: 99;
  8429. -webkit-order: 99;
  8430. order: 99;
  8431. }
  8432. /* Phone landscape and bigger */
  8433. @media (min-width: 480px) {
  8434. .uk-flex-order-first-small {
  8435. -ms-flex-order: -1;
  8436. -webkit-order: -1;
  8437. order: -1;
  8438. }
  8439. .uk-flex-order-last-small {
  8440. -ms-flex-order: 99;
  8441. -webkit-order: 99;
  8442. order: 99;
  8443. }
  8444. }
  8445. /* Tablet and bigger */
  8446. @media (min-width: 768px) {
  8447. .uk-flex-order-first-medium {
  8448. -ms-flex-order: -1;
  8449. -webkit-order: -1;
  8450. order: -1;
  8451. }
  8452. .uk-flex-order-last-medium {
  8453. -ms-flex-order: 99;
  8454. -webkit-order: 99;
  8455. order: 99;
  8456. }
  8457. }
  8458. /* Desktop and bigger */
  8459. @media (min-width: 960px) {
  8460. .uk-flex-order-first-large {
  8461. -ms-flex-order: -1;
  8462. -webkit-order: -1;
  8463. order: -1;
  8464. }
  8465. .uk-flex-order-last-large {
  8466. -ms-flex-order: 99;
  8467. -webkit-order: 99;
  8468. order: 99;
  8469. }
  8470. }
  8471. /* Large screen and bigger */
  8472. @media (min-width: 1220px) {
  8473. .uk-flex-order-first-xlarge {
  8474. -ms-flex-order: -1;
  8475. -webkit-order: -1;
  8476. order: -1;
  8477. }
  8478. .uk-flex-order-last-xlarge {
  8479. -ms-flex-order: 99;
  8480. -webkit-order: 99;
  8481. order: 99;
  8482. }
  8483. }
  8484. /* Item dimensions
  8485. ========================================================================== */
  8486. /*
  8487. * Initial: 0 1 auto
  8488. * Content dimensions, but shrinks
  8489. */
  8490. /*
  8491. * No Flex: 0 0 auto
  8492. * Content dimensions
  8493. */
  8494. .uk-flex-item-none {
  8495. -ms-flex: none;
  8496. -webkit-flex: none;
  8497. flex: none;
  8498. }
  8499. /*
  8500. * Relative Flex: 1 1 auto
  8501. * Space is allocated considering content
  8502. * 1. Fixes flex-shrink value in IE10
  8503. */
  8504. .uk-flex-item-auto {
  8505. -ms-flex: auto;
  8506. -webkit-flex: auto;
  8507. flex: auto;
  8508. /* 1 */
  8509. -ms-flex-negative: 1;
  8510. }
  8511. /*
  8512. * Absolute Flex: 1 1 0%
  8513. * Space is allocated solely based on flex
  8514. */
  8515. .uk-flex-item-1 {
  8516. -ms-flex: 1;
  8517. -webkit-flex: 1;
  8518. flex: 1;
  8519. }
  8520. /* ========================================================================
  8521. Component: Contrast
  8522. ========================================================================== */
  8523. .uk-contrast {
  8524. color: #ffffff;
  8525. /* Active */
  8526. }
  8527. .uk-contrast a:not([class]),
  8528. .uk-contrast .uk-link {
  8529. color: rgba(255, 255, 255, 0.7);
  8530. text-decoration: none;
  8531. }
  8532. .uk-contrast a:not([class]):hover,
  8533. .uk-contrast .uk-link:hover {
  8534. color: #ffffff;
  8535. text-decoration: underline;
  8536. }
  8537. .uk-contrast :not(pre) > code,
  8538. .uk-contrast :not(pre) > kbd,
  8539. .uk-contrast :not(pre) > samp {
  8540. color: #ffffff;
  8541. border-color: rgba(255, 255, 255, 0.2);
  8542. background: rgba(255, 255, 255, 0.1);
  8543. }
  8544. .uk-contrast em {
  8545. color: #ffffff;
  8546. }
  8547. .uk-contrast h1,
  8548. .uk-contrast h2,
  8549. .uk-contrast h3,
  8550. .uk-contrast h4,
  8551. .uk-contrast h5,
  8552. .uk-contrast h6 {
  8553. color: #ffffff;
  8554. }
  8555. .uk-contrast hr {
  8556. border-top-color: rgba(255, 255, 255, 0.2);
  8557. }
  8558. .uk-contrast .uk-nav li > a,
  8559. .uk-contrast .uk-nav li > a:hover {
  8560. text-decoration: none;
  8561. }
  8562. .uk-contrast .uk-nav-side > li > a {
  8563. color: #ffffff;
  8564. }
  8565. .uk-contrast .uk-nav-side > li > a:hover,
  8566. .uk-contrast .uk-nav-side > li > a:focus {
  8567. background: rgba(255, 255, 255, 0.1);
  8568. color: #ffffff;
  8569. text-shadow: none;
  8570. }
  8571. .uk-contrast .uk-nav-side > li.uk-active > a {
  8572. background: #ffffff;
  8573. color: #444444;
  8574. text-shadow: none;
  8575. }
  8576. .uk-contrast .uk-nav-side .uk-nav-header {
  8577. color: #ffffff;
  8578. }
  8579. .uk-contrast .uk-nav-side .uk-nav-divider {
  8580. border-top-color: rgba(255, 255, 255, 0.2);
  8581. }
  8582. .uk-contrast .uk-nav-side ul a {
  8583. color: rgba(255, 255, 255, 0.7);
  8584. }
  8585. .uk-contrast .uk-nav-side ul a:hover {
  8586. color: #ffffff;
  8587. }
  8588. .uk-contrast .uk-subnav > * > a {
  8589. color: rgba(255, 255, 255, 0.7);
  8590. text-decoration: none;
  8591. }
  8592. .uk-contrast .uk-subnav > * > a:hover,
  8593. .uk-contrast .uk-subnav > * > a:focus {
  8594. color: #ffffff;
  8595. text-decoration: none;
  8596. }
  8597. .uk-contrast .uk-subnav > .uk-active > a {
  8598. color: #ffffff;
  8599. }
  8600. .uk-contrast .uk-subnav-line > :nth-child(n+2):before {
  8601. border-left-color: rgba(255, 255, 255, 0.2);
  8602. }
  8603. .uk-contrast .uk-subnav-pill > * > a:hover,
  8604. .uk-contrast .uk-subnav-pill > * > a:focus {
  8605. background: rgba(255, 255, 255, 0.7);
  8606. color: #444444;
  8607. text-decoration: none;
  8608. }
  8609. .uk-contrast .uk-subnav-pill > .uk-active > a {
  8610. background: #ffffff;
  8611. color: #444444;
  8612. }
  8613. .uk-contrast .uk-tab {
  8614. border-bottom-color: rgba(255, 255, 255, 0.2);
  8615. }
  8616. .uk-contrast .uk-tab > li > a {
  8617. border-color: transparent;
  8618. color: rgba(255, 255, 255, 0.7);
  8619. text-shadow: none;
  8620. }
  8621. .uk-contrast .uk-tab > li > a:hover,
  8622. .uk-contrast .uk-tab > li > a:focus,
  8623. .uk-contrast .uk-tab > li.uk-open > a {
  8624. border-color: rgba(255, 255, 255, 0.7);
  8625. background: rgba(255, 255, 255, 0.7);
  8626. color: #444444;
  8627. text-decoration: none;
  8628. }
  8629. .uk-contrast .uk-tab > li.uk-active > a {
  8630. border-color: rgba(255, 255, 255, 0.2);
  8631. border-bottom-color: transparent;
  8632. background: #ffffff;
  8633. color: #444444;
  8634. }
  8635. .uk-contrast .uk-tab-center {
  8636. border-bottom-color: rgba(255, 255, 255, 0.2);
  8637. }
  8638. .uk-contrast .uk-tab-grid:before {
  8639. border-top-color: rgba(255, 255, 255, 0.2);
  8640. }
  8641. .uk-contrast .uk-list-line > li:nth-child(n+2) {
  8642. border-top-color: rgba(255, 255, 255, 0.2);
  8643. }
  8644. .uk-contrast .uk-form select,
  8645. .uk-contrast .uk-form textarea,
  8646. .uk-contrast .uk-form input:not([type]),
  8647. .uk-contrast .uk-form input[type="text"],
  8648. .uk-contrast .uk-form input[type="password"],
  8649. .uk-contrast .uk-form input[type="datetime"],
  8650. .uk-contrast .uk-form input[type="datetime-local"],
  8651. .uk-contrast .uk-form input[type="date"],
  8652. .uk-contrast .uk-form input[type="month"],
  8653. .uk-contrast .uk-form input[type="time"],
  8654. .uk-contrast .uk-form input[type="week"],
  8655. .uk-contrast .uk-form input[type="number"],
  8656. .uk-contrast .uk-form input[type="email"],
  8657. .uk-contrast .uk-form input[type="url"],
  8658. .uk-contrast .uk-form input[type="search"],
  8659. .uk-contrast .uk-form input[type="tel"],
  8660. .uk-contrast .uk-form input[type="color"] {
  8661. border-color: rgba(255, 255, 255, 0.8);
  8662. background: rgba(255, 255, 255, 0.8);
  8663. color: #444444;
  8664. background-clip: padding-box;
  8665. }
  8666. .uk-contrast .uk-form select:focus,
  8667. .uk-contrast .uk-form textarea:focus,
  8668. .uk-contrast .uk-form input:not([type]):focus,
  8669. .uk-contrast .uk-form input[type="text"]:focus,
  8670. .uk-contrast .uk-form input[type="password"]:focus,
  8671. .uk-contrast .uk-form input[type="datetime"]:focus,
  8672. .uk-contrast .uk-form input[type="datetime-local"]:focus,
  8673. .uk-contrast .uk-form input[type="date"]:focus,
  8674. .uk-contrast .uk-form input[type="month"]:focus,
  8675. .uk-contrast .uk-form input[type="time"]:focus,
  8676. .uk-contrast .uk-form input[type="week"]:focus,
  8677. .uk-contrast .uk-form input[type="number"]:focus,
  8678. .uk-contrast .uk-form input[type="email"]:focus,
  8679. .uk-contrast .uk-form input[type="url"]:focus,
  8680. .uk-contrast .uk-form input[type="search"]:focus,
  8681. .uk-contrast .uk-form input[type="tel"]:focus,
  8682. .uk-contrast .uk-form input[type="color"]:focus {
  8683. border-color: #ffffff;
  8684. background: #ffffff;
  8685. color: #444444;
  8686. }
  8687. .uk-contrast .uk-form :-ms-input-placeholder {
  8688. color: rgba(68, 68, 68, 0.7) !important;
  8689. }
  8690. .uk-contrast .uk-form ::-moz-placeholder {
  8691. color: rgba(68, 68, 68, 0.7);
  8692. }
  8693. .uk-contrast .uk-form ::-webkit-input-placeholder {
  8694. color: rgba(68, 68, 68, 0.7);
  8695. }
  8696. .uk-contrast .uk-button {
  8697. color: #444444;
  8698. background: #ffffff;
  8699. border-color: transparent;
  8700. }
  8701. .uk-contrast .uk-button:hover,
  8702. .uk-contrast .uk-button:focus {
  8703. background-color: rgba(255, 255, 255, 0.8);
  8704. color: #444444;
  8705. border-color: transparent;
  8706. }
  8707. .uk-contrast .uk-button:active,
  8708. .uk-contrast .uk-button.uk-active {
  8709. background-color: rgba(255, 255, 255, 0.7);
  8710. color: #444444;
  8711. box-shadow: none;
  8712. }
  8713. .uk-contrast .uk-button-primary {
  8714. background-color: #52b4df;
  8715. color: #ffffff;
  8716. }
  8717. .uk-contrast .uk-button-primary:hover,
  8718. .uk-contrast .uk-button-primary:focus {
  8719. background-color: #53b5de;
  8720. color: #ffffff;
  8721. }
  8722. .uk-contrast .uk-button-primary:active,
  8723. .uk-contrast .uk-button-primary.uk-active {
  8724. background-color: #359ac4;
  8725. color: #ffffff;
  8726. }
  8727. .uk-contrast .uk-icon-hover {
  8728. color: rgba(255, 255, 255, 0.7);
  8729. }
  8730. .uk-contrast .uk-icon-hover:hover {
  8731. color: #ffffff;
  8732. }
  8733. .uk-contrast .uk-icon-button {
  8734. background: #ffffff;
  8735. color: #444444;
  8736. border-color: transparent;
  8737. }
  8738. .uk-contrast .uk-icon-button:hover,
  8739. .uk-contrast .uk-icon-button:focus {
  8740. background-color: rgba(255, 255, 255, 0.8);
  8741. color: #444444;
  8742. border-color: transparent;
  8743. }
  8744. .uk-contrast .uk-icon-button:active {
  8745. background-color: rgba(255, 255, 255, 0.7);
  8746. color: #444444;
  8747. box-shadow: none;
  8748. }
  8749. .uk-contrast .uk-text-muted {
  8750. color: rgba(255, 255, 255, 0.6) !important;
  8751. }
  8752. .uk-contrast .uk-text-primary {
  8753. color: #2d7091 !important;
  8754. }
  8755. /* ========================================================================
  8756. Component: Print
  8757. ========================================================================== */
  8758. @media print {
  8759. *,
  8760. *:before,
  8761. *:after {
  8762. background: transparent !important;
  8763. color: black !important;
  8764. box-shadow: none !important;
  8765. text-shadow: none !important;
  8766. }
  8767. a,
  8768. a:visited {
  8769. text-decoration: underline;
  8770. }
  8771. pre,
  8772. blockquote {
  8773. border: 1px solid #999;
  8774. page-break-inside: avoid;
  8775. }
  8776. thead {
  8777. display: table-header-group;
  8778. }
  8779. tr,
  8780. img {
  8781. page-break-inside: avoid;
  8782. }
  8783. img {
  8784. max-width: 100% !important;
  8785. }
  8786. @page {
  8787. margin: 0.5cm;
  8788. }
  8789. p,
  8790. h2,
  8791. h3 {
  8792. orphans: 3;
  8793. widows: 3;
  8794. }
  8795. h2,
  8796. h3 {
  8797. page-break-after: avoid;
  8798. }
  8799. }
  8800. /* ========================================================================
  8801. Component: Dotnav
  8802. ========================================================================== */
  8803. /*
  8804. * 1. Gutter
  8805. * 2. Remove default list style
  8806. */
  8807. .uk-dotnav {
  8808. display: -ms-flexbox;
  8809. display: -webkit-flex;
  8810. display: flex;
  8811. -ms-flex-wrap: wrap;
  8812. -webkit-flex-wrap: wrap;
  8813. flex-wrap: wrap;
  8814. /* 1 */
  8815. margin-left: -15px;
  8816. margin-top: -15px;
  8817. /* 2 */
  8818. padding: 0;
  8819. list-style: none;
  8820. }
  8821. /*
  8822. * 1. Space is allocated solely based on content dimensions
  8823. * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
  8824. */
  8825. .uk-dotnav > * {
  8826. /* 1 */
  8827. -ms-flex: none;
  8828. -webkit-flex: none;
  8829. flex: none;
  8830. /* 2 */
  8831. padding-left: 15px;
  8832. margin-top: 15px;
  8833. }
  8834. /*
  8835. * DEPRECATED IE9 Support
  8836. */
  8837. .uk-dotnav:before,
  8838. .uk-dotnav:after {
  8839. content: "";
  8840. display: block;
  8841. overflow: hidden;
  8842. }
  8843. .uk-dotnav:after {
  8844. clear: both;
  8845. }
  8846. .uk-dotnav > * {
  8847. float: left;
  8848. }
  8849. /* Items
  8850. ========================================================================== */
  8851. /*
  8852. * Items
  8853. * 1. Hide text if present
  8854. */
  8855. .uk-dotnav > * > * {
  8856. display: block;
  8857. box-sizing: content-box;
  8858. width: 20px;
  8859. height: 20px;
  8860. border-radius: 50%;
  8861. background: rgba(50, 50, 50, 0.1);
  8862. /* 1 */
  8863. text-indent: 100%;
  8864. overflow: hidden;
  8865. white-space: nowrap;
  8866. -webkit-transition: all 0.2s ease-in-out;
  8867. transition: all 0.2s ease-in-out;
  8868. }
  8869. /*
  8870. * Hover
  8871. * 1. Apply hover style also to focus state
  8872. * 2. Remove default focus style
  8873. */
  8874. .uk-dotnav > * > :hover,
  8875. .uk-dotnav > * > :focus {
  8876. background: rgba(50, 50, 50, 0.4);
  8877. /* 2 */
  8878. outline: none;
  8879. }
  8880. /* OnClick */
  8881. .uk-dotnav > * > :active {
  8882. background: rgba(50, 50, 50, 0.6);
  8883. }
  8884. /* Active */
  8885. .uk-dotnav > .uk-active > * {
  8886. background: rgba(50, 50, 50, 0.4);
  8887. -webkit-transform: scale(1.3);
  8888. transform: scale(1.3);
  8889. }
  8890. /* Modifier: `uk-dotnav-contrast`
  8891. ========================================================================== */
  8892. .uk-dotnav-contrast > * > * {
  8893. background: rgba(255, 255, 255, 0.4);
  8894. }
  8895. /*
  8896. * Hover
  8897. * 1. Apply hover style also to focus state
  8898. */
  8899. .uk-dotnav-contrast > * > :hover,
  8900. .uk-dotnav-contrast > * > :focus {
  8901. background: rgba(255, 255, 255, 0.7);
  8902. }
  8903. /* OnClick */
  8904. .uk-dotnav-contrast > * > :active {
  8905. background: rgba(255, 255, 255, 0.9);
  8906. }
  8907. /* Active */
  8908. .uk-dotnav-contrast > .uk-active > * {
  8909. background: rgba(255, 255, 255, 0.9);
  8910. }
  8911. /* Modifier: 'uk-dotnav-vertical'
  8912. ========================================================================== */
  8913. /*
  8914. * DEPRECATED
  8915. */
  8916. .uk-dotnav-vertical {
  8917. -ms-flex-direction: column;
  8918. -webkit-flex-direction: column;
  8919. flex-direction: column;
  8920. }
  8921. /*
  8922. * DEPRECATED IE9 Support
  8923. */
  8924. .uk-dotnav-vertical > * {
  8925. float: none;
  8926. }
  8927. /* ========================================================================
  8928. Component: Slidenav
  8929. ========================================================================== */
  8930. /*
  8931. * 1. Required for `a` elements
  8932. * 2. Dimension
  8933. * 3. Style
  8934. */
  8935. .uk-slidenav {
  8936. /* 1 */
  8937. display: inline-block;
  8938. /* 2 */
  8939. box-sizing: border-box;
  8940. width: 60px;
  8941. height: 60px;
  8942. /* 3 */
  8943. line-height: 60px;
  8944. color: rgba(50, 50, 50, 0.4);
  8945. font-size: 60px;
  8946. text-align: center;
  8947. }
  8948. /*
  8949. * Hover
  8950. * 1. Apply hover style also to focus state
  8951. * 2. Remove default focus style
  8952. * 3. Required for `a` elements
  8953. * 4. Style
  8954. */
  8955. .uk-slidenav:hover,
  8956. .uk-slidenav:focus {
  8957. /* 2 */
  8958. outline: none;
  8959. /* 3 */
  8960. text-decoration: none;
  8961. /* 4 */
  8962. color: rgba(50, 50, 50, 0.7);
  8963. cursor: pointer;
  8964. }
  8965. /* Active */
  8966. .uk-slidenav:active {
  8967. color: rgba(50, 50, 50, 0.9);
  8968. }
  8969. /*
  8970. * Icons
  8971. */
  8972. .uk-slidenav-previous:before {
  8973. content: "\f104";
  8974. font-family: FontAwesome;
  8975. }
  8976. .uk-slidenav-next:before {
  8977. content: "\f105";
  8978. font-family: FontAwesome;
  8979. }
  8980. /* Sub-object: `uk-slidenav-position`
  8981. ========================================================================== */
  8982. /*
  8983. * Create position context
  8984. */
  8985. .uk-slidenav-position {
  8986. position: relative;
  8987. }
  8988. /*
  8989. * Center vertically
  8990. */
  8991. .uk-slidenav-position .uk-slidenav {
  8992. display: none;
  8993. position: absolute;
  8994. top: 50%;
  8995. z-index: 1;
  8996. margin-top: -30px;
  8997. }
  8998. .uk-slidenav-position:hover .uk-slidenav {
  8999. display: block;
  9000. }
  9001. .uk-slidenav-position .uk-slidenav-previous {
  9002. left: 20px;
  9003. }
  9004. .uk-slidenav-position .uk-slidenav-next {
  9005. right: 20px;
  9006. }
  9007. /* Modifier: `uk-slidenav-contrast`
  9008. ========================================================================== */
  9009. .uk-slidenav-contrast {
  9010. color: rgba(255, 255, 255, 0.5);
  9011. }
  9012. /*
  9013. * Hover
  9014. * 1. Apply hover style also to focus state
  9015. */
  9016. .uk-slidenav-contrast:hover,
  9017. .uk-slidenav-contrast:focus {
  9018. color: rgba(255, 255, 255, 0.7);
  9019. }
  9020. /* Active */
  9021. .uk-slidenav-contrast:active {
  9022. color: rgba(255, 255, 255, 0.9);
  9023. }
  9024. /* ========================================================================
  9025. Component: Progress
  9026. ========================================================================== */
  9027. /*
  9028. * 1. Clearing
  9029. * 2. Vertical alignment if text is used
  9030. */
  9031. .uk-progress {
  9032. box-sizing: border-box;
  9033. height: 20px;
  9034. margin-bottom: 20px;
  9035. background: #f7f7f7;
  9036. /* 1 */
  9037. overflow: hidden;
  9038. /* 2 */
  9039. line-height: 20px;
  9040. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 2px rgba(0, 0, 0, 0.07);
  9041. border-radius: 4px;
  9042. }
  9043. /*
  9044. * Add margin if adjacent element
  9045. */
  9046. * + .uk-progress {
  9047. margin-top: 20px;
  9048. }
  9049. /* Sub-object: `uk-progress-bar`
  9050. ========================================================================== */
  9051. /*
  9052. * 1. Transition
  9053. * 2. Needed for text
  9054. */
  9055. .uk-progress-bar {
  9056. width: 0;
  9057. height: 100%;
  9058. background: #52b4df;
  9059. float: left;
  9060. /* 1 */
  9061. -webkit-transition: width 0.6s ease;
  9062. transition: width 0.6s ease;
  9063. /* 2 */
  9064. font-size: 12px;
  9065. color: #ffffff;
  9066. text-align: center;
  9067. background-image: -webkit-linear-gradient(top, #5cc0ea, #4cacd7);
  9068. background-image: linear-gradient(to bottom, #5cc0ea, #4cacd7);
  9069. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  9070. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  9071. }
  9072. /* Size modifiers
  9073. ========================================================================== */
  9074. /* Mini */
  9075. .uk-progress-mini {
  9076. height: 6px;
  9077. }
  9078. /* Small */
  9079. .uk-progress-small {
  9080. height: 12px;
  9081. }
  9082. /* Color modifiers
  9083. ========================================================================== */
  9084. .uk-progress-success .uk-progress-bar {
  9085. background-color: #82bb42;
  9086. background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
  9087. background-image: linear-gradient(to bottom, #9fd256, #6fac34);
  9088. }
  9089. .uk-progress-warning .uk-progress-bar {
  9090. background-color: #f9a124;
  9091. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  9092. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  9093. }
  9094. .uk-progress-danger .uk-progress-bar {
  9095. background-color: #d32c46;
  9096. background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
  9097. background-image: linear-gradient(to bottom, #ee465a, #c11a39);
  9098. }
  9099. /* Modifier: `uk-progress-striped`
  9100. ========================================================================== */
  9101. .uk-progress-striped .uk-progress-bar {
  9102. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  9103. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  9104. background-size: 30px 30px;
  9105. }
  9106. /*
  9107. * Animation
  9108. */
  9109. .uk-progress-striped.uk-active .uk-progress-bar {
  9110. -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  9111. animation: uk-progress-bar-stripes 2s linear infinite;
  9112. }
  9113. @-webkit-keyframes uk-progress-bar-stripes {
  9114. 0% {
  9115. background-position: 0 0;
  9116. }
  9117. 100% {
  9118. background-position: 30px 0;
  9119. }
  9120. }
  9121. @keyframes uk-progress-bar-stripes {
  9122. 0% {
  9123. background-position: 0 0;
  9124. }
  9125. 100% {
  9126. background-position: 30px 0;
  9127. }
  9128. }
  9129. /* Size modifiers
  9130. ========================================================================== */
  9131. .uk-progress-mini,
  9132. .uk-progress-small {
  9133. border-radius: 500px;
  9134. }
  9135. /* ========================================================================
  9136. Component: Accordion
  9137. ========================================================================== */
  9138. /* Sub-object: `uk-accordion-title`
  9139. ========================================================================== */
  9140. .uk-accordion-title {
  9141. margin-top: 0;
  9142. margin-bottom: 20px;
  9143. padding: 5px 20px;
  9144. background: #f7f7f7;
  9145. font-size: 18px;
  9146. line-height: 24px;
  9147. cursor: pointer;
  9148. border: 1px solid #dddddd;
  9149. border-radius: 4px;
  9150. }
  9151. /* Sub-object: `uk-accordion-content`
  9152. ========================================================================== */
  9153. .uk-accordion-content {
  9154. padding: 0 20px 20px 20px;
  9155. }
  9156. /*
  9157. * Micro clearfix to make panels more robust
  9158. */
  9159. .uk-accordion-content:before,
  9160. .uk-accordion-content:after {
  9161. content: "";
  9162. display: table;
  9163. }
  9164. .uk-accordion-content:after {
  9165. clear: both;
  9166. }
  9167. /*
  9168. * Remove margin from the last-child
  9169. */
  9170. .uk-accordion-content > :last-child {
  9171. margin-bottom: 0;
  9172. }
  9173. /* ========================================================================
  9174. Component: Slider
  9175. ========================================================================== */
  9176. /*
  9177. * RTL Compatibility
  9178. */
  9179. [data-uk-slider] {
  9180. direction: ltr;
  9181. }
  9182. html[dir="rtl"] .uk-slider > * {
  9183. direction: rtl;
  9184. }
  9185. /*
  9186. * 1. Create position context
  9187. * 2. Create stacking context to prevent z-index issues with other components
  9188. * 3. Deactivate browser history navigation in IE11
  9189. */
  9190. .uk-slider {
  9191. /* 1 */
  9192. position: relative;
  9193. /* 2 */
  9194. z-index: 0;
  9195. /* 3 */
  9196. touch-action: pan-y;
  9197. }
  9198. /*
  9199. * 1. Reset list style without interfering with grid
  9200. */
  9201. .uk-slider:not(.uk-grid) {
  9202. /* 1 */
  9203. margin: 0;
  9204. padding: 0;
  9205. list-style: none;
  9206. }
  9207. /*
  9208. * Sub-object item
  9209. * 1. Position items above each other
  9210. */
  9211. .uk-slider > * {
  9212. /* 1 */
  9213. position: absolute;
  9214. top: 0;
  9215. left: 0;
  9216. }
  9217. /*
  9218. * Clip child elements
  9219. */
  9220. .uk-slider-container {
  9221. overflow: hidden;
  9222. }
  9223. /*
  9224. * Dragged
  9225. */
  9226. .uk-slider:not(.uk-drag) {
  9227. -webkit-transition: -webkit-transform 200ms linear;
  9228. transition: transform 200ms linear;
  9229. }
  9230. /*
  9231. * 1. Makes text unselectable
  9232. */
  9233. .uk-slider.uk-drag {
  9234. cursor: col-resize;
  9235. /* 1 */
  9236. -moz-user-select: none;
  9237. -webkit-user-select: none;
  9238. -ms-user-select: none;
  9239. user-select: none;
  9240. }
  9241. /*
  9242. * 1. Prevents images and links from being dragged (default browser behavior)
  9243. * 2. Disables the default callout shown when you touch and hold a touch target
  9244. * Currently only works in Webkit
  9245. */
  9246. .uk-slider a,
  9247. .uk-slider img {
  9248. /* 1 */
  9249. -webkit-user-drag: none;
  9250. user-drag: none;
  9251. /* 2 */
  9252. -webkit-touch-callout: none;
  9253. }
  9254. /*
  9255. * 1. Prevents images and links from being dragged in Firefox
  9256. */
  9257. .uk-slider img {
  9258. pointer-events: none;
  9259. }
  9260. /* Modifier: `uk-slider-fullscreen`
  9261. ========================================================================== */
  9262. .uk-slider-fullscreen,
  9263. .uk-slider-fullscreen > li {
  9264. height: 100vh;
  9265. }
  9266. /* ========================================================================
  9267. Component: Slideshow
  9268. ========================================================================== */
  9269. /*
  9270. * 1. Create position context
  9271. * 2. Create stacking context to prevent z-index issues with other components
  9272. * 3. Set width because child elements are positioned absolute. Height is set via JS
  9273. * 4. Reset list style
  9274. * 5. Clip child elements
  9275. * 6. Deactivate browser history navigation in IE11
  9276. */
  9277. .uk-slideshow {
  9278. /* 1 */
  9279. position: relative;
  9280. /* 2 */
  9281. z-index: 0;
  9282. /* 3 */
  9283. width: 100%;
  9284. /* 4 */
  9285. margin: 0;
  9286. padding: 0;
  9287. list-style: none;
  9288. /* 5 */
  9289. overflow: hidden;
  9290. /* 6 */
  9291. touch-action: pan-y;
  9292. }
  9293. /*
  9294. * Sub-object item
  9295. * 1. Position items above each other
  9296. * 2. Expand to parent container width
  9297. * 3. Hide by default
  9298. */
  9299. .uk-slideshow > li {
  9300. /* 1 */
  9301. position: absolute;
  9302. top: 0;
  9303. left: 0;
  9304. /* 2 */
  9305. width: 100%;
  9306. /* 3 */
  9307. opacity: 0;
  9308. }
  9309. /*
  9310. * Active
  9311. * 1. Stack at first
  9312. * 2. Show slide
  9313. */
  9314. .uk-slideshow > .uk-active {
  9315. /* 1 */
  9316. z-index: 10;
  9317. /* 2 */
  9318. opacity: 1;
  9319. }
  9320. /*
  9321. * Hide default images which is only relevant to keep existing proportions
  9322. */
  9323. .uk-slideshow > li > img {
  9324. visibility: hidden;
  9325. }
  9326. /*
  9327. * Pointer for controls
  9328. */
  9329. [data-uk-slideshow-slide] {
  9330. cursor: pointer;
  9331. }
  9332. /* Modifier: `uk-slideshow-fullscreen`
  9333. ========================================================================== */
  9334. .uk-slideshow-fullscreen,
  9335. .uk-slideshow-fullscreen > li {
  9336. height: 100vh;
  9337. }
  9338. /* Animations
  9339. ========================================================================== */
  9340. /*
  9341. * Fade
  9342. */
  9343. .uk-slideshow-fade-in {
  9344. -webkit-animation: uk-fade 0.5s linear;
  9345. animation: uk-fade 0.5s linear;
  9346. }
  9347. .uk-slideshow-fade-out {
  9348. -webkit-animation: uk-fade 0.5s linear reverse;
  9349. animation: uk-fade 0.5s linear reverse;
  9350. }
  9351. /*
  9352. * Scroll
  9353. */
  9354. .uk-slideshow-scroll-forward-in {
  9355. -webkit-animation: uk-slide-right 0.5s ease-in-out;
  9356. animation: uk-slide-right 0.5s ease-in-out;
  9357. }
  9358. .uk-slideshow-scroll-forward-out {
  9359. -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  9360. animation: uk-slide-left 0.5s ease-in-out reverse;
  9361. }
  9362. .uk-slideshow-scroll-backward-in {
  9363. -webkit-animation: uk-slide-left 0.5s ease-in-out;
  9364. animation: uk-slide-left 0.5s ease-in-out;
  9365. }
  9366. .uk-slideshow-scroll-backward-out {
  9367. -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  9368. animation: uk-slide-right 0.5s ease-in-out reverse;
  9369. }
  9370. /*
  9371. * Scale
  9372. */
  9373. .uk-slideshow-scale-out {
  9374. -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  9375. animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  9376. }
  9377. /*
  9378. * Swipe
  9379. */
  9380. .uk-slideshow-swipe-forward-in {
  9381. -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  9382. animation: uk-slide-left-33 0.5s ease-in-out;
  9383. }
  9384. .uk-slideshow-swipe-forward-out {
  9385. -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  9386. animation: uk-slide-left 0.5s ease-in-out reverse;
  9387. }
  9388. .uk-slideshow-swipe-backward-in {
  9389. -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  9390. animation: uk-slide-right-33 0.5s ease-in-out;
  9391. }
  9392. .uk-slideshow-swipe-backward-out {
  9393. -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  9394. animation: uk-slide-right 0.5s ease-in-out reverse;
  9395. }
  9396. .uk-slideshow-swipe-forward-in:before,
  9397. .uk-slideshow-swipe-backward-in:before {
  9398. content: '';
  9399. position: absolute;
  9400. top: 0;
  9401. bottom: 0;
  9402. left: 0;
  9403. right: 0;
  9404. z-index: 1;
  9405. background: rgba(0, 0, 0, 0.6);
  9406. -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  9407. animation: uk-fade 0.5s ease-in-out reverse;
  9408. }
  9409. /* ========================================================================
  9410. Component: Search
  9411. ========================================================================== */
  9412. /*
  9413. * 1. Create position context for dropdowns
  9414. * 2. Needed for `form` element
  9415. */
  9416. .uk-search {
  9417. display: inline-block;
  9418. /* 1 */
  9419. position: relative;
  9420. /* 2 */
  9421. margin: 0;
  9422. }
  9423. /*
  9424. * Icon
  9425. */
  9426. .uk-search:before {
  9427. content: "\f002";
  9428. position: absolute;
  9429. top: 0;
  9430. left: 0;
  9431. width: 30px;
  9432. line-height: 30px;
  9433. text-align: center;
  9434. font-family: FontAwesome;
  9435. font-size: 14px;
  9436. color: rgba(0, 0, 0, 0.2);
  9437. }
  9438. /* Sub-object `uk-search-field`
  9439. ========================================================================== */
  9440. /*
  9441. * Removes inner padding and border in Firefox 4+.
  9442. */
  9443. .uk-search-field::-moz-focus-inner {
  9444. border: 0;
  9445. padding: 0;
  9446. }
  9447. /*
  9448. * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
  9449. */
  9450. .uk-search-field::-webkit-search-cancel-button,
  9451. .uk-search-field::-webkit-search-decoration {
  9452. -webkit-appearance: none;
  9453. }
  9454. /*
  9455. * Removes cancel button in IE10
  9456. */
  9457. .uk-search-field::-ms-clear {
  9458. display: none;
  9459. }
  9460. /*
  9461. * Removes placeholder transparency in Firefox.
  9462. */
  9463. .uk-search-field::-moz-placeholder {
  9464. opacity: 1;
  9465. }
  9466. /*
  9467. * 1. Define consistent box sizing.
  9468. * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
  9469. * 3. Remove `border-radius` in iOS.
  9470. * 4. Correct `font` properties and `color` not being inherited.
  9471. * 5. Remove default style in iOS.
  9472. * 6. Style
  9473. */
  9474. .uk-search-field {
  9475. /* 1 */
  9476. box-sizing: border-box;
  9477. /* 2 */
  9478. margin: 0;
  9479. /* 3 */
  9480. border-radius: 0;
  9481. /* 4 */
  9482. font: inherit;
  9483. color: #444444;
  9484. /* 5 */
  9485. -webkit-appearance: none;
  9486. /* 6 */
  9487. width: 120px;
  9488. height: 30px;
  9489. padding: 0 0 0 30px;
  9490. border: 1px solid rgba(0, 0, 0, 0);
  9491. background: rgba(0, 0, 0, 0);
  9492. -webkit-transition: all 0.2s linear;
  9493. transition: all 0.2s linear;
  9494. vertical-align: middle;
  9495. }
  9496. /* Placeholder */
  9497. .uk-search-field:-ms-input-placeholder {
  9498. color: #999999 !important;
  9499. }
  9500. .uk-search-field::-moz-placeholder {
  9501. color: #999999;
  9502. }
  9503. .uk-search-field::-webkit-input-placeholder {
  9504. color: #999999;
  9505. }
  9506. /* Focus */
  9507. .uk-search-field:focus {
  9508. outline: 0;
  9509. }
  9510. /* Focus + Active */
  9511. .uk-search-field:focus,
  9512. .uk-search.uk-active .uk-search-field {
  9513. width: 180px;
  9514. }
  9515. /* Dropdown modifier: `uk-dropdown-search`
  9516. ========================================================================== */
  9517. .uk-dropdown-search {
  9518. width: 300px;
  9519. margin-top: 0;
  9520. background: #ffffff;
  9521. color: #444444;
  9522. }
  9523. .uk-open > .uk-dropdown-search {
  9524. -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  9525. animation: uk-slide-top-fixed 0.2s ease-in-out;
  9526. }
  9527. /*
  9528. * Dependency `uk-navbar-flip`
  9529. */
  9530. .uk-navbar-flip .uk-dropdown-search {
  9531. margin-top: 12px;
  9532. margin-right: -16px;
  9533. }
  9534. /* Nav modifier `uk-nav-search`
  9535. ========================================================================== */
  9536. /*
  9537. * Items
  9538. */
  9539. .uk-nav-search > li > a {
  9540. color: #444444;
  9541. }
  9542. /*
  9543. * Active
  9544. * 1. Remove default focus style
  9545. */
  9546. .uk-nav-search > li.uk-active > a {
  9547. background: #52b4df;
  9548. color: #ffffff;
  9549. /* 1 */
  9550. outline: none;
  9551. box-shadow: inset 0 2px 4px rgba(0, 69, 109, 0.25);
  9552. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  9553. }
  9554. /*
  9555. * Sub-object: `uk-nav-header`
  9556. */
  9557. .uk-nav-search .uk-nav-header {
  9558. color: #999999;
  9559. }
  9560. /*
  9561. * Sub-object: `uk-nav-divider`
  9562. */
  9563. .uk-nav-search .uk-nav-divider {
  9564. border-top: 1px solid #dddddd;
  9565. }
  9566. /*
  9567. * Nested items
  9568. */
  9569. .uk-nav-search ul a {
  9570. color: #1fa2d6;
  9571. }
  9572. .uk-nav-search ul a:hover {
  9573. color: #0074a2;
  9574. }
  9575. /* Search in offcanvas
  9576. ========================================================================== */
  9577. .uk-offcanvas .uk-search {
  9578. display: block;
  9579. margin: 20px 15px;
  9580. }
  9581. .uk-offcanvas .uk-search:before {
  9582. color: #777777;
  9583. }
  9584. .uk-offcanvas .uk-search-field {
  9585. width: 100%;
  9586. border-color: rgba(0, 0, 0, 0);
  9587. background: #1a1a1a;
  9588. color: #cccccc;
  9589. }
  9590. .uk-offcanvas .uk-search-field:-ms-input-placeholder {
  9591. color: #777777 !important;
  9592. }
  9593. .uk-offcanvas .uk-search-field::-moz-placeholder {
  9594. color: #777777;
  9595. }
  9596. .uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  9597. color: #777777;
  9598. }
  9599. /* ========================================================================
  9600. Component: Tooltip
  9601. ========================================================================== */
  9602. /*
  9603. * 1. Hide by default
  9604. * 2. Set fixed position
  9605. * 3. Set dimensions
  9606. * 4. Set style
  9607. */
  9608. .uk-tooltip {
  9609. /* 1 */
  9610. display: none;
  9611. /* 2 */
  9612. position: absolute;
  9613. z-index: 1030;
  9614. /* 3 */
  9615. box-sizing: border-box;
  9616. max-width: 200px;
  9617. padding: 5px 8px;
  9618. /* 4 */
  9619. background: #333333;
  9620. color: rgba(255, 255, 255, 0.7);
  9621. font-size: 12px;
  9622. line-height: 18px;
  9623. word-break: break-all;
  9624. border-radius: 3px;
  9625. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  9626. }
  9627. /* Triangle
  9628. ========================================================================== */
  9629. /*
  9630. * 1. Dashed is less antialised than solid
  9631. */
  9632. .uk-tooltip:after {
  9633. content: "";
  9634. display: block;
  9635. position: absolute;
  9636. width: 0;
  9637. height: 0;
  9638. /* 1 */
  9639. border: 5px dashed #333333;
  9640. }
  9641. /* Direction modifiers
  9642. ========================================================================== */
  9643. /*
  9644. * Top
  9645. */
  9646. .uk-tooltip-top:after,
  9647. .uk-tooltip-top-left:after,
  9648. .uk-tooltip-top-right:after {
  9649. bottom: -5px;
  9650. border-top-style: solid;
  9651. border-bottom: none;
  9652. border-left-color: transparent;
  9653. border-right-color: transparent;
  9654. border-top-color: #333333;
  9655. }
  9656. /*
  9657. * Bottom
  9658. */
  9659. .uk-tooltip-bottom:after,
  9660. .uk-tooltip-bottom-left:after,
  9661. .uk-tooltip-bottom-right:after {
  9662. top: -5px;
  9663. border-bottom-style: solid;
  9664. border-top: none;
  9665. border-left-color: transparent;
  9666. border-right-color: transparent;
  9667. border-bottom-color: #333333;
  9668. }
  9669. /*
  9670. * Top/Bottom center
  9671. */
  9672. .uk-tooltip-top:after,
  9673. .uk-tooltip-bottom:after {
  9674. left: 50%;
  9675. margin-left: -5px;
  9676. }
  9677. /*
  9678. * Top/Bottom left
  9679. */
  9680. .uk-tooltip-top-left:after,
  9681. .uk-tooltip-bottom-left:after {
  9682. left: 10px;
  9683. }
  9684. /*
  9685. * Top/Bottom right
  9686. */
  9687. .uk-tooltip-top-right:after,
  9688. .uk-tooltip-bottom-right:after {
  9689. right: 10px;
  9690. }
  9691. /*
  9692. * Left
  9693. */
  9694. .uk-tooltip-left:after {
  9695. right: -5px;
  9696. top: 50%;
  9697. margin-top: -5px;
  9698. border-left-style: solid;
  9699. border-right: none;
  9700. border-top-color: transparent;
  9701. border-bottom-color: transparent;
  9702. border-left-color: #333333;
  9703. }
  9704. /*
  9705. * Right
  9706. */
  9707. .uk-tooltip-right:after {
  9708. left: -5px;
  9709. top: 50%;
  9710. margin-top: -5px;
  9711. border-right-style: solid;
  9712. border-left: none;
  9713. border-top-color: transparent;
  9714. border-bottom-color: transparent;
  9715. border-right-color: #333333;
  9716. }
  9717. /* ========================================================================
  9718. Warp theme
  9719. ========================================================================== */
  9720. /* Layout
  9721. ========================================================================== */
  9722. /*
  9723. * Force vertical scrollbar
  9724. */
  9725. html {
  9726. overflow-y: scroll;
  9727. }
  9728.  
  9729.  
  9730. /*
  9731. * Logo small
  9732. * Remove whitespace caused by vertical centering to prevent logo wrapping into the next line
  9733. */
  9734. .tm-logo-small {
  9735. letter-spacing: -0.31em;
  9736. }
  9737. /*
  9738. * Toolbar
  9739. */
  9740. .tm-toolbar .uk-float-left .uk-panel {
  9741. margin: 0 25px 0 0;
  9742. float: left;
  9743. }
  9744. .tm-toolbar .uk-float-right .uk-panel {
  9745. margin: 0 0 0 25px;
  9746. float: right;
  9747. }
  9748. /*
  9749. * Headerbar
  9750. */
  9751. .tm-headerbar .tm-logo {
  9752. float: left;
  9753. }
  9754. .tm-headerbar .uk-panel {
  9755. max-width: 300px;
  9756. margin-right: 0;
  9757. float: right;
  9758. }
  9759. /*
  9760. * Middle
  9761. */
  9762. .tm-main > :nth-child(n+2) {
  9763. margin-top: 25px;
  9764. }
  9765. .tm-content > :last-child {
  9766. margin-bottom: 0;
  9767. }
  9768. /*
  9769. * Footer
  9770. */
  9771. .tm-footer {
  9772. position: relative;
  9773. text-align: center;
  9774. }
  9775. .tm-footer .uk-panel + .uk-panel {
  9776. margin-top: 25px;
  9777. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement