Prototype website for VPN service, Bitcoin payments via the Blockchain.info API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7643 lines
156 KiB

10 years ago
  1. /*! UIkit 1.1.0 | http://www.getuikit.com | (c) 2013 YOOtheme | MIT License */
  2. /* Default
  3. ========================================================================== */
  4. /* LESS related */
  5. /*
  6. * Component: Variables
  7. * Description: Defines all color and style related values as variables
  8. * to allow easy customization for the most common cases.
  9. ========================================================================== */
  10. /* Global variables
  11. ========================================================================== */
  12. /*
  13. * Text
  14. */
  15. /*
  16. * Backgrounds & Borders
  17. */
  18. /*
  19. * Spacings
  20. */
  21. /*
  22. * Controls
  23. */
  24. /*
  25. * Z-index
  26. */
  27. /* Breakpoint variables
  28. ========================================================================== */
  29. /*
  30. * Breakpoints
  31. */
  32. /* Components variables
  33. ========================================================================== */
  34. /*
  35. * Base
  36. */
  37. /*
  38. * Grid
  39. */
  40. /*
  41. * Panel
  42. */
  43. /*
  44. * Article
  45. */
  46. /*
  47. * Comment
  48. */
  49. /*
  50. * Nav
  51. */
  52. /*
  53. * Navbar
  54. */
  55. /*
  56. * Subnav
  57. */
  58. /*
  59. * Breadcrumb
  60. */
  61. /*
  62. * Pagination
  63. */
  64. /*
  65. * Tab
  66. */
  67. /*
  68. * List
  69. */
  70. /*
  71. * Description list
  72. */
  73. /*
  74. * Table
  75. */
  76. /*
  77. * Form
  78. */
  79. /*
  80. * Button
  81. */
  82. /*
  83. * Icon
  84. */
  85. /*
  86. * Close
  87. */
  88. /*
  89. * Badge
  90. */
  91. /*
  92. * Alert
  93. */
  94. /*
  95. * Thumbnail
  96. */
  97. /*
  98. * Overlay
  99. */
  100. /*
  101. * Progress
  102. */
  103. /*
  104. * Search
  105. */
  106. /*
  107. * Dropdown
  108. */
  109. /*
  110. * Modal
  111. */
  112. /*
  113. * Off-canvas
  114. */
  115. /*
  116. * Tooltip
  117. */
  118. /*
  119. * Text
  120. */
  121. /*
  122. * Utility
  123. */
  124. /* Defaults */
  125. /*
  126. * Component: Normalize
  127. * Description: Reduces inconsistencies across all browsers
  128. *
  129. * Adapted from http://github.com/necolas/normalize.css (Version 2.1.2)
  130. *
  131. * Modifications: Moved `mark` and `h1` defaults to Base component
  132. * Changed `fieldset` defaults to 0
  133. * Added cursor for `radio` and `checkbox`
  134. * Set form controls box sizing to `border-box`
  135. * Modified `disabled` selector
  136. * Better font baseline for `code`, `kbd`, `pre` and `samp`
  137. * Removed placeholder transparency in Firefox
  138. *
  139. ========================================================================== */
  140. /* HTML5 display definitions
  141. ========================================================================== */
  142. /*
  143. * Corrects `block` display not defined in IE 8/9.
  144. */
  145. article,
  146. aside,
  147. details,
  148. figcaption,
  149. figure,
  150. footer,
  151. header,
  152. hgroup,
  153. main,
  154. nav,
  155. section,
  156. summary {
  157. display: block;
  158. }
  159. /*
  160. * Corrects `inline-block` display not defined in IE 8/9.
  161. */
  162. audio,
  163. canvas,
  164. video {
  165. display: inline-block;
  166. }
  167. /*
  168. * Prevents modern browsers from displaying `audio` without controls.
  169. * Remove excess height in iOS 5 devices.
  170. */
  171. audio:not([controls]) {
  172. display: none;
  173. height: 0;
  174. }
  175. /*
  176. * Addresses styling for `hidden` attribute not present in IE 8/9.
  177. */
  178. [hidden] {
  179. display: none;
  180. }
  181. /* Base
  182. ========================================================================== */
  183. /*
  184. * 1. Sets default font family to sans-serif.
  185. * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom.
  186. */
  187. html {
  188. font-family: sans-serif;
  189. /* 1 */
  190. -webkit-text-size-adjust: 100%;
  191. -ms-text-size-adjust: 100%;
  192. /* 2 */
  193. }
  194. /*
  195. * Removes default margin.
  196. */
  197. body {
  198. margin: 0;
  199. }
  200. /* Links
  201. ========================================================================== */
  202. /*
  203. * Addresses `outline` inconsistency between Chrome and other browsers.
  204. */
  205. a:focus {
  206. outline: thin dotted;
  207. }
  208. /*
  209. * Improves readability when focused and also mouse hovered in all browsers.
  210. */
  211. a:active,
  212. a:hover {
  213. outline: 0;
  214. }
  215. /* Typography
  216. ========================================================================== */
  217. /*
  218. * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
  219. */
  220. abbr[title] {
  221. border-bottom: 1px dotted;
  222. }
  223. /*
  224. * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
  225. */
  226. b,
  227. strong {
  228. font-weight: bold;
  229. }
  230. /*
  231. * Addresses styling not present in Safari 5 and Chrome.
  232. */
  233. dfn {
  234. font-style: italic;
  235. }
  236. /*
  237. * Address differences between Firefox and other browsers.
  238. */
  239. hr {
  240. -moz-box-sizing: content-box;
  241. box-sizing: content-box;
  242. height: 0;
  243. }
  244. /*
  245. * Corrects font family set oddly in Safari 5 and Chrome.
  246. * 1. Consolas has a better baseline in running text compared to `Courier`
  247. */
  248. code,
  249. kbd,
  250. pre,
  251. samp {
  252. font-family: Consolas, monospace, serif;
  253. /* 1 */
  254. font-size: 1em;
  255. }
  256. /*
  257. * Improves readability of pre-formatted text in all browsers.
  258. */
  259. pre {
  260. white-space: pre-wrap;
  261. }
  262. /*
  263. * Sets consistent quote types.
  264. */
  265. q {
  266. quotes: "\201C" "\201D" "\2018" "\2019";
  267. }
  268. /*
  269. * Addresses inconsistent and variable font size in all browsers.
  270. */
  271. small {
  272. font-size: 80%;
  273. }
  274. /*
  275. * Prevents `sub` and `sup` affecting `line-height` in all browsers.
  276. */
  277. sub,
  278. sup {
  279. font-size: 75%;
  280. line-height: 0;
  281. position: relative;
  282. vertical-align: baseline;
  283. }
  284. sup {
  285. top: -0.5em;
  286. }
  287. sub {
  288. bottom: -0.25em;
  289. }
  290. /* Embedded content
  291. ========================================================================== */
  292. /*
  293. * Removes border when inside `a` element in IE 8/9.
  294. */
  295. img {
  296. border: 0;
  297. }
  298. /*
  299. * Corrects overflow displayed oddly in IE 9.
  300. */
  301. svg:not(:root) {
  302. overflow: hidden;
  303. }
  304. /* Figures
  305. ========================================================================== */
  306. /*
  307. * Addresses margin not present in IE 8/9 and Safari 5.
  308. */
  309. figure {
  310. margin: 0;
  311. }
  312. /* Forms
  313. ========================================================================== */
  314. /*
  315. * Define consistent border, margin, and padding.
  316. */
  317. fieldset {
  318. border: 0;
  319. margin: 0;
  320. padding: 0;
  321. }
  322. /*
  323. * 1. Corrects color not being inherited in IE 8/9.
  324. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  325. */
  326. legend {
  327. border: 0;
  328. /* 1 */
  329. padding: 0;
  330. /* 2 */
  331. }
  332. /*
  333. * 1. Corrects font family not being inherited in all browsers.
  334. * 2. Corrects font size not being inherited in all browsers.
  335. * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
  336. * 4. Define consistent box sizing
  337. * Defaults: `button`, `input` and `textarea` have box sizing set to `content-box`
  338. * `select`, `input[type="checkbox"]` and `input[type="radio"]` have box sizing set to `border-box`
  339. * Exceptions: `input[type="checkbox"]` and `input[type="radio"]` have box sizing set to `content-box` in IE 8/9.
  340. * `input[type="search"]` has box sizing set to `border-box` in Safari 5 and Chrome.
  341. */
  342. button,
  343. input,
  344. select,
  345. textarea {
  346. font-family: inherit;
  347. /* 1 */
  348. font-size: 100%;
  349. /* 2 */
  350. margin: 0;
  351. /* 3 */
  352. -moz-box-sizing: border-box;
  353. /* 4 */
  354. -webkit-box-sizing: border-box;
  355. box-sizing: border-box;
  356. }
  357. /*
  358. * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.
  359. */
  360. button,
  361. input {
  362. line-height: normal;
  363. }
  364. /*
  365. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  366. * All other form control elements do not inherit `text-transform` values.
  367. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
  368. * Correct `select` style inheritance in Firefox 4+ and Opera.
  369. */
  370. button,
  371. select {
  372. text-transform: none;
  373. }
  374. /*
  375. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
  376. * 2. Corrects inability to style clickable `input` types in iOS.
  377. * 3. Improves usability and consistency of cursor style between image-type `input` and others.
  378. */
  379. button,
  380. html input[type="button"],
  381. input[type="reset"],
  382. input[type="submit"] {
  383. -webkit-appearance: button;
  384. /* 2 */
  385. cursor: pointer;
  386. /* 3 */
  387. }
  388. /*
  389. * Improves consistency of cursor style for clickable elements
  390. */
  391. input[type="radio"],
  392. input[type="checkbox"] {
  393. cursor: pointer;
  394. }
  395. /*
  396. * Re-set default cursor for disabled elements.
  397. */
  398. button:disabled,
  399. input:disabled {
  400. cursor: default;
  401. }
  402. /*
  403. * 2. Removes excess padding in IE 8/9.
  404. */
  405. input[type="checkbox"],
  406. input[type="radio"] {
  407. padding: 0;
  408. }
  409. /*
  410. * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
  411. */
  412. input[type="search"] {
  413. -webkit-appearance: textfield;
  414. }
  415. /*
  416. * Removes inner padding and search cancel button in Safari 5 and Chrome on OS X.
  417. */
  418. input[type="search"]::-webkit-search-cancel-button,
  419. input[type="search"]::-webkit-search-decoration {
  420. -webkit-appearance: none;
  421. }
  422. /*
  423. * Removes inner padding and border in Firefox 4+.
  424. */
  425. button::-moz-focus-inner,
  426. input::-moz-focus-inner {
  427. border: 0;
  428. padding: 0;
  429. }
  430. /*
  431. * 1. Removes default vertical scrollbar in IE 8/9.
  432. * 2. Improves readability and alignment in all browsers.
  433. */
  434. textarea {
  435. overflow: auto;
  436. /* 1 */
  437. vertical-align: top;
  438. /* 2 */
  439. }
  440. /*
  441. * Removes placeholder transparency in Firefox.
  442. */
  443. ::-moz-placeholder {
  444. opacity: 1;
  445. }
  446. /* Tables
  447. ========================================================================== */
  448. /*
  449. * Remove most spacing between table cells.
  450. */
  451. table {
  452. border-collapse: collapse;
  453. border-spacing: 0;
  454. }
  455. /*
  456. * Component: Base
  457. * Description: Sets default values for HTML elements
  458. *
  459. * Component: `uk-h1`, `uk-h2`, `uk-h3`, `uk-h4`, `uk-h5`, `uk-h6`
  460. * `uk-img-preserve`
  461. *
  462. ========================================================================== */
  463. /* Body
  464. ========================================================================== */
  465. /*
  466. * `font-size` is set in `html` element to support the `rem` unit for font-sizes
  467. */
  468. html {
  469. font-size: 14px;
  470. }
  471. body {
  472. background: #ffffff;
  473. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  474. font-weight: normal;
  475. line-height: 20px;
  476. color: #444444;
  477. }
  478. /* Only phones */
  479. @media (max-width: 767px) {
  480. /*
  481. * Break strings if their length exceeds the width of their container
  482. */
  483. body {
  484. word-wrap: break-word;
  485. -webkit-hyphens: auto;
  486. -ms-hyphens: auto;
  487. -moz-hyphens: auto;
  488. hyphens: auto;
  489. }
  490. }
  491. /* Text-level semantics
  492. ========================================================================== */
  493. /*
  494. * Links
  495. */
  496. a {
  497. text-decoration: none;
  498. }
  499. a:hover {
  500. text-decoration: underline;
  501. }
  502. a {
  503. color: #0077dd;
  504. }
  505. a:hover {
  506. color: #005599;
  507. }
  508. /*
  509. * Emphasize
  510. */
  511. em {
  512. color: #dd0055;
  513. }
  514. /*
  515. * Insert
  516. */
  517. ins {
  518. background: #ffffaa;
  519. color: #444444;
  520. text-decoration: none;
  521. }
  522. /*
  523. * Mark
  524. * Note: Addresses styling not present in IE 8/9.
  525. */
  526. mark {
  527. background: #ffffaa;
  528. color: #444444;
  529. }
  530. /*
  531. * Selection highlight
  532. */
  533. ::-moz-selection {
  534. background: #3399ff;
  535. color: #ffffff;
  536. text-shadow: none;
  537. }
  538. ::selection {
  539. background: #3399ff;
  540. color: #ffffff;
  541. text-shadow: none;
  542. }
  543. /*
  544. * Abbreviation and definition
  545. */
  546. abbr[title],
  547. dfn[title] {
  548. cursor: help;
  549. }
  550. dfn[title] {
  551. border-bottom: 1px dotted;
  552. font-style: normal;
  553. }
  554. /* Embedded content
  555. ========================================================================== */
  556. /*
  557. * 1. Corrects max-width behavior (2.) if padding and border are used
  558. * 2. Responsiveness: Sets a maxium width relative to the parent and auto scales the height
  559. * 3. Remove the gap between images and the bottom of their containers
  560. */
  561. img {
  562. -moz-box-sizing: border-box;
  563. box-sizing: border-box;
  564. /* 1 */
  565. max-width: 100%;
  566. height: auto;
  567. /* 2 */
  568. vertical-align: middle;
  569. /* 3 */
  570. }
  571. /*
  572. * Preserve original image dimensions
  573. * 1. Fix Google maps automatically via URL detection
  574. */
  575. .uk-img-preserve,
  576. .uk-img-preserve img,
  577. img[src*="maps.gstatic.com"],
  578. img[src*="googleapis.com"] {
  579. max-width: none;
  580. }
  581. /* Spacing for block elements
  582. ========================================================================== */
  583. p,
  584. hr,
  585. ul,
  586. ol,
  587. dl,
  588. blockquote,
  589. pre,
  590. address,
  591. fieldset,
  592. figure {
  593. margin: 0 0 15px 0;
  594. }
  595. /*
  596. * Don't worry about the universal selector.
  597. * There is no mentionable performance impact.
  598. */
  599. * + p,
  600. * + hr,
  601. * + ul,
  602. * + ol,
  603. * + dl,
  604. * + blockquote,
  605. * + pre,
  606. * + address,
  607. * + fieldset,
  608. * + figure {
  609. margin-top: 15px;
  610. }
  611. /* Headings
  612. ========================================================================== */
  613. h1,
  614. h2,
  615. h3,
  616. h4,
  617. h5,
  618. h6 {
  619. margin: 0 0 15px 0;
  620. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  621. font-weight: normal;
  622. color: #444444;
  623. text-transform: none;
  624. }
  625. /*
  626. * Don't worry about the universal selector.
  627. * There is no mentionable performance impact.
  628. */
  629. * + h1,
  630. * + h2,
  631. * + h3,
  632. * + h4,
  633. * + h5,
  634. * + h6 {
  635. margin-top: 25px;
  636. }
  637. /*
  638. * TODO: Use `:extend` to move heading classes to the utility component
  639. */
  640. h1,
  641. .uk-h1 {
  642. font-size: 36px;
  643. line-height: 42px;
  644. }
  645. h2,
  646. .uk-h2 {
  647. font-size: 24px;
  648. line-height: 30px;
  649. }
  650. h3,
  651. .uk-h3 {
  652. font-size: 18px;
  653. line-height: 24px;
  654. }
  655. h4,
  656. .uk-h4 {
  657. font-size: 16px;
  658. line-height: 22px;
  659. }
  660. h5,
  661. .uk-h5 {
  662. font-size: 14px;
  663. line-height: 20px;
  664. }
  665. h6,
  666. .uk-h6 {
  667. font-size: 12px;
  668. line-height: 18px;
  669. }
  670. /* Lists
  671. ========================================================================== */
  672. /*
  673. * Ordered and unordered lists
  674. */
  675. ul,
  676. ol {
  677. padding-left: 30px;
  678. }
  679. /* Reset margin for nested lists */
  680. ul > li > ul,
  681. ul > li > ol,
  682. ol > li > ol,
  683. ol > li > ul {
  684. margin: 0;
  685. }
  686. /*
  687. * Description lists
  688. */
  689. dt {
  690. font-weight: bold;
  691. }
  692. dd {
  693. margin-left: 0;
  694. }
  695. /* Horizontal rule
  696. ========================================================================== */
  697. hr {
  698. display: block;
  699. padding: 0;
  700. border: 0;
  701. border-top: 1px solid #dddddd;
  702. }
  703. /* Address
  704. ========================================================================== */
  705. address {
  706. font-style: normal;
  707. }
  708. /* Quotes
  709. ========================================================================== */
  710. q,
  711. blockquote {
  712. font-style: italic;
  713. }
  714. blockquote {
  715. padding-left: 15px;
  716. border-left: 5px solid #dddddd;
  717. font-size: 16px;
  718. line-height: 22px;
  719. }
  720. /* Small print for identifying the source */
  721. blockquote small {
  722. display: block;
  723. color: #999999;
  724. font-style: normal;
  725. }
  726. /* Smaller margin if `small` follows */
  727. blockquote p:last-of-type {
  728. margin-bottom: 5px;
  729. }
  730. /* Code and preformatted text
  731. ========================================================================== */
  732. code {
  733. color: #dd0055;
  734. font-size: 12px;
  735. white-space: nowrap;
  736. padding: 0 4px;
  737. border: 1px solid #dddddd;
  738. border-radius: 3px;
  739. background: #fafafa;
  740. }
  741. /* Reset code elements if parent of pre elements */
  742. pre code {
  743. color: inherit;
  744. white-space: pre-wrap;
  745. padding: 0;
  746. border: 0;
  747. background: transparent;
  748. }
  749. pre {
  750. padding: 10px;
  751. background: #fafafa;
  752. color: #444444;
  753. font-size: 12px;
  754. line-height: 18px;
  755. -moz-tab-size: 4;
  756. tab-size: 4;
  757. border: 1px solid #dddddd;
  758. border-radius: 3px;
  759. }
  760. /* Forms
  761. ========================================================================== */
  762. /*
  763. * Vertical alignment
  764. * Exclude `radio` and `checkbox` elements because the default `baseline` value aligns better with text
  765. */
  766. button,
  767. input:not([type="radio"]):not([type="checkbox"]),
  768. select {
  769. vertical-align: middle;
  770. }
  771. /* Iframe
  772. ========================================================================== */
  773. iframe {
  774. border: 0;
  775. }
  776. /* Fix viewport for IE10 snap mode
  777. * http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
  778. ========================================================================== */
  779. @-ms-viewport {
  780. width: device-width;
  781. }
  782. /* Hooks
  783. ========================================================================== */
  784. /* Layout */
  785. /*
  786. * Name: Grid
  787. * Description: Provides a responsive, fluid and nestable grid
  788. *
  789. * Component: `uk-grid`
  790. * `uk-width-*`
  791. * `uk-push-*`
  792. * `uk-pull-*`
  793. *
  794. * Modifiers: `uk-grid-divider`
  795. * `uk-grid-margin`
  796. * `uk-grid-preserve`
  797. *
  798. * Uses: Panel: `uk-panel`
  799. *
  800. * Used by: Dropdown
  801. *
  802. ========================================================================== */
  803. /* Component
  804. ========================================================================== */
  805. /*
  806. * Micro clearfix
  807. */
  808. .uk-grid:before,
  809. .uk-grid:after {
  810. content: " ";
  811. display: table;
  812. }
  813. .uk-grid:after {
  814. clear: both;
  815. }
  816. /*
  817. * 1. Needed for the gutter
  818. * 2. Makes grid more robust so that it can be used with other block elements like lists
  819. */
  820. .uk-grid {
  821. /* 1 */
  822. margin: 0 0 0 -25px;
  823. /* 2 */
  824. padding: 0;
  825. list-style: none;
  826. }
  827. /*
  828. * Vertical gutter
  829. */
  830. .uk-grid + .uk-grid {
  831. margin-top: 25px;
  832. }
  833. /* Grid column
  834. ========================================================================== */
  835. /*
  836. * 1. Makes grid more robust so that it can be used with other block elements
  837. * 2. Create horizontal gutter
  838. * 3. `float` is set by default so columns always behave the same and create a new block format context
  839. */
  840. .uk-grid > [class*='uk-width-'] {
  841. /* 1 */
  842. margin: 0;
  843. /* 2 */
  844. padding-left: 25px;
  845. /* 3 */
  846. float: left;
  847. }
  848. /*
  849. * Remove margin from the last-child
  850. */
  851. .uk-grid > [class*='uk-width-'] > :last-child {
  852. margin-bottom: 0;
  853. }
  854. /* Sub-modifier: `uk-grid-margin`
  855. ========================================================================== */
  856. /*
  857. * This class is set by JavaScript and applies a vertical gutter if the columns stack or float into the next row
  858. * Higher specificity to override margin
  859. */
  860. .uk-grid > .uk-grid-margin {
  861. margin-top: 25px;
  862. }
  863. /* Modifier: `uk-grid-divider`
  864. ========================================================================== */
  865. /*
  866. * Horizontal divider
  867. * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row
  868. */
  869. .uk-grid-divider:not(:empty) {
  870. margin-left: -25px;
  871. margin-right: -25px;
  872. }
  873. .uk-grid-divider:not(:empty) > [class*='uk-width-'] {
  874. padding-left: 25px;
  875. padding-right: 25px;
  876. }
  877. .uk-grid-divider:not(:empty) > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
  878. .uk-grid-divider:not(:empty) > [class*='uk-width-2-']:nth-child(n+2),
  879. .uk-grid-divider:not(:empty) > [class*='uk-width-3-']:nth-child(n+2),
  880. .uk-grid-divider:not(:empty) > [class*='uk-width-4-']:nth-child(n+2),
  881. .uk-grid-divider:not(:empty) > [class*='uk-width-5-']:nth-child(n+2),
  882. .uk-grid-divider:not(:empty) > [class*='uk-width-6-']:nth-child(n+2),
  883. .uk-grid-divider:not(:empty) > [class*='uk-width-7-']:nth-child(n+2),
  884. .uk-grid-divider:not(:empty) > [class*='uk-width-8-']:nth-child(n+2),
  885. .uk-grid-divider:not(:empty) > [class*='uk-width-9-']:nth-child(n+2) {
  886. border-left: 1px solid #dddddd;
  887. }
  888. /* Only tablets and desktop */
  889. @media (min-width: 768px) {
  890. .uk-grid-divider:not(:empty) > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
  891. border-left: 1px solid #dddddd;
  892. }
  893. }
  894. /* Only desktop */
  895. @media (min-width: 960px) {
  896. .uk-grid-divider:not(:empty) > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
  897. border-left: 1px solid #dddddd;
  898. }
  899. }
  900. /*
  901. * Vertical divider
  902. */
  903. .uk-grid-divider:empty {
  904. margin-top: 25px;
  905. margin-bottom: 25px;
  906. border-top: 1px solid #dddddd;
  907. }
  908. /* Panel in grid
  909. ========================================================================== */
  910. /*
  911. * Vertical gutter for panels
  912. */
  913. .uk-grid > [class*='uk-width-'] > .uk-panel + .uk-panel {
  914. margin-top: 25px;
  915. }
  916. /* Large gutter
  917. ========================================================================== */
  918. /* Only large screens */
  919. @media (min-width: 1220px) {
  920. /*
  921. * Grid
  922. */
  923. /* Horizontal gutter */
  924. .uk-grid:not(.uk-grid-preserve) {
  925. margin-left: -35px;
  926. }
  927. .uk-grid:not(.uk-grid-preserve) > [class*='uk-width-'] {
  928. padding-left: 35px;
  929. }
  930. /* Vertical gutter */
  931. .uk-grid:not(.uk-grid-preserve) + .uk-grid {
  932. margin-top: 35px;
  933. }
  934. .uk-grid:not(.uk-grid-preserve) > .uk-grid-margin {
  935. margin-top: 35px;
  936. }
  937. /* Vertical gutter for panels */
  938. .uk-grid:not(.uk-grid-preserve) > [class*='uk-width-'] > .uk-panel + .uk-panel {
  939. margin-top: 35px;
  940. }
  941. /*
  942. * Modifier: `uk-grid-divider`
  943. */
  944. .uk-grid-divider:not(.uk-grid-preserve):not(:empty) {
  945. margin-left: -35px;
  946. margin-right: -35px;
  947. }
  948. .uk-grid-divider:not(.uk-grid-preserve):not(:empty) > [class*='uk-width-'] {
  949. padding-left: 35px;
  950. padding-right: 35px;
  951. }
  952. .uk-grid-divider:not(.uk-grid-preserve):empty {
  953. margin-top: 35px;
  954. margin-bottom: 35px;
  955. }
  956. }
  957. /* Sub-object: `uk-width-*`
  958. ========================================================================== */
  959. [class*='uk-width-'] {
  960. -moz-box-sizing: border-box;
  961. box-sizing: border-box;
  962. width: 100%;
  963. }
  964. /*
  965. * Widths
  966. */
  967. /* Whole */
  968. .uk-width-1-1 {
  969. width: 100%;
  970. }
  971. /* Halves */
  972. .uk-width-1-2,
  973. .uk-width-2-4,
  974. .uk-width-3-6,
  975. .uk-width-5-10 {
  976. width: 50%;
  977. }
  978. /* Thirds */
  979. .uk-width-1-3,
  980. .uk-width-2-6 {
  981. width: 33.333%;
  982. }
  983. .uk-width-2-3,
  984. .uk-width-4-6 {
  985. width: 66.666%;
  986. }
  987. /* Quarters */
  988. .uk-width-1-4 {
  989. width: 25%;
  990. }
  991. .uk-width-3-4 {
  992. width: 75%;
  993. }
  994. /* Fifths */
  995. .uk-width-1-5,
  996. .uk-width-2-10 {
  997. width: 20%;
  998. }
  999. .uk-width-2-5,
  1000. .uk-width-4-10 {
  1001. width: 40%;
  1002. }
  1003. .uk-width-3-5,
  1004. .uk-width-6-10 {
  1005. width: 60%;
  1006. }
  1007. .uk-width-4-5,
  1008. .uk-width-8-10 {
  1009. width: 80%;
  1010. }
  1011. /* Sixths */
  1012. .uk-width-1-6 {
  1013. width: 16.666%;
  1014. }
  1015. .uk-width-5-6 {
  1016. width: 83.333%;
  1017. }
  1018. /* Tenths */
  1019. .uk-width-1-10 {
  1020. width: 10%;
  1021. }
  1022. .uk-width-3-10 {
  1023. width: 30%;
  1024. }
  1025. .uk-width-7-10 {
  1026. width: 70%;
  1027. }
  1028. .uk-width-9-10 {
  1029. width: 90%;
  1030. }
  1031. /* Only tablets and desktop */
  1032. @media (min-width: 768px) {
  1033. /* Whole */
  1034. .uk-width-medium-1-1 {
  1035. width: 100%;
  1036. }
  1037. /* Halves */
  1038. .uk-width-medium-1-2,
  1039. .uk-width-medium-2-4,
  1040. .uk-width-medium-3-6,
  1041. .uk-width-medium-5-10 {
  1042. width: 50%;
  1043. }
  1044. /* Thirds */
  1045. .uk-width-medium-1-3,
  1046. .uk-width-medium-2-6 {
  1047. width: 33.333%;
  1048. }
  1049. .uk-width-medium-2-3,
  1050. .uk-width-medium-4-6 {
  1051. width: 66.666%;
  1052. }
  1053. /* Quarters */
  1054. .uk-width-medium-1-4 {
  1055. width: 25%;
  1056. }
  1057. .uk-width-medium-3-4 {
  1058. width: 75%;
  1059. }
  1060. /* Fifths */
  1061. .uk-width-medium-1-5,
  1062. .uk-width-medium-2-10 {
  1063. width: 20%;
  1064. }
  1065. .uk-width-medium-2-5,
  1066. .uk-width-medium-4-10 {
  1067. width: 40%;
  1068. }
  1069. .uk-width-medium-3-5,
  1070. .uk-width-medium-6-10 {
  1071. width: 60%;
  1072. }
  1073. .uk-width-medium-4-5,
  1074. .uk-width-medium-8-10 {
  1075. width: 80%;
  1076. }
  1077. /* Sixths */
  1078. .uk-width-medium-1-6 {
  1079. width: 16.666%;
  1080. }
  1081. .uk-width-medium-5-6 {
  1082. width: 83.333%;
  1083. }
  1084. /* Tenths */
  1085. .uk-width-medium-1-10 {
  1086. width: 10%;
  1087. }
  1088. .uk-width-medium-3-10 {
  1089. width: 30%;
  1090. }
  1091. .uk-width-medium-7-10 {
  1092. width: 70%;
  1093. }
  1094. .uk-width-medium-9-10 {
  1095. width: 90%;
  1096. }
  1097. }
  1098. /* Only desktop */
  1099. @media (min-width: 960px) {
  1100. /* Whole */
  1101. .uk-width-large-1-1 {
  1102. width: 100%;
  1103. }
  1104. /* Halves */
  1105. .uk-width-large-1-2,
  1106. .uk-width-large-2-4,
  1107. .uk-width-large-3-6,
  1108. .uk-width-large-5-10 {
  1109. width: 50%;
  1110. }
  1111. /* Thirds */
  1112. .uk-width-large-1-3,
  1113. .uk-width-large-2-6 {
  1114. width: 33.333%;
  1115. }
  1116. .uk-width-large-2-3,
  1117. .uk-width-large-4-6 {
  1118. width: 66.666%;
  1119. }
  1120. /* Quarters */
  1121. .uk-width-large-1-4 {
  1122. width: 25%;
  1123. }
  1124. .uk-width-large-3-4 {
  1125. width: 75%;
  1126. }
  1127. /* Fifths */
  1128. .uk-width-large-1-5,
  1129. .uk-width-large-2-10 {
  1130. width: 20%;
  1131. }
  1132. .uk-width-large-2-5,
  1133. .uk-width-large-4-10 {
  1134. width: 40%;
  1135. }
  1136. .uk-width-large-3-5,
  1137. .uk-width-large-6-10 {
  1138. width: 60%;
  1139. }
  1140. .uk-width-large-4-5,
  1141. .uk-width-large-8-10 {
  1142. width: 80%;
  1143. }
  1144. /* Sixths */
  1145. .uk-width-large-1-6 {
  1146. width: 16.666%;
  1147. }
  1148. .uk-width-large-5-6 {
  1149. width: 83.333%;
  1150. }
  1151. /* Tenths */
  1152. .uk-width-large-1-10 {
  1153. width: 10%;
  1154. }
  1155. .uk-width-large-3-10 {
  1156. width: 30%;
  1157. }
  1158. .uk-width-large-7-10 {
  1159. width: 70%;
  1160. }
  1161. .uk-width-large-9-10 {
  1162. width: 90%;
  1163. }
  1164. }
  1165. /* Sub-object: `uk-push-*` and `uk-pull-*`
  1166. ========================================================================== */
  1167. /*
  1168. * Source ordering
  1169. * Works only with `uk-width-medium-*`
  1170. */
  1171. /* Only tablets and desktop */
  1172. @media (min-width: 768px) {
  1173. [class*='uk-push-'],
  1174. [class*='uk-pull-'] {
  1175. position: relative;
  1176. }
  1177. /*
  1178. * Push
  1179. */
  1180. /* Halves */
  1181. .uk-push-1-2,
  1182. .uk-push-2-4,
  1183. .uk-push-3-6,
  1184. .uk-push-5-10 {
  1185. left: 50%;
  1186. }
  1187. /* Thirds */
  1188. .uk-push-1-3,
  1189. .uk-push-2-6 {
  1190. left: 33.333%;
  1191. }
  1192. .uk-push-2-3,
  1193. .uk-push-4-6 {
  1194. left: 66.666%;
  1195. }
  1196. /* Quarters */
  1197. .uk-push-1-4 {
  1198. left: 25%;
  1199. }
  1200. .uk-push-3-4 {
  1201. left: 75%;
  1202. }
  1203. /* Fifths */
  1204. .uk-push-1-5,
  1205. .uk-push-2-10 {
  1206. left: 20%;
  1207. }
  1208. .uk-push-2-5,
  1209. .uk-push-4-10 {
  1210. left: 40%;
  1211. }
  1212. .uk-push-3-5,
  1213. .uk-push-6-10 {
  1214. left: 60%;
  1215. }
  1216. .uk-push-4-5,
  1217. .uk-push-8-10 {
  1218. left: 80%;
  1219. }
  1220. /* Sixths */
  1221. .uk-push-1-6 {
  1222. left: 16.666%;
  1223. }
  1224. .uk-push-5-6 {
  1225. left: 83.333%;
  1226. }
  1227. /* Tenths */
  1228. .uk-push-1-10 {
  1229. left: 10%;
  1230. }
  1231. .uk-push-3-10 {
  1232. left: 30%;
  1233. }
  1234. .uk-push-7-10 {
  1235. left: 70%;
  1236. }
  1237. .uk-push-9-10 {
  1238. left: 90%;
  1239. }
  1240. /*
  1241. * Pull
  1242. */
  1243. /* Halves */
  1244. .uk-pull-1-2,
  1245. .uk-pull-2-4,
  1246. .uk-pull-3-6,
  1247. .uk-pull-5-10 {
  1248. left: -50%;
  1249. }
  1250. /* Thirds */
  1251. .uk-pull-1-3,
  1252. .uk-pull-2-6 {
  1253. left: -33.333%;
  1254. }
  1255. .uk-pull-2-3,
  1256. .uk-pull-4-6 {
  1257. left: -66.666%;
  1258. }
  1259. /* Quarters */
  1260. .uk-pull-1-4 {
  1261. left: -25%;
  1262. }
  1263. .uk-pull-3-4 {
  1264. left: -75%;
  1265. }
  1266. /* Fifths */
  1267. .uk-pull-1-5,
  1268. .uk-pull-2-10 {
  1269. left: -20%;
  1270. }
  1271. .uk-pull-2-5,
  1272. .uk-pull-4-10 {
  1273. left: -40%;
  1274. }
  1275. .uk-pull-3-5,
  1276. .uk-pull-6-10 {
  1277. left: -60%;
  1278. }
  1279. .uk-pull-4-5,
  1280. .uk-pull-8-10 {
  1281. left: -80%;
  1282. }
  1283. /* Sixths */
  1284. .uk-pull-1-6 {
  1285. left: -16.666%;
  1286. }
  1287. .uk-pull-5-6 {
  1288. left: -83.333%;
  1289. }
  1290. /* Tenths */
  1291. .uk-pull-1-10 {
  1292. left: -10%;
  1293. }
  1294. .uk-pull-3-10 {
  1295. left: -30%;
  1296. }
  1297. .uk-pull-7-10 {
  1298. left: -70%;
  1299. }
  1300. .uk-pull-9-10 {
  1301. left: -90%;
  1302. }
  1303. }
  1304. /*
  1305. * Name: Panel
  1306. * Description: Defines styles for reusable content areas
  1307. *
  1308. * Component: `uk-panel`
  1309. *
  1310. * Sub-objects: `uk-panel-title`
  1311. * `uk-panel-badge`
  1312. *
  1313. * Modifiers: `uk-panel-box`
  1314. * `uk-panel-box-primary`
  1315. * `uk-panel-box-secondary`
  1316. * `uk-panel-header`
  1317. * `uk-panel-space`
  1318. * `uk-panel-divider`
  1319. *
  1320. * Uses: Nav: `uk-nav-side`
  1321. *
  1322. * Used by: Dropdown
  1323. * Off-canvas
  1324. * Grid
  1325. *
  1326. ========================================================================== */
  1327. /* Component
  1328. ========================================================================== */
  1329. /*
  1330. * Create position context for badges
  1331. */
  1332. .uk-panel {
  1333. position: relative;
  1334. }
  1335. /*
  1336. * Micro clearfix to make panels more robust
  1337. */
  1338. .uk-panel:before,
  1339. .uk-panel:after {
  1340. content: " ";
  1341. display: table;
  1342. }
  1343. .uk-panel:after {
  1344. clear: both;
  1345. }
  1346. /*
  1347. * Remove margin from the last-child if not `uk-windget-title`
  1348. */
  1349. .uk-panel > :not(.uk-panel-title):last-child {
  1350. margin-bottom: 0;
  1351. }
  1352. /* Sub-object: `uk-panel-title`
  1353. ========================================================================== */
  1354. .uk-panel-title {
  1355. margin-bottom: 15px;
  1356. font-size: 18px;
  1357. line-height: 24px;
  1358. font-weight: normal;
  1359. text-transform: none;
  1360. color: #444444;
  1361. }
  1362. /* Sub-object: `uk-panel-badge`
  1363. ========================================================================== */
  1364. .uk-panel-badge {
  1365. position: absolute;
  1366. top: 0;
  1367. right: 0;
  1368. z-index: 1;
  1369. }
  1370. /*
  1371. * Remove margin from adjacent element
  1372. */
  1373. .uk-panel-badge + * {
  1374. margin-top: 0;
  1375. }
  1376. /* Modifier: `uk-panel-box`
  1377. ========================================================================== */
  1378. .uk-panel-box {
  1379. padding: 15px;
  1380. background: #fafafa;
  1381. color: #444444;
  1382. border: 1px solid #dddddd;
  1383. border-radius: 4px;
  1384. }
  1385. .uk-panel-box .uk-panel-title {
  1386. color: #444444;
  1387. }
  1388. .uk-panel-box .uk-panel-badge {
  1389. top: 10px;
  1390. right: 10px;
  1391. }
  1392. /*
  1393. * Nav in panel
  1394. */
  1395. .uk-panel-box .uk-nav-side {
  1396. margin: 0 -15px;
  1397. }
  1398. /*
  1399. * Sub-modifier: `uk-panel-box-primary`
  1400. */
  1401. .uk-panel-box-primary {
  1402. background-color: #ebf7fd;
  1403. color: #2d7091;
  1404. border-color: rgba(45, 112, 145, 0.3);
  1405. }
  1406. .uk-panel-box-primary .uk-panel-title {
  1407. color: #2d7091;
  1408. }
  1409. /*
  1410. * Sub-modifier: `uk-panel-box-secondary`
  1411. */
  1412. .uk-panel-box-secondary {
  1413. background-color: #ffffff;
  1414. color: #444444;
  1415. }
  1416. .uk-panel-box-secondary .uk-panel-title {
  1417. color: #444444;
  1418. }
  1419. /* Modifier: `uk-panel-header`
  1420. ========================================================================== */
  1421. .uk-panel-header .uk-panel-title {
  1422. padding-bottom: 10px;
  1423. border-bottom: 1px solid #dddddd;
  1424. color: #444444;
  1425. }
  1426. /* Modifier: `uk-panel-space`
  1427. ========================================================================== */
  1428. .uk-panel-space {
  1429. padding: 30px;
  1430. }
  1431. .uk-panel-space .uk-panel-badge {
  1432. top: 30px;
  1433. right: 30px;
  1434. }
  1435. /* Modifier: `uk-panel-divider`
  1436. ========================================================================== */
  1437. .uk-panel + .uk-panel-divider {
  1438. margin-top: 50px !important;
  1439. }
  1440. .uk-panel + .uk-panel-divider:before {
  1441. content: "";
  1442. display: block;
  1443. position: absolute;
  1444. top: -25px;
  1445. left: 0;
  1446. right: 0;
  1447. border-top: 1px solid #dddddd;
  1448. }
  1449. /* Only large screens */
  1450. @media (min-width: 1220px) {
  1451. .uk-panel + .uk-panel-divider {
  1452. margin-top: 70px !important;
  1453. }
  1454. .uk-panel + .uk-panel-divider:before {
  1455. top: -35px;
  1456. }
  1457. }
  1458. /* Hooks
  1459. ========================================================================== */
  1460. /*
  1461. * Name: Article
  1462. * Description: Defines styles for articles within your page
  1463. *
  1464. * Component: `uk-article`
  1465. *
  1466. * Sub-objects: `uk-article-title`
  1467. * `uk-article-meta`
  1468. * `uk-article-lead`
  1469. * `uk-article-divider`
  1470. *
  1471. ========================================================================== */
  1472. /* Component
  1473. ========================================================================== */
  1474. /*
  1475. * Micro clearfix to make articles more robust
  1476. */
  1477. .uk-article:before,
  1478. .uk-article:after {
  1479. content: " ";
  1480. display: table;
  1481. }
  1482. .uk-article:after {
  1483. clear: both;
  1484. }
  1485. /*
  1486. * Remove margin from the last-child
  1487. */
  1488. .uk-article > :last-child {
  1489. margin-bottom: 0;
  1490. }
  1491. /*
  1492. * Vertical gutter for articles
  1493. */
  1494. .uk-article + .uk-article {
  1495. margin-top: 15px;
  1496. }
  1497. /* Sub-object `uk-article-title`
  1498. ========================================================================== */
  1499. .uk-article-title {
  1500. font-size: 36px;
  1501. line-height: 42px;
  1502. font-weight: normal;
  1503. text-transform: none;
  1504. }
  1505. .uk-article-title a {
  1506. color: inherit;
  1507. text-decoration: none;
  1508. }
  1509. /* Sub-object `uk-article-meta`
  1510. ========================================================================== */
  1511. .uk-article-meta {
  1512. font-size: 12px;
  1513. line-height: 18px;
  1514. color: #999999;
  1515. }
  1516. /* Sub-object `uk-article-lead`
  1517. ========================================================================== */
  1518. .uk-article-lead {
  1519. color: #444444;
  1520. font-size: 18px;
  1521. line-height: 24px;
  1522. font-weight: normal;
  1523. }
  1524. /* Sub-object `uk-article-divider`
  1525. ========================================================================== */
  1526. .uk-article-divider {
  1527. margin-bottom: 25px;
  1528. border-color: #dddddd;
  1529. }
  1530. * + .uk-article-divider {
  1531. margin-top: 25px;
  1532. }
  1533. /* Hooks
  1534. ========================================================================== */
  1535. /*
  1536. * Name: Comment
  1537. * Description: Defines styles for comment threads
  1538. *
  1539. * Component: `uk-comment`
  1540. *
  1541. * Sub-objects: `uk-comment-header`
  1542. * `uk-comment-avatar`
  1543. * `uk-comment-title`
  1544. * `uk-comment-meta`
  1545. * `uk-comment-body`
  1546. * `uk-comment-list`
  1547. *
  1548. ========================================================================== */
  1549. /* Component
  1550. ========================================================================== */
  1551. /* Sub-object `uk-comment-header`
  1552. ========================================================================== */
  1553. .uk-comment-header {
  1554. margin-bottom: 15px;
  1555. padding: 10px;
  1556. border: 1px solid #dddddd;
  1557. border-radius: 4px;
  1558. background: #fafafa;
  1559. }
  1560. /*
  1561. * Micro clearfix
  1562. */
  1563. .uk-comment-header:before,
  1564. .uk-comment-header:after {
  1565. content: " ";
  1566. display: table;
  1567. }
  1568. .uk-comment-header:after {
  1569. clear: both;
  1570. }
  1571. /* Sub-object `uk-comment-avatar`
  1572. ========================================================================== */
  1573. .uk-comment-avatar {
  1574. margin-right: 15px;
  1575. float: left;
  1576. }
  1577. /* Sub-object `uk-comment-title`
  1578. ========================================================================== */
  1579. .uk-comment-title {
  1580. margin: 5px 0 0 0;
  1581. font-size: 16px;
  1582. line-height: 22px;
  1583. }
  1584. /* Sub-object `uk-comment-meta`
  1585. ========================================================================== */
  1586. .uk-comment-meta {
  1587. margin: 2px 0 0 0;
  1588. font-size: 11px;
  1589. line-height: 16px;
  1590. color: #999999;
  1591. }
  1592. /* Sub-object `uk-comment-body`
  1593. ========================================================================== */
  1594. /*
  1595. * Remove margin from the last-child
  1596. */
  1597. .uk-comment-body > :last-child {
  1598. margin-bottom: 0;
  1599. }
  1600. /* Sub-object `uk-comment-list`
  1601. ========================================================================== */
  1602. .uk-comment-list {
  1603. padding: 0;
  1604. list-style: none;
  1605. }
  1606. .uk-comment-list .uk-comment + ul {
  1607. margin: 25px 0 0 0;
  1608. padding-left: 100px;
  1609. list-style: none;
  1610. }
  1611. .uk-comment-list > li:nth-child(n+2),
  1612. .uk-comment-list .uk-comment + ul > li:nth-child(n+2) {
  1613. margin-top: 25px;
  1614. }
  1615. /* Hooks
  1616. ========================================================================== */
  1617. /* Navs */
  1618. /*
  1619. * Name: Nav
  1620. * Description: Defines styles for list navigations
  1621. *
  1622. * Component: `uk-nav`
  1623. *
  1624. * Sub-objects: `uk-nav-header`
  1625. * `uk-nav-divider`
  1626. * `uk-nav-sub`
  1627. *
  1628. * Modifiers: `uk-nav-parent-icon`
  1629. * `uk-nav-side`
  1630. * `uk-nav-dropdown`
  1631. * `uk-nav-navbar`
  1632. * `uk-nav-search`
  1633. * `uk-nav-offcanvas`
  1634. *
  1635. * States: `uk-active`
  1636. * `uk-parent`
  1637. * `uk-open`
  1638. * `uk-touch`
  1639. *
  1640. * Uses: Icon: FontAwesome
  1641. *
  1642. * Used by: Panel
  1643. * Dropdown
  1644. *
  1645. ========================================================================== */
  1646. /* Component
  1647. ========================================================================== */
  1648. .uk-nav,
  1649. .uk-nav ul {
  1650. margin: 0;
  1651. padding: 0;
  1652. list-style: none;
  1653. }
  1654. /*
  1655. * Items
  1656. */
  1657. .uk-nav li > a {
  1658. display: block;
  1659. text-decoration: none;
  1660. }
  1661. .uk-nav > li > a {
  1662. padding: 5px 15px;
  1663. }
  1664. /*
  1665. * Nested items
  1666. */
  1667. .uk-nav ul {
  1668. padding-left: 15px;
  1669. }
  1670. .uk-nav ul a {
  1671. padding: 2px 0;
  1672. }
  1673. /*
  1674. * Item subtitle
  1675. */
  1676. .uk-nav li > a > div {
  1677. font-size: 12px;
  1678. line-height: 18px;
  1679. }
  1680. /* Sub-object: `uk-nav-header`
  1681. ========================================================================== */
  1682. .uk-nav-header {
  1683. padding: 5px 15px;
  1684. text-transform: uppercase;
  1685. font-weight: bold;
  1686. font-size: 12px;
  1687. }
  1688. .uk-nav-header:not(:first-child) {
  1689. margin-top: 15px;
  1690. }
  1691. /* Sub-object: `uk-nav-divider`
  1692. ========================================================================== */
  1693. .uk-nav-divider {
  1694. margin: 9px 15px;
  1695. }
  1696. /* Sub-object: `uk-nav-sub`
  1697. ========================================================================== */
  1698. /*
  1699. * `ul` needed for higher specificity to override padding
  1700. */
  1701. ul.uk-nav-sub {
  1702. padding: 5px 0 5px 15px;
  1703. }
  1704. /* Modifier: `uk-nav-parent-icon`
  1705. ========================================================================== */
  1706. .uk-nav-parent-icon > .uk-parent > a:after {
  1707. content: "\f104";
  1708. width: 20px;
  1709. margin-right: -10px;
  1710. float: right;
  1711. font-family: "FontAwesome";
  1712. text-align: center;
  1713. }
  1714. .uk-nav-parent-icon > .uk-parent.uk-open > a:after {
  1715. content: "\f107";
  1716. }
  1717. /* Modifier `uk-nav-side`
  1718. ========================================================================== */
  1719. /*
  1720. * Items
  1721. */
  1722. .uk-nav-side > li > a {
  1723. color: #444444;
  1724. }
  1725. /*
  1726. * Hover
  1727. * 1. Apply hover style also to focus state
  1728. * 2. Remove default focus style
  1729. */
  1730. .uk-nav-side > li > a:hover,
  1731. .uk-nav-side > li > a:focus {
  1732. /* 1 */
  1733. background: rgba(0, 0, 0, 0.03);
  1734. color: #444444;
  1735. outline: none;
  1736. /* 2 */
  1737. box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06);
  1738. text-shadow: 0 -1px 0 #ffffff;
  1739. }
  1740. /* Active */
  1741. .uk-nav-side > li.uk-active > a {
  1742. background: #00a8e6;
  1743. color: #ffffff;
  1744. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  1745. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  1746. }
  1747. /*
  1748. * Sub-object: `uk-nav-header`
  1749. */
  1750. .uk-nav-side .uk-nav-header {
  1751. color: #444444;
  1752. }
  1753. /*
  1754. * Sub-object: `uk-nav-divider`
  1755. */
  1756. .uk-nav-side .uk-nav-divider {
  1757. border-top: 1px solid #dddddd;
  1758. box-shadow: 0 1px 0 #ffffff;
  1759. }
  1760. /*
  1761. * Nested items
  1762. */
  1763. .uk-nav-side ul a {
  1764. color: #0077dd;
  1765. }
  1766. .uk-nav-side ul a:hover {
  1767. color: #005599;
  1768. }
  1769. /* Modifier `uk-nav-dropdown`
  1770. ========================================================================== */
  1771. /*
  1772. * Items
  1773. */
  1774. .uk-nav-dropdown > li > a {
  1775. color: #444444;
  1776. }
  1777. /*
  1778. * Hover
  1779. * 1. Apply hover style also to focus state
  1780. * 2. Remove default focus style
  1781. */
  1782. .uk-nav-dropdown > li > a:hover,
  1783. .uk-nav-dropdown > li > a:focus {
  1784. /* 1 */
  1785. background: #00a8e6;
  1786. color: #ffffff;
  1787. outline: none;
  1788. /* 2 */
  1789. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  1790. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  1791. }
  1792. /*
  1793. * Sub-object: `uk-nav-header`
  1794. */
  1795. .uk-nav-dropdown .uk-nav-header {
  1796. color: #999999;
  1797. }
  1798. /*
  1799. * Sub-object: `uk-nav-divider`
  1800. */
  1801. .uk-nav-dropdown .uk-nav-divider {
  1802. border-top: 1px solid #dddddd;
  1803. }
  1804. /*
  1805. * Nested items
  1806. */
  1807. .uk-nav-dropdown ul a {
  1808. color: #0077dd;
  1809. }
  1810. .uk-nav-dropdown ul a:hover {
  1811. color: #005599;
  1812. }
  1813. /* Modifier `uk-nav-navbar`
  1814. ========================================================================== */
  1815. /*
  1816. * Items
  1817. */
  1818. .uk-nav-navbar > li > a {
  1819. color: #444444;
  1820. }
  1821. /*
  1822. * Hover
  1823. * 1. Apply hover style also to focus state
  1824. * 2. Remove default focus style
  1825. */
  1826. .uk-nav-navbar > li > a:hover,
  1827. .uk-nav-navbar > li > a:focus {
  1828. /* 1 */
  1829. background: #00a8e6;
  1830. color: #ffffff;
  1831. outline: none;
  1832. /* 2 */
  1833. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  1834. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  1835. }
  1836. /*
  1837. * Sub-object: `uk-nav-header`
  1838. */
  1839. .uk-nav-navbar .uk-nav-header {
  1840. color: #999999;
  1841. }
  1842. /*
  1843. * Sub-object: `uk-nav-divider`
  1844. */
  1845. .uk-nav-navbar .uk-nav-divider {
  1846. border-top: 1px solid #dddddd;
  1847. }
  1848. /*
  1849. * Nested items
  1850. */
  1851. .uk-nav-navbar ul a {
  1852. color: #0077dd;
  1853. }
  1854. .uk-nav-navbar ul a:hover {
  1855. color: #005599;
  1856. }
  1857. /* Modifier `uk-nav-search`
  1858. ========================================================================== */
  1859. /*
  1860. * Items
  1861. */
  1862. .uk-nav-search > li > a {
  1863. color: #444444;
  1864. }
  1865. /*
  1866. * Active
  1867. * 1. Remove default focus style
  1868. */
  1869. .uk-nav-search > li.uk-active > a {
  1870. background: #00a8e6;
  1871. color: #ffffff;
  1872. outline: none;
  1873. /* 2 */
  1874. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  1875. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  1876. }
  1877. /*
  1878. * Sub-object: `uk-nav-header`
  1879. */
  1880. .uk-nav-search .uk-nav-header {
  1881. color: #999999;
  1882. }
  1883. /*
  1884. * Sub-object: `uk-nav-divider`
  1885. */
  1886. .uk-nav-search .uk-nav-divider {
  1887. border-top: 1px solid #dddddd;
  1888. }
  1889. /*
  1890. * Nested items
  1891. */
  1892. .uk-nav-search ul a {
  1893. color: #0077dd;
  1894. }
  1895. .uk-nav-search ul a:hover {
  1896. color: #005599;
  1897. }
  1898. /* Modifier `uk-nav-offcanvas`
  1899. ========================================================================== */
  1900. /*
  1901. * Items
  1902. */
  1903. .uk-nav-offcanvas > li > a {
  1904. color: #cccccc;
  1905. padding: 10px 15px;
  1906. border-top: 1px solid rgba(0, 0, 0, 0.3);
  1907. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  1908. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  1909. }
  1910. /*
  1911. * Hover
  1912. * No hover on touch devices because it behaves buggy in fixed offcanvas
  1913. * 1. Apply hover style also to focus state
  1914. * 2. Remove default focus style
  1915. */
  1916. .uk-nav-offcanvas > .uk-open > a,
  1917. html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
  1918. html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
  1919. /* 1 */
  1920. background: #404040;
  1921. color: #ffffff;
  1922. outline: none;
  1923. /* 2 */
  1924. }
  1925. /*
  1926. * Active
  1927. * `html .uk-nav` needed for higher specificity to override hover
  1928. */
  1929. html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
  1930. background: #1a1a1a;
  1931. color: #ffffff;
  1932. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  1933. }
  1934. /*
  1935. * Sub-object: `uk-nav-header`
  1936. */
  1937. .uk-nav-offcanvas .uk-nav-header {
  1938. color: #777777;
  1939. margin-top: 0;
  1940. border-top: 1px solid rgba(0, 0, 0, 0.3);
  1941. background: #404040;
  1942. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  1943. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  1944. }
  1945. /*
  1946. * Sub-object: `uk-nav-divider`
  1947. */
  1948. .uk-nav-offcanvas .uk-nav-divider {
  1949. border-top: 1px solid rgba(255, 255, 255, 0.01);
  1950. margin: 0;
  1951. height: 4px;
  1952. background: rgba(0, 0, 0, 0.2);
  1953. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  1954. }
  1955. /*
  1956. * Nested items
  1957. * No hover on touch devices because it behaves buggy in fixed offcanvas
  1958. */
  1959. .uk-nav-offcanvas ul a {
  1960. color: #cccccc;
  1961. }
  1962. html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  1963. color: #ffffff;
  1964. }
  1965. /* Hooks
  1966. ========================================================================== */
  1967. /*
  1968. * Name: Navbar
  1969. * Description: Defines styles for the navigation bar
  1970. *
  1971. * Component: `uk-navbar`
  1972. *
  1973. * Sub-objects: `uk-navbar-nav`
  1974. * `uk-navbar-nav-subtitle`
  1975. * `uk-navbar-content`
  1976. * `uk-navbar-brand`
  1977. * `uk-navbar-toggle`
  1978. * `uk-navbar-toggle-alt`
  1979. * `uk-navbar-center`
  1980. * `uk-navbar-flip`
  1981. *
  1982. * Modifiers: `uk-navbar-attached`
  1983. *
  1984. * States: `uk-active`
  1985. * `uk-parent`
  1986. * `uk-open`
  1987. *
  1988. * Used by: Dropdown
  1989. *
  1990. ========================================================================== */
  1991. /* Component
  1992. ========================================================================== */
  1993. .uk-navbar {
  1994. background: #f5f5f5;
  1995. color: #444444;
  1996. border: 1px solid rgba(0, 0, 0, 0.06);
  1997. }
  1998. /*
  1999. * Micro clearfix
  2000. */
  2001. .uk-navbar:before,
  2002. .uk-navbar:after {
  2003. content: " ";
  2004. display: table;
  2005. }
  2006. .uk-navbar:after {
  2007. clear: both;
  2008. }
  2009. /* Sub-object: `uk-navbar-nav`
  2010. ========================================================================== */
  2011. .uk-navbar-nav {
  2012. margin: 0;
  2013. padding: 0;
  2014. list-style: none;
  2015. float: left;
  2016. }
  2017. /*
  2018. * 1. Create position context for dropdowns
  2019. */
  2020. .uk-navbar-nav > li {
  2021. position: relative;
  2022. /* 1 */
  2023. float: left;
  2024. }
  2025. /*
  2026. * 1. Dimensions
  2027. * 2. Style
  2028. */
  2029. .uk-navbar-nav > li > a {
  2030. display: block;
  2031. -moz-box-sizing: border-box;
  2032. box-sizing: border-box;
  2033. text-decoration: none;
  2034. height: 40px;
  2035. padding: 0 15px;
  2036. line-height: 40px;
  2037. color: #444444;
  2038. font-size: 14px;
  2039. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  2040. font-weight: normal;
  2041. margin-top: -1px;
  2042. /* 1 */
  2043. margin-left: -1px;
  2044. /* 2 */
  2045. height: 41px;
  2046. /* 3 */
  2047. border: 1px solid transparent;
  2048. border-bottom-width: 0;
  2049. text-shadow: 0 1px 0 #ffffff;
  2050. }
  2051. /* Appear not as link */
  2052. .uk-navbar-nav > li > a[href='#'] {
  2053. cursor: auto;
  2054. }
  2055. /*
  2056. * Hover
  2057. * 1. Apply hover style also to focus state
  2058. * 2. Also apply if dropdown is opened
  2059. * 3. Remove default focus style
  2060. */
  2061. .uk-navbar-nav > li:hover > a,
  2062. .uk-navbar-nav > li > a:focus,
  2063. .uk-navbar-nav > li.uk-open > a {
  2064. background-color: #fafafa;
  2065. color: #444444;
  2066. outline: none;
  2067. /* 3 */
  2068. position: relative;
  2069. /* 1 */
  2070. z-index: 1;
  2071. /* 2 */
  2072. border-left-color: rgba(0, 0, 0, 0.1);
  2073. border-right-color: rgba(0, 0, 0, 0.1);
  2074. border-top-color: rgba(0, 0, 0, 0.1);
  2075. }
  2076. /* OnClick */.uk-navbar-nav > li > a:active {
  2077. background-color: #eeeeee;
  2078. color: #444444;
  2079. border-left-color: rgba(0, 0, 0, 0.1);
  2080. border-right-color: rgba(0, 0, 0, 0.1);
  2081. border-top-color: rgba(0, 0, 0, 0.2);
  2082. }
  2083. /* Active */
  2084. .uk-navbar-nav > li.uk-active > a {
  2085. background-color: #fafafa;
  2086. color: #444444;
  2087. border-left-color: rgba(0, 0, 0, 0.1);
  2088. border-right-color: rgba(0, 0, 0, 0.1);
  2089. border-top-color: rgba(0, 0, 0, 0.1);
  2090. }
  2091. /* Sub-objects: `uk-navbar-nav-subtitle`
  2092. ========================================================================== */
  2093. .uk-navbar-nav .uk-navbar-nav-subtitle {
  2094. line-height: 28px;
  2095. }
  2096. .uk-navbar-nav-subtitle > div {
  2097. margin-top: -6px;
  2098. font-size: 10px;
  2099. line-height: 12px;
  2100. }
  2101. /* Sub-objects: `uk-navbar-content`, `uk-navbar-brand`, `uk-navbar-toggle`
  2102. ========================================================================== */
  2103. /*
  2104. * Imitate navbar items
  2105. */
  2106. .uk-navbar-content,
  2107. .uk-navbar-brand,
  2108. .uk-navbar-toggle {
  2109. -moz-box-sizing: border-box;
  2110. box-sizing: border-box;
  2111. height: 40px;
  2112. padding: 0 15px;
  2113. float: left;
  2114. text-shadow: 0 1px 0 #ffffff;
  2115. }
  2116. /*
  2117. * Helper to center all child elements vertically
  2118. */
  2119. .uk-navbar-content:before,
  2120. .uk-navbar-brand:before,
  2121. .uk-navbar-toggle:before {
  2122. content: '';
  2123. display: inline-block;
  2124. height: 100%;
  2125. vertical-align: middle;
  2126. }
  2127. /* Sub-objects: `uk-navbar-content`
  2128. ========================================================================== */
  2129. /*
  2130. * Better sibling spacing
  2131. */
  2132. .uk-navbar-content + .uk-navbar-content:not(.uk-navbar-center) {
  2133. padding-left: 0;
  2134. }
  2135. /*
  2136. * Link colors
  2137. */
  2138. .uk-navbar-content > a:not([class]) {
  2139. color: #0077dd;
  2140. }
  2141. .uk-navbar-content > a:not([class]):hover {
  2142. color: #005599;
  2143. }
  2144. /* Sub-objects: `uk-navbar-brand`
  2145. ========================================================================== */
  2146. .uk-navbar-brand {
  2147. font-size: 18px;
  2148. color: #444444;
  2149. }
  2150. /*
  2151. * 1. Apply hover style also to focus state
  2152. * 2. Remove default focus style
  2153. */
  2154. .uk-navbar-brand:hover,
  2155. .uk-navbar-brand:focus {
  2156. /* 1 */
  2157. color: #444444;
  2158. text-decoration: none;
  2159. outline: none;
  2160. /* 2 */
  2161. }
  2162. /* Sub-object: `uk-navbar-toggle`
  2163. ========================================================================== */
  2164. .uk-navbar-toggle {
  2165. font-size: 18px;
  2166. color: #444444;
  2167. }
  2168. /*
  2169. * 1. Apply hover style also to focus state
  2170. * 2. Remove default focus style
  2171. */
  2172. .uk-navbar-toggle:hover,
  2173. .uk-navbar-toggle:focus {
  2174. /* 1 */
  2175. color: #444444;
  2176. text-decoration: none;
  2177. outline: none;
  2178. /* 2 */
  2179. }
  2180. /*
  2181. * 1. Center icon vertically
  2182. */
  2183. .uk-navbar-toggle:after {
  2184. content: "\f0c9";
  2185. font-family: "FontAwesome";
  2186. vertical-align: middle;
  2187. /* 1 */
  2188. }
  2189. .uk-navbar-toggle-alt:after {
  2190. content: "\f002";
  2191. }
  2192. /* Sub-object: `uk-navbar-center`
  2193. ========================================================================== */
  2194. /*
  2195. * The element with this class needs to be last child in the navbar
  2196. * 1. This hack is needed because other float elements shift centered text
  2197. */
  2198. .uk-navbar-center {
  2199. max-width: 50%;
  2200. margin: auto;
  2201. /* 1 */
  2202. float: none;
  2203. text-align: center;
  2204. }
  2205. /* Sub-object: `uk-navbar-flip`
  2206. ========================================================================== */
  2207. .uk-navbar-flip {
  2208. float: right;
  2209. }
  2210. /* Hooks
  2211. ========================================================================== */
  2212. /*
  2213. * Name: Subnav
  2214. * Description: Defines styles for the sub navigation
  2215. *
  2216. * Component: `uk-subnav`
  2217. *
  2218. * Modifiers: `uk-subnav-line`
  2219. * `uk-subnav-pill`
  2220. *
  2221. * States: `uk-active`
  2222. *
  2223. ========================================================================== */
  2224. /* Component
  2225. ========================================================================== */
  2226. /*
  2227. * 1. Remove default list style
  2228. * 2. Remove whitespace between child elements when using `inline-block`
  2229. */
  2230. .uk-subnav {
  2231. /* 1 */
  2232. padding: 0;
  2233. list-style: none;
  2234. /* 2 */
  2235. letter-spacing: -0.31em;
  2236. }
  2237. /* Items
  2238. ========================================================================== */
  2239. /*
  2240. * 1. Create position context for dropdowns
  2241. * 2. Reset whitespace hack
  2242. */
  2243. .uk-subnav > li {
  2244. position: relative;
  2245. /* 1 */
  2246. letter-spacing: normal;
  2247. /* 2 */
  2248. }
  2249. .uk-subnav > li,
  2250. .uk-subnav > li > a,
  2251. .uk-subnav > li > span {
  2252. display: inline-block;
  2253. }
  2254. .uk-subnav > li:nth-child(n+2) {
  2255. margin-left: 10px;
  2256. }
  2257. /*
  2258. * Items
  2259. */
  2260. .uk-subnav > li > a {
  2261. color: #0077dd;
  2262. }
  2263. .uk-subnav > li > a:hover {
  2264. color: #005599;
  2265. }
  2266. /*
  2267. * Disabled
  2268. */
  2269. .uk-subnav > li > span {
  2270. color: #999999;
  2271. }
  2272. /* Modifier: 'subnav-line'
  2273. ========================================================================== */
  2274. .uk-subnav-line > li:nth-child(n+2):before {
  2275. content: "";
  2276. display: inline-block;
  2277. height: 10px;
  2278. margin-right: 10px;
  2279. border-left: 1px solid #dddddd;
  2280. }
  2281. /* Modifier: 'subnav-pill'
  2282. ========================================================================== */
  2283. .uk-subnav-pill > li > a,
  2284. .uk-subnav-pill > li > span {
  2285. padding: 3px 9px;
  2286. text-decoration: none;
  2287. border-radius: 4px;
  2288. }
  2289. /*
  2290. * Hover
  2291. * 1. Apply hover style also to focus state
  2292. * 2. Remove default focus style
  2293. */
  2294. .uk-subnav-pill > li > a:hover,
  2295. .uk-subnav-pill > li > a:focus {
  2296. /* 1 */
  2297. background: #fafafa;
  2298. color: #444444;
  2299. outline: none;
  2300. /* 2 */
  2301. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  2302. }
  2303. /*
  2304. * Active
  2305. * `li` needed for higher specificity to override hover
  2306. */
  2307. .uk-subnav-pill > li.uk-active > a {
  2308. background: #00a8e6;
  2309. color: #ffffff;
  2310. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  2311. }
  2312. /* Hooks
  2313. ========================================================================== */
  2314. /*
  2315. * Name: Breadcrumb
  2316. * Description: Defines styles for a breadcrumb navigation
  2317. *
  2318. * Component: `uk-breadcrumb`
  2319. *
  2320. * States: `uk-active`
  2321. *
  2322. ========================================================================== */
  2323. /* Component
  2324. ========================================================================== */
  2325. /*
  2326. * 1. Remove default list style
  2327. * 2. Remove whitespace between child elements when using `inline-block`
  2328. */
  2329. .uk-breadcrumb {
  2330. /* 1 */
  2331. padding: 0;
  2332. list-style: none;
  2333. /* 2 */
  2334. letter-spacing: -0.31em;
  2335. }
  2336. /* Items
  2337. ========================================================================== */
  2338. /*
  2339. * Reset whitespace hack
  2340. */
  2341. .uk-breadcrumb > li {
  2342. letter-spacing: normal;
  2343. }
  2344. .uk-breadcrumb > li,
  2345. .uk-breadcrumb > li > a,
  2346. .uk-breadcrumb > li > span {
  2347. display: inline-block;
  2348. }
  2349. .uk-breadcrumb > li:nth-child(n+2):before {
  2350. content: "/";
  2351. display: inline-block;
  2352. margin: 0 8px;
  2353. vertical-align: top;
  2354. /* 2 */
  2355. }
  2356. /*
  2357. * Disabled
  2358. */
  2359. .uk-breadcrumb > li:not(.uk-active) > span {
  2360. color: #999999;
  2361. }
  2362. /* Hooks
  2363. ========================================================================== */
  2364. /*
  2365. * Name: Pagination
  2366. * Description: Defines styles for a navigation between pages
  2367. *
  2368. * Component: `uk-pagination`
  2369. *
  2370. * Sub-objects: `uk-pagination-previous`
  2371. * `uk-pagination-next`
  2372. *
  2373. * States: `uk-active`
  2374. * `uk-disabled`
  2375. *
  2376. * Modifiers: `uk-pagination-left`
  2377. * `uk-pagination-right`
  2378. *
  2379. ========================================================================== */
  2380. /* Component
  2381. ========================================================================== */
  2382. /*
  2383. * 1. Remove default list style
  2384. * 2. Center pagination by default
  2385. * 3. Remove whitespace between child elements when using `inline-block`
  2386. */
  2387. .uk-pagination {
  2388. /* 1 */
  2389. padding: 0;
  2390. list-style: none;
  2391. /* 2 */
  2392. text-align: center;
  2393. /* 3 */
  2394. letter-spacing: -0.31em;
  2395. }
  2396. /*
  2397. * Micro clearfix
  2398. * Needed if `uk-pagination-previous` or `uk-pagination-next` sub-objects are used
  2399. */
  2400. .uk-pagination:before,
  2401. .uk-pagination:after {
  2402. content: " ";
  2403. display: table;
  2404. }
  2405. .uk-pagination:after {
  2406. clear: both;
  2407. }
  2408. /* Items
  2409. ========================================================================== */
  2410. /*
  2411. * 1. Reset whitespace hack
  2412. */
  2413. .uk-pagination > li {
  2414. display: inline-block;
  2415. letter-spacing: normal;
  2416. /* 1 */
  2417. }
  2418. .uk-pagination > li:nth-child(n+2) {
  2419. margin-left: 5px;
  2420. }
  2421. /*
  2422. * 1. Makes pagination more robust against different box-sizing use
  2423. * 2. Reset text-align to center if alignment modifier is used
  2424. */
  2425. .uk-pagination > li > a,
  2426. .uk-pagination > li > span {
  2427. -moz-box-sizing: content-box;
  2428. box-sizing: content-box;
  2429. /* 1 */
  2430. display: inline-block;
  2431. min-width: 16px;
  2432. padding: 3px 5px;
  2433. line-height: 20px;
  2434. text-decoration: none;
  2435. text-align: center;
  2436. /* 2 */
  2437. border-radius: 4px;
  2438. }
  2439. /*
  2440. * Links
  2441. */
  2442. .uk-pagination > li > a {
  2443. background: #f5f5f5;
  2444. color: #444444;
  2445. border: 1px solid rgba(0, 0, 0, 0.06);
  2446. text-shadow: 0 1px 0 #ffffff;
  2447. }
  2448. /*
  2449. * Hover
  2450. * 1. Apply hover style also to focus state
  2451. * 2. Remove default focus style
  2452. */
  2453. .uk-pagination > li > a:hover,
  2454. .uk-pagination > li > a:focus {
  2455. /* 1 */
  2456. background-color: #fafafa;
  2457. color: #444444;
  2458. outline: none;
  2459. /* 2 */
  2460. border-color: rgba(0, 0, 0, 0.16);
  2461. }
  2462. /* OnClick */
  2463. .uk-pagination > li > a:active {
  2464. background-color: #eeeeee;
  2465. color: #444444;
  2466. }
  2467. /*
  2468. * Active
  2469. */
  2470. .uk-pagination > .uk-active > span {
  2471. background: #00a8e6;
  2472. color: #ffffff;
  2473. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  2474. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  2475. }
  2476. /*
  2477. * Disabled
  2478. */
  2479. .uk-pagination > .uk-disabled > span {
  2480. background-color: #fafafa;
  2481. color: #999999;
  2482. border: 1px solid rgba(0, 0, 0, 0.06);
  2483. text-shadow: 0 1px 0 #ffffff;
  2484. }
  2485. /* Previous and next navigation
  2486. ========================================================================== */
  2487. .uk-pagination-previous {
  2488. float: left;
  2489. }
  2490. .uk-pagination-next {
  2491. float: right;
  2492. }
  2493. /* Alignment modifiers
  2494. ========================================================================== */
  2495. .uk-pagination-left {
  2496. text-align: left;
  2497. }
  2498. .uk-pagination-right {
  2499. text-align: right;
  2500. }
  2501. /* Hooks
  2502. ========================================================================== */
  2503. /*
  2504. * Name: Tab
  2505. * Description: Defines styles for a tabbed navigation
  2506. *
  2507. * Component: `uk-tab`
  2508. *
  2509. * Modifiers: `uk-tab-flip`
  2510. * `uk-tab-center`
  2511. * `uk-tab-grid`
  2512. * `uk-tab-bottom`
  2513. * `uk-tab-left`
  2514. * `uk-tab-right`
  2515. * `uk-tab-responsive`
  2516. *
  2517. * States: `uk-active`
  2518. * `uk-disabled`
  2519. *
  2520. ========================================================================== */
  2521. /* Component
  2522. ========================================================================== */
  2523. .uk-tab {
  2524. margin: 0;
  2525. padding: 0;
  2526. list-style: none;
  2527. border-bottom: 1px solid #dddddd;
  2528. }
  2529. /*
  2530. * Micro clearfix on the deepest container
  2531. */
  2532. .uk-tab:before,
  2533. .uk-tab:after {
  2534. content: " ";
  2535. display: table;
  2536. }
  2537. .uk-tab:after {
  2538. clear: both;
  2539. }
  2540. /*
  2541. * Items
  2542. * 1. Create position context for dropdowns
  2543. */
  2544. .uk-tab > li {
  2545. position: relative;
  2546. /* 1 */
  2547. margin-bottom: -1px;
  2548. float: left;
  2549. }
  2550. .uk-tab > li > a {
  2551. display: block;
  2552. padding: 8px 12px;
  2553. border: 1px solid transparent;
  2554. border-bottom-width: 0;
  2555. color: #0077dd;
  2556. text-decoration: none;
  2557. border-radius: 4px 4px 0 0;
  2558. text-shadow: 0 1px 0 #ffffff;
  2559. }
  2560. .uk-tab > li:nth-child(n+2) > a {
  2561. margin-left: 5px;
  2562. }
  2563. /*
  2564. * Hover
  2565. * 1. Apply hover style also to focus state
  2566. * 2. Also apply if dropdown is opened
  2567. * 3. Remove default focus style
  2568. */
  2569. .uk-tab > li > a:hover,
  2570. .uk-tab > li > a:focus,
  2571. .uk-tab > li.uk-open > a {
  2572. /* 2 */
  2573. border-color: rgba(0, 0, 0, 0.06);
  2574. background: #f5f5f5;
  2575. color: #005599;
  2576. outline: none;
  2577. /* 3 */
  2578. }
  2579. .uk-tab > li:not(.uk-active) > a:hover,
  2580. .uk-tab > li:not(.uk-active) > a:focus,
  2581. .uk-tab > li.uk-open:not(.uk-active) > a {
  2582. margin-bottom: 1px;
  2583. padding-bottom: 7px;
  2584. }
  2585. /* Active */
  2586. .uk-tab > li.uk-active > a {
  2587. border-color: #dddddd;
  2588. border-bottom-color: transparent;
  2589. background: #ffffff;
  2590. color: #444444;
  2591. }
  2592. /* Disabled */
  2593. .uk-tab > li.uk-disabled > a {
  2594. color: #999999;
  2595. cursor: auto;
  2596. }
  2597. .uk-tab > li.uk-disabled > a:hover,
  2598. .uk-tab > li.uk-disabled > a:focus,
  2599. .uk-tab > li.uk-disabled.uk-active > a {
  2600. background: none;
  2601. border-color: transparent;
  2602. }
  2603. /* Modifier: 'tab-flip'
  2604. ========================================================================== */
  2605. .uk-tab-flip > li {
  2606. float: right;
  2607. }
  2608. .uk-tab-flip > li:nth-child(n+2) > a {
  2609. margin-left: 0;
  2610. margin-right: 5px;
  2611. }
  2612. /* Modifier: 'tab-responsive'
  2613. ========================================================================== */
  2614. /*
  2615. * Hidden by default
  2616. */
  2617. .uk-tab-responsive {
  2618. display: none;
  2619. }
  2620. .uk-tab-responsive > a:before {
  2621. content: "\f0c9\00a0";
  2622. font-family: "FontAwesome";
  2623. }
  2624. /* Only phones */
  2625. @media (max-width: 767px) {
  2626. [data-uk-tab] > li {
  2627. display: none;
  2628. }
  2629. [data-uk-tab] > li.uk-tab-responsive {
  2630. display: block;
  2631. }
  2632. [data-uk-tab] > li.uk-tab-responsive > a {
  2633. margin-left: 0;
  2634. margin-right: 0;
  2635. }
  2636. }
  2637. /* Modifier: 'tab-center'
  2638. ========================================================================== */
  2639. .uk-tab-center {
  2640. border-bottom: 1px solid #dddddd;
  2641. }
  2642. .uk-tab-center-bottom {
  2643. border-bottom: none;
  2644. border-top: 1px solid #dddddd;
  2645. }
  2646. .uk-tab-center:before,
  2647. .uk-tab-center:after {
  2648. content: " ";
  2649. display: table;
  2650. }
  2651. .uk-tab-center:after {
  2652. clear: both;
  2653. }
  2654. .uk-tab-center .uk-tab {
  2655. position: relative;
  2656. left: 50%;
  2657. border: none;
  2658. float: left;
  2659. }
  2660. .uk-tab-center .uk-tab > li {
  2661. position: relative;
  2662. left: -50%;
  2663. }
  2664. .uk-tab-center .uk-tab > li > a {
  2665. text-align: center;
  2666. }
  2667. /* Modifier: 'tab-bottom'
  2668. ========================================================================== */
  2669. .uk-tab-bottom {
  2670. border-top: 1px solid #dddddd;
  2671. border-bottom: none;
  2672. }
  2673. .uk-tab-bottom > li {
  2674. margin-top: -1px;
  2675. margin-bottom: 0;
  2676. }
  2677. .uk-tab-bottom > li > a {
  2678. border-bottom-width: 1px;
  2679. border-top-width: 0;
  2680. }
  2681. .uk-tab-bottom > li:not(.uk-active) > a:hover,
  2682. .uk-tab-bottom > li:not(.uk-active) > a:focus,
  2683. .uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  2684. margin-bottom: 0;
  2685. margin-top: 1px;
  2686. padding-bottom: 8px;
  2687. padding-top: 7px;
  2688. }
  2689. .uk-tab-bottom > li.uk-active > a {
  2690. border-top-color: transparent;
  2691. border-bottom-color: #dddddd;
  2692. }
  2693. /* Modifier: 'tab-grid'
  2694. ========================================================================== */
  2695. /*
  2696. * 1. Create position context to prevent hidden border because of negative `z-index`
  2697. */
  2698. .uk-tab-grid {
  2699. position: relative;
  2700. z-index: 0;
  2701. /* 1 */
  2702. margin-left: -5px;
  2703. border-bottom: none;
  2704. }
  2705. .uk-tab-grid:before {
  2706. display: block;
  2707. position: absolute;
  2708. left: 5px;
  2709. right: 0px;
  2710. bottom: -1px;
  2711. z-index: -1;
  2712. /* 1 */
  2713. border-top: 1px solid #dddddd;
  2714. }
  2715. .uk-tab-grid > li:first-child > a {
  2716. margin-left: 5px;
  2717. }
  2718. .uk-tab-grid > li > a {
  2719. text-align: center;
  2720. }
  2721. /*
  2722. * If `uk-tab-bottom`
  2723. */
  2724. .uk-tab-grid.uk-tab-bottom {
  2725. border-top: none;
  2726. }
  2727. .uk-tab-grid.uk-tab-bottom:before {
  2728. top: -1px;
  2729. bottom: auto;
  2730. }
  2731. /* Modifier: 'tab-left', 'tab-right'
  2732. ========================================================================== */
  2733. /* Only tablets and desktops */
  2734. @media (min-width: 768px) {
  2735. .uk-tab-left,
  2736. .uk-tab-right {
  2737. border-bottom: none;
  2738. }
  2739. .uk-tab-left > li,
  2740. .uk-tab-right > li {
  2741. margin-bottom: 0;
  2742. float: none;
  2743. }
  2744. .uk-tab-left > li:nth-child(n+2) > a,
  2745. .uk-tab-right > li:nth-child(n+2) > a {
  2746. margin-left: 0;
  2747. margin-top: 5px;
  2748. }
  2749. .uk-tab-left > li.uk-active > a,
  2750. .uk-tab-right > li.uk-active > a {
  2751. border-color: #dddddd;
  2752. }
  2753. /*
  2754. * Modifier: 'tab-left'
  2755. */
  2756. .uk-tab-left {
  2757. border-right: 1px solid #dddddd;
  2758. }
  2759. .uk-tab-left > li {
  2760. margin-right: -1px;
  2761. }
  2762. .uk-tab-left > li > a {
  2763. border-bottom-width: 1px;
  2764. border-right-width: 0;
  2765. }
  2766. .uk-tab-left > li:not(.uk-active) > a:hover,
  2767. .uk-tab-left > li:not(.uk-active) > a:focus {
  2768. margin-bottom: 0;
  2769. margin-right: 1px;
  2770. padding-bottom: 8px;
  2771. padding-right: 11px;
  2772. }
  2773. .uk-tab-left > li.uk-active > a {
  2774. border-right-color: transparent;
  2775. }
  2776. /*
  2777. * Modifier: 'tab-right'
  2778. */
  2779. .uk-tab-right {
  2780. border-left: 1px solid #dddddd;
  2781. }
  2782. .uk-tab-right > li {
  2783. margin-left: -1px;
  2784. }
  2785. .uk-tab-right > li > a {
  2786. border-bottom-width: 1px;
  2787. border-left-width: 0;
  2788. }
  2789. .uk-tab-right > li:not(.uk-active) > a:hover,
  2790. .uk-tab-right > li:not(.uk-active) > a:focus {
  2791. margin-bottom: 0;
  2792. margin-left: 1px;
  2793. padding-bottom: 8px;
  2794. padding-left: 11px;
  2795. }
  2796. .uk-tab-right > li.uk-active > a {
  2797. border-left-color: transparent;
  2798. }
  2799. }
  2800. /* Hooks
  2801. ========================================================================== */
  2802. /* Elements */
  2803. /*
  2804. * Name: List
  2805. * Description: Defines styles for ordered and unordered lists
  2806. *
  2807. * Component: `uk-list`
  2808. *
  2809. * Modifiers: `uk-list-line`
  2810. * `uk-list-striped`
  2811. * `uk-list-space`
  2812. *
  2813. ========================================================================== */
  2814. /* Component
  2815. ========================================================================== */
  2816. .uk-list {
  2817. padding: 0;
  2818. list-style: none;
  2819. }
  2820. /*
  2821. * Nested lists
  2822. */
  2823. .uk-list ul {
  2824. margin: 0;
  2825. padding-left: 20px;
  2826. list-style: none;
  2827. }
  2828. /* Modifier: `uk-list-line`
  2829. ========================================================================== */
  2830. .uk-list-line > li:nth-child(n+2) {
  2831. margin-top: 5px;
  2832. padding-top: 5px;
  2833. border-top: 1px solid #dddddd;
  2834. }
  2835. /* Modifier: `uk-list-striped`
  2836. ========================================================================== */
  2837. .uk-list-striped > li {
  2838. padding: 5px 5px;
  2839. border-bottom: 1px solid #dddddd;
  2840. }
  2841. .uk-list-striped > li:nth-of-type(odd) {
  2842. background: #fafafa;
  2843. }
  2844. /* Modifier: `uk-list-space`
  2845. ========================================================================== */
  2846. .uk-list-space > li:nth-child(n+2) {
  2847. margin-top: 10px;
  2848. }
  2849. /* Hooks
  2850. ========================================================================== */
  2851. /*
  2852. * Name: Description list
  2853. * Description: Defines styles for description lists
  2854. *
  2855. * Component: `uk-description-list`
  2856. *
  2857. * Modifiers: `uk-description-list-horizontal`
  2858. * `uk-description-list-line`
  2859. *
  2860. ========================================================================== */
  2861. /* Component
  2862. ========================================================================== */
  2863. /* Modifier: `uk-description-list-horizontal`
  2864. ========================================================================== */
  2865. /* Only tablets and desktops */
  2866. @media (min-width: 768px) {
  2867. .uk-description-list-horizontal {
  2868. overflow: hidden;
  2869. }
  2870. .uk-description-list-horizontal > dt {
  2871. width: 160px;
  2872. float: left;
  2873. clear: both;
  2874. overflow: hidden;
  2875. text-overflow: ellipsis;
  2876. white-space: nowrap;
  2877. }
  2878. .uk-description-list-horizontal > dd {
  2879. margin-left: 180px;
  2880. }
  2881. }
  2882. /* Modifier: `uk-description-list-line`
  2883. ========================================================================== */
  2884. .uk-description-list-line > dt {
  2885. font-weight: normal;
  2886. }
  2887. .uk-description-list-line > dt:nth-child(n+2) {
  2888. margin-top: 5px;
  2889. padding-top: 5px;
  2890. border-top: 1px solid #dddddd;
  2891. }
  2892. .uk-description-list-line > dd {
  2893. color: #999999;
  2894. }
  2895. /*
  2896. * Name: Table
  2897. * Description: Defines styles for tables
  2898. *
  2899. * Component: `uk-table`
  2900. *
  2901. * Modifiers: `uk-table-middle`
  2902. * `uk-table-striped`
  2903. * `uk-table-condensed`
  2904. * `uk-table-hover`
  2905. *
  2906. ========================================================================== */
  2907. /* Component
  2908. ========================================================================== */
  2909. /* Block element behavior */
  2910. .uk-table {
  2911. width: 100%;
  2912. margin-bottom: 15px 0;
  2913. }
  2914. /*
  2915. * Add margin if adjacent element
  2916. */
  2917. * + .uk-table {
  2918. margin-top: 15px;
  2919. }
  2920. .uk-table th,
  2921. .uk-table td {
  2922. padding: 8px 8px;
  2923. border-bottom: 1px solid #dddddd;
  2924. }
  2925. /* Set alignment */
  2926. .uk-table th {
  2927. text-align: left;
  2928. }
  2929. .uk-table td {
  2930. vertical-align: top;
  2931. }
  2932. .uk-table thead th {
  2933. vertical-align: bottom;
  2934. }
  2935. /*
  2936. * Caption and footer
  2937. */
  2938. .uk-table caption,
  2939. .uk-table tfoot {
  2940. font-size: 12px;
  2941. font-style: italic;
  2942. }
  2943. .uk-table caption {
  2944. text-align: left;
  2945. color: #999999;
  2946. }
  2947. /* Sub-modifier: `uk-table-middel`
  2948. ========================================================================== */
  2949. .uk-table-middle,
  2950. .uk-table-middle td {
  2951. vertical-align: middle !important;
  2952. }
  2953. /* Modifier: `uk-table-striped`
  2954. ========================================================================== */
  2955. .uk-table-striped tbody tr:nth-of-type(odd) td {
  2956. background: #fafafa;
  2957. }
  2958. /* Modifier: `uk-table-condensed`
  2959. ========================================================================== */
  2960. .uk-table-condensed td {
  2961. padding: 4px 8px;
  2962. }
  2963. /* Modifier: `uk-table-hover`
  2964. ========================================================================== */
  2965. .uk-table-hover tbody tr:hover td {
  2966. background: #f0f0f0;
  2967. }
  2968. /* Hooks
  2969. ========================================================================== */
  2970. /*
  2971. * Name: Form
  2972. * Description: Defines styles for forms
  2973. *
  2974. * Component: `uk-form`
  2975. *
  2976. * Sub-objects: `uk-form-row`
  2977. * `uk-form-help-inline`
  2978. * `uk-form-help-block`
  2979. * `uk-form-label`
  2980. * `uk-form-controls`
  2981. * `uk-form-controls-condensed`
  2982. *
  2983. * Modifiers: `uk-form-stacked`
  2984. * `uk-form-horizontal`
  2985. *
  2986. * Sub-modifiers: `uk-form-danger`
  2987. * `uk-form-success`
  2988. * `uk-form-small`
  2989. * `uk-form-large`
  2990. * `uk-form-blank`
  2991. * `uk-form-width-mini`
  2992. * `uk-form-width-small`
  2993. * `uk-form-width-medium`
  2994. * `uk-form-width-large`
  2995. * `uk-form-controls-text`
  2996. *
  2997. ========================================================================== */
  2998. /* Component
  2999. ========================================================================== */
  3000. /*
  3001. * Remove margin from the last-child
  3002. */
  3003. .uk-form > :last-child {
  3004. margin-bottom: 0;
  3005. }
  3006. /*
  3007. * Controls
  3008. * Exept for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
  3009. * 1. Must be `height` because `min-height` is not working in OSX
  3010. * 2. Responsiveness: Sets a maxium width relative to the parent to scale on narrower viewports
  3011. */
  3012. .uk-form select,
  3013. .uk-form textarea,
  3014. .uk-form input[type="text"],
  3015. .uk-form input[type="password"],
  3016. .uk-form input[type="datetime"],
  3017. .uk-form input[type="datetime-local"],
  3018. .uk-form input[type="date"],
  3019. .uk-form input[type="month"],
  3020. .uk-form input[type="time"],
  3021. .uk-form input[type="week"],
  3022. .uk-form input[type="number"],
  3023. .uk-form input[type="email"],
  3024. .uk-form input[type="url"],
  3025. .uk-form input[type="search"],
  3026. .uk-form input[type="tel"],
  3027. .uk-form input[type="color"] {
  3028. height: 30px;
  3029. /* 1 */
  3030. max-width: 100%;
  3031. /* 2 */
  3032. padding: 4px 6px;
  3033. border: 1px solid #dddddd;
  3034. background: #ffffff;
  3035. color: #444444;
  3036. -webkit-transition: all linear 0.2s;
  3037. transition: all linear 0.2s;
  3038. border-radius: 4px;
  3039. /* Focus state */
  3040. /* Disabled state */
  3041. }
  3042. .uk-form select:focus,
  3043. .uk-form textarea:focus,
  3044. .uk-form input[type="text"]:focus,
  3045. .uk-form input[type="password"]:focus,
  3046. .uk-form input[type="datetime"]:focus,
  3047. .uk-form input[type="datetime-local"]:focus,
  3048. .uk-form input[type="date"]:focus,
  3049. .uk-form input[type="month"]:focus,
  3050. .uk-form input[type="time"]:focus,
  3051. .uk-form input[type="week"]:focus,
  3052. .uk-form input[type="number"]:focus,
  3053. .uk-form input[type="email"]:focus,
  3054. .uk-form input[type="url"]:focus,
  3055. .uk-form input[type="search"]:focus,
  3056. .uk-form input[type="tel"]:focus,
  3057. .uk-form input[type="color"]:focus {
  3058. border-color: #99baca;
  3059. outline: 0;
  3060. background: #f5fbfe;
  3061. color: #444444;
  3062. }
  3063. .uk-form select:disabled,
  3064. .uk-form textarea:disabled,
  3065. .uk-form input[type="text"]:disabled,
  3066. .uk-form input[type="password"]:disabled,
  3067. .uk-form input[type="datetime"]:disabled,
  3068. .uk-form input[type="datetime-local"]:disabled,
  3069. .uk-form input[type="date"]:disabled,
  3070. .uk-form input[type="month"]:disabled,
  3071. .uk-form input[type="time"]:disabled,
  3072. .uk-form input[type="week"]:disabled,
  3073. .uk-form input[type="number"]:disabled,
  3074. .uk-form input[type="email"]:disabled,
  3075. .uk-form input[type="url"]:disabled,
  3076. .uk-form input[type="search"]:disabled,
  3077. .uk-form input[type="tel"]:disabled,
  3078. .uk-form input[type="color"]:disabled {
  3079. border-color: #dddddd;
  3080. background-color: #fafafa;
  3081. color: #999999;
  3082. }
  3083. .uk-form textarea,
  3084. .uk-form select[multiple],
  3085. .uk-form select[size] {
  3086. height: auto;
  3087. }
  3088. /* 1 */
  3089. /*
  3090. * Placeholder
  3091. * 1. Higher specificity needed to override color in IE
  3092. */
  3093. .uk-form :-ms-input-placeholder {
  3094. color: #999999 !important;
  3095. }
  3096. /* 1. */
  3097. .uk-form ::-moz-placeholder {
  3098. color: #999999;
  3099. }
  3100. .uk-form ::-webkit-input-placeholder {
  3101. color: #999999;
  3102. }
  3103. .uk-form :disabled:-ms-input-placeholder {
  3104. color: #999999 !important;
  3105. }
  3106. /* 1. */
  3107. .uk-form :disabled::-moz-placeholder {
  3108. color: #999999;
  3109. }
  3110. .uk-form :disabled::-webkit-input-placeholder {
  3111. color: #999999;
  3112. }
  3113. /*
  3114. * Legend style
  3115. * 1. `margin-bottom` is not working in Safari and Opera.
  3116. * Using `padding` and :after instead to create the border
  3117. */
  3118. .uk-form legend {
  3119. width: 100%;
  3120. padding-bottom: 15px;
  3121. /* 1 */
  3122. font-size: 18px;
  3123. line-height: 30px;
  3124. }
  3125. /* 1 */
  3126. .uk-form legend:after {
  3127. content: "";
  3128. display: block;
  3129. border-bottom: 1px solid #dddddd;
  3130. }
  3131. /* Validation states
  3132. * Using !important to keep the selector simple
  3133. ========================================================================== */
  3134. /*
  3135. * Error state
  3136. */
  3137. .uk-form-danger {
  3138. border-color: #dc8d99 !important;
  3139. background: #fff7f8 !important;
  3140. color: #c91032 !important;
  3141. }
  3142. /*
  3143. * Success state
  3144. */
  3145. .uk-form-success {
  3146. border-color: #8ec73b !important;
  3147. background: #fafff2 !important;
  3148. color: #539022 !important;
  3149. }
  3150. /* Size modifiers
  3151. * Using !important to keep the selector simple
  3152. ========================================================================== */
  3153. .uk-form-small {
  3154. height: 25px !important;
  3155. padding: 3px 3px !important;
  3156. font-size: 12px;
  3157. }
  3158. .uk-form-large {
  3159. height: 40px !important;
  3160. padding: 8px 6px !important;
  3161. font-size: 16px;
  3162. }
  3163. /* Style modifiers
  3164. * Using !important to keep the selector simple
  3165. ========================================================================== */
  3166. /*
  3167. * Blank form
  3168. */
  3169. .uk-form-blank {
  3170. border: none !important;
  3171. background: none !important;
  3172. box-shadow: none !important;
  3173. outline: 1px dashed transparent !important;
  3174. }
  3175. .uk-form-blank:focus {
  3176. outline-color: #dddddd !important;
  3177. }
  3178. /* Size sub-modifiers
  3179. ========================================================================== */
  3180. /*
  3181. * Fixed widths
  3182. * 1. Different widths for mini sized `input` and `select` elements
  3183. */
  3184. input.uk-form-width-mini {
  3185. width: 40px;
  3186. }
  3187. /* 1 */
  3188. select.uk-form-width-mini {
  3189. width: 65px;
  3190. }
  3191. /* 1 */
  3192. .uk-form-width-small {
  3193. width: 130px;
  3194. }
  3195. .uk-form-width-medium {
  3196. width: 200px;
  3197. }
  3198. .uk-form-width-large {
  3199. width: 500px;
  3200. }
  3201. /* Sub-objects: `uk-form-row`
  3202. * Groups labels and controls in rows
  3203. ========================================================================== */
  3204. /*
  3205. * Micro clearfix
  3206. * Needed for `uk-form-horizontal` modifier
  3207. */
  3208. .uk-form-row:before,
  3209. .uk-form-row:after {
  3210. content: " ";
  3211. display: table;
  3212. }
  3213. .uk-form-row:after {
  3214. clear: both;
  3215. }
  3216. /*
  3217. * Vertical gutter
  3218. */
  3219. .uk-form-row + .uk-form-row {
  3220. margin-top: 15px;
  3221. }
  3222. /* Help text
  3223. * Sub-object: `uk-form-help-inline`, `uk-form-help-block`
  3224. ========================================================================== */
  3225. .uk-form-help-inline {
  3226. display: inline-block;
  3227. margin: 0 0 0 10px;
  3228. }
  3229. .uk-form-help-block {
  3230. margin: 5px 0 0 0;
  3231. }
  3232. /* Controls content
  3233. * Sub-object: `uk-form-controls`, `uk-form-controls-condensed`
  3234. ========================================================================== */
  3235. /*
  3236. * Remove margin from the last-child
  3237. */
  3238. .uk-form-controls > :last-child {
  3239. margin-bottom: 0;
  3240. }
  3241. /*
  3242. * Group controls and text into blocks with a small spacing between blocks
  3243. */
  3244. .uk-form-controls-condensed {
  3245. margin: 5px 0;
  3246. }
  3247. /* Modifier: `uk-form-stacked`
  3248. * Requrires sub-object: `uk-form-label`
  3249. ========================================================================== */
  3250. .uk-form-stacked .uk-form-label {
  3251. display: block;
  3252. margin-bottom: 5px;
  3253. font-weight: bold;
  3254. }
  3255. /* Modifier: `uk-form-horizontal`
  3256. * Requrires sub-objects: `uk-form-label`, `uk-form-controls`
  3257. ========================================================================== */
  3258. /* Only phones and tablets portrait */
  3259. @media (max-width: 959px) {
  3260. .uk-form-horizontal .uk-form-label {
  3261. /* Behave like `uk-form-stacked` */
  3262. display: block;
  3263. margin-bottom: 5px;
  3264. font-weight: bold;
  3265. }
  3266. }
  3267. /* Only tablets and desktops */
  3268. @media (min-width: 960px) {
  3269. .uk-form-horizontal .uk-form-label {
  3270. width: 200px;
  3271. margin-top: 5px;
  3272. float: left;
  3273. }
  3274. .uk-form-horizontal .uk-form-controls {
  3275. margin-left: 215px;
  3276. }
  3277. /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  3278. .uk-form-horizontal .uk-form-controls-text {
  3279. padding-top: 5px;
  3280. }
  3281. }
  3282. /* Hooks
  3283. ========================================================================== */
  3284. /* Common */
  3285. /*
  3286. * Name: Button
  3287. * Description: Defines styles for buttons
  3288. *
  3289. * Component: `uk-button`
  3290. *
  3291. * Sub-objects: `uk-button-group`
  3292. * `uk-button-dropdown`
  3293. *
  3294. * Modifiers: `uk-button-primary`
  3295. * `uk-button-success`
  3296. * `uk-button-danger`
  3297. * `uk-button-link`
  3298. * `uk-button-mini`
  3299. * `uk-button-small`
  3300. * `uk-button-large`
  3301. * `uk-button-expand`
  3302. *
  3303. * States: `uk-active`
  3304. *
  3305. ========================================================================== */
  3306. /* Component
  3307. ========================================================================== */
  3308. /*
  3309. * 1. Required for `a` elements. Can't be moved to `a.button` selector because needs to be overwritable for `uk-button-link` and `uk-button-expand`
  3310. * 2. `min-height` is neccesary for `input` elments in Firefox and Opera because `line-height` is not working.
  3311. * 3. Required for `button` and `input` elements
  3312. * 4. `line-height` is used to create a height
  3313. * 5. Reset button group whitespace hack
  3314. */
  3315. .uk-button {
  3316. display: inline-block;
  3317. /* 1 */
  3318. min-height: 30px;
  3319. /* 2 */
  3320. padding: 0 12px;
  3321. border: none;
  3322. /* 3 */
  3323. background: #f5f5f5;
  3324. line-height: 28px;
  3325. /* 4 */
  3326. color: #444444;
  3327. letter-spacing: normal;
  3328. /* 5 */
  3329. border: 1px solid rgba(0, 0, 0, 0.06);
  3330. border-radius: 4px;
  3331. text-shadow: 0 1px 0 #ffffff;
  3332. }
  3333. /* Required for `a` elements */
  3334. a.uk-button {
  3335. -moz-box-sizing: border-box;
  3336. box-sizing: border-box;
  3337. vertical-align: middle;
  3338. text-decoration: none;
  3339. }
  3340. /*
  3341. * Hover
  3342. * 1. Apply hover style also to focus state
  3343. * 2. Remove default focus style
  3344. */
  3345. .uk-button:hover,
  3346. .uk-button:focus {
  3347. /* 1 */
  3348. background-color: #fafafa;
  3349. color: #444444;
  3350. outline: none;
  3351. /* 2 */
  3352. border-color: rgba(0, 0, 0, 0.16);
  3353. }
  3354. /* Active */
  3355. .uk-button:active,
  3356. .uk-button.uk-active {
  3357. background-color: #eeeeee;
  3358. color: #444444;
  3359. }
  3360. /* Color modifiers
  3361. ========================================================================== */
  3362. /*
  3363. * Modifier: `uk-button-primary`
  3364. */
  3365. .uk-button-primary {
  3366. background-color: #00a8e6;
  3367. color: #ffffff;
  3368. }
  3369. /* Hover */
  3370. .uk-button-primary:hover,
  3371. .uk-button-primary:focus {
  3372. background-color: #35b3ee;
  3373. color: #ffffff;
  3374. }
  3375. /* Active */
  3376. .uk-button-primary:active,
  3377. .uk-button-primary.uk-active {
  3378. background-color: #0091ca;
  3379. color: #ffffff;
  3380. }
  3381. /*
  3382. * Modifier: `uk-button-success`
  3383. */
  3384. .uk-button-success {
  3385. background-color: #8cc14c;
  3386. color: #ffffff;
  3387. }
  3388. /* Hover */
  3389. .uk-button-success:hover,
  3390. .uk-button-success:focus {
  3391. background-color: #8ec73b;
  3392. color: #ffffff;
  3393. }
  3394. /* Active */
  3395. .uk-button-success:active,
  3396. .uk-button-success.uk-active {
  3397. background-color: #72ae41;
  3398. color: #ffffff;
  3399. }
  3400. /*
  3401. * Modifier: `uk-button-danger`
  3402. */
  3403. .uk-button-danger {
  3404. background-color: #da314b;
  3405. color: #ffffff;
  3406. }
  3407. /* Hover */
  3408. .uk-button-danger:hover,
  3409. .uk-button-danger:focus {
  3410. background-color: #e4354f;
  3411. color: #ffffff;
  3412. }
  3413. /* Active */
  3414. .uk-button-danger:active,
  3415. .uk-button-danger.uk-active {
  3416. background-color: #c91032;
  3417. color: #ffffff;
  3418. }
  3419. /* Disabled state
  3420. * Overrides also the color modifiers
  3421. ========================================================================== */
  3422. /* Equal for all button types */
  3423. .uk-button:disabled {
  3424. background-color: #fafafa;
  3425. color: #999999;
  3426. border-color: rgba(0, 0, 0, 0.06);
  3427. box-shadow: none;
  3428. text-shadow: 0 1px 0 #ffffff;
  3429. }
  3430. /* Modifier: `uk-button-link`
  3431. ========================================================================== */
  3432. /* Reset */
  3433. .uk-button-link,
  3434. .uk-button-link:hover,
  3435. .uk-button-link:focus,
  3436. .uk-button-link:active,
  3437. .uk-button-link.uk-active,
  3438. .uk-button-link:disabled {
  3439. display: inline;
  3440. border: none;
  3441. background: none;
  3442. box-shadow: none;
  3443. text-shadow: none;
  3444. }
  3445. /* Color */
  3446. .uk-button-link {
  3447. color: #0077dd;
  3448. }
  3449. .uk-button-link:hover,
  3450. .uk-button-link:focus,
  3451. .uk-button-link:active,
  3452. .uk-button-link.uk-active {
  3453. color: #005599;
  3454. text-decoration: underline;
  3455. }
  3456. .uk-button-link:disabled {
  3457. color: #999999;
  3458. }
  3459. /* Focus */
  3460. .uk-button-link:focus {
  3461. outline: 1px dotted;
  3462. }
  3463. /* Size modifiers
  3464. ========================================================================== */
  3465. .uk-button-mini {
  3466. min-height: 20px;
  3467. padding: 0 6px;
  3468. line-height: 18px;
  3469. font-size: 11px;
  3470. }
  3471. .uk-button-small {
  3472. min-height: 25px;
  3473. padding: 0 10px;
  3474. line-height: 23px;
  3475. font-size: 12px;
  3476. }
  3477. .uk-button-large {
  3478. min-height: 40px;
  3479. padding: 0 15px;
  3480. line-height: 38px;
  3481. font-size: 16px;
  3482. border-radius: 5px;
  3483. }
  3484. /*
  3485. * Behave like a block element and take the full width
  3486. */
  3487. .uk-button-expand {
  3488. display: block;
  3489. width: 100%;
  3490. text-align: center;
  3491. }
  3492. .uk-button-expand + .uk-button-expand {
  3493. margin-top: 10px;
  3494. }
  3495. /* Sub-object `uk-button-group`
  3496. ========================================================================== */
  3497. /*
  3498. * 1. Behave like buttons
  3499. * 2. Create position context for dropdowns
  3500. * 3. Remove whitespace between child elements when using `inline-block`
  3501. * 4. Prevent buttons from wrapping
  3502. */
  3503. .uk-button-group {
  3504. /* 1 */
  3505. display: inline-block;
  3506. vertical-align: middle;
  3507. /* 2 */
  3508. position: relative;
  3509. /* 3 */
  3510. letter-spacing: -0.31em;
  3511. /* 4 */
  3512. white-space: nowrap;
  3513. }
  3514. .uk-button-group > * {
  3515. display: inline-block;
  3516. }
  3517. /* Sub-object: `uk-button-dropdown`
  3518. ========================================================================== */
  3519. /*
  3520. * 1. Behave like buttons
  3521. * 2. Create position context for dropdowns
  3522. */
  3523. .uk-button-dropdown {
  3524. /* 1 */
  3525. display: inline-block;
  3526. vertical-align: middle;
  3527. /* 2 */
  3528. position: relative;
  3529. }
  3530. /* Hooks
  3531. ========================================================================== */
  3532. /*
  3533. * Name: Icon
  3534. * Description: Defines styles for icons
  3535. *
  3536. * Adapted from http://fortawesome.github.com/Font-Awesome (Version 3.2.1)
  3537. *
  3538. * Component: `uk-icon-*`
  3539. *
  3540. * Sub-objects: `uk-icon-button`
  3541. *
  3542. * Modifiers: `uk-icon-small`
  3543. * `uk-icon-medium`
  3544. * `uk-icon-large`
  3545. * `uk-icon-spin`
  3546. *
  3547. * Uses: Animation
  3548. *
  3549. ========================================================================== */
  3550. /* Font-face
  3551. ========================================================================== */
  3552. @font-face {
  3553. font-family: 'FontAwesome';
  3554. src: url("../fonts/fontawesome-webfont.eot");
  3555. src: url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
  3556. font-weight: normal;
  3557. font-style: normal;
  3558. }
  3559. /* Component
  3560. ========================================================================== */
  3561. /*
  3562. * 1. Allow margin
  3563. * 2. Prevent inherit font style
  3564. * 3. Align vertical to text
  3565. * 4. Correct line-height
  3566. * 5. Better font rendering in Webkit
  3567. */
  3568. [class*='uk-icon-']:before {
  3569. display: inline-block;
  3570. /* 1 */
  3571. font-family: "FontAwesome";
  3572. font-weight: normal;
  3573. font-style: normal;
  3574. /* 2 */
  3575. vertical-align: baseline;
  3576. /* 3 */
  3577. line-height: 1;
  3578. /* 4 */
  3579. -webkit-font-smoothing: antialiased;
  3580. /* 5 */
  3581. }
  3582. /* Size modifiers
  3583. ========================================================================== */
  3584. .uk-icon-small:before {
  3585. font-size: 150%;
  3586. vertical-align: -10%;
  3587. }
  3588. .uk-icon-medium:before {
  3589. font-size: 200%;
  3590. vertical-align: -16%;
  3591. }
  3592. .uk-icon-large:before {
  3593. font-size: 250%;
  3594. vertical-align: -22%;
  3595. }
  3596. /* Modifier: `uk-icon-spin`
  3597. ========================================================================== */
  3598. .uk-icon-spin {
  3599. display: inline-block;
  3600. -webkit-animation: uk-spin 2s infinite linear;
  3601. animation: uk-spin 2s infinite linear;
  3602. }
  3603. /* Modifier: `uk-icon-button`
  3604. ========================================================================== */
  3605. .uk-icon-button {
  3606. -moz-box-sizing: border-box;
  3607. box-sizing: border-box;
  3608. display: inline-block;
  3609. width: 35px;
  3610. height: 35px;
  3611. border-radius: 100%;
  3612. background: #f5f5f5;
  3613. line-height: 35px;
  3614. color: #444444;
  3615. font-size: 17.5px;
  3616. text-align: center;
  3617. border: 1px solid #e7e7e7;
  3618. text-shadow: 0 1px 0 #ffffff;
  3619. }
  3620. /*
  3621. * Hover
  3622. * 1. Apply hover style also to focus state
  3623. * 2. Remove default focus style
  3624. */
  3625. .uk-icon-button:hover,
  3626. .uk-icon-button:focus {
  3627. /* 1 */
  3628. background-color: #fafafa;
  3629. color: #444444;
  3630. text-decoration: none;
  3631. outline: none;
  3632. /* 2 */
  3633. border-color: #d3d3d3;
  3634. }
  3635. /* Active */
  3636. .uk-icon-button:active {
  3637. background-color: #eeeeee;
  3638. color: #444444;
  3639. }
  3640. /* Icon mapping
  3641. ========================================================================== */
  3642. .uk-icon-glass:before {
  3643. content: "\f000";
  3644. }
  3645. .uk-icon-music:before {
  3646. content: "\f001";
  3647. }
  3648. .uk-icon-search:before {
  3649. content: "\f002";
  3650. }
  3651. .uk-icon-envelope-alt:before {
  3652. content: "\f003";
  3653. }
  3654. .uk-icon-heart:before {
  3655. content: "\f004";
  3656. }
  3657. .uk-icon-star:before {
  3658. content: "\f005";
  3659. }
  3660. .uk-icon-star-empty:before {
  3661. content: "\f006";
  3662. }
  3663. .uk-icon-user:before {
  3664. content: "\f007";
  3665. }
  3666. .uk-icon-film:before {
  3667. content: "\f008";
  3668. }
  3669. .uk-icon-th-large:before {
  3670. content: "\f009";
  3671. }
  3672. .uk-icon-th:before {
  3673. content: "\f00a";
  3674. }
  3675. .uk-icon-th-list:before {
  3676. content: "\f00b";
  3677. }
  3678. .uk-icon-ok:before {
  3679. content: "\f00c";
  3680. }
  3681. .uk-icon-remove:before {
  3682. content: "\f00d";
  3683. }
  3684. .uk-icon-zoom-in:before {
  3685. content: "\f00e";
  3686. }
  3687. .uk-icon-zoom-out:before {
  3688. content: "\f010";
  3689. }
  3690. .uk-icon-power-off:before,
  3691. .uk-icon-off:before {
  3692. content: "\f011";
  3693. }
  3694. .uk-icon-signal:before {
  3695. content: "\f012";
  3696. }
  3697. .uk-icon-gear:before,
  3698. .uk-icon-cog:before {
  3699. content: "\f013";
  3700. }
  3701. .uk-icon-trash:before {
  3702. content: "\f014";
  3703. }
  3704. .uk-icon-home:before {
  3705. content: "\f015";
  3706. }
  3707. .uk-icon-file-alt:before {
  3708. content: "\f016";
  3709. }
  3710. .uk-icon-time:before {
  3711. content: "\f017";
  3712. }
  3713. .uk-icon-road:before {
  3714. content: "\f018";
  3715. }
  3716. .uk-icon-download-alt:before {
  3717. content: "\f019";
  3718. }
  3719. .uk-icon-download:before {
  3720. content: "\f01a";
  3721. }
  3722. .uk-icon-upload:before {
  3723. content: "\f01b";
  3724. }
  3725. .uk-icon-inbox:before {
  3726. content: "\f01c";
  3727. }
  3728. .uk-icon-play-circle:before {
  3729. content: "\f01d";
  3730. }
  3731. .uk-icon-rotate-right:before,
  3732. .uk-icon-repeat:before {
  3733. content: "\f01e";
  3734. }
  3735. .uk-icon-refresh:before {
  3736. content: "\f021";
  3737. }
  3738. .uk-icon-list-alt:before {
  3739. content: "\f022";
  3740. }
  3741. .uk-icon-lock:before {
  3742. content: "\f023";
  3743. }
  3744. .uk-icon-flag:before {
  3745. content: "\f024";
  3746. }
  3747. .uk-icon-headphones:before {
  3748. content: "\f025";
  3749. }
  3750. .uk-icon-volume-off:before {
  3751. content: "\f026";
  3752. }
  3753. .uk-icon-volume-down:before {
  3754. content: "\f027";
  3755. }
  3756. .uk-icon-volume-up:before {
  3757. content: "\f028";
  3758. }
  3759. .uk-icon-qrcode:before {
  3760. content: "\f029";
  3761. }
  3762. .uk-icon-barcode:before {
  3763. content: "\f02a";
  3764. }
  3765. .uk-icon-tag:before {
  3766. content: "\f02b";
  3767. }
  3768. .uk-icon-tags:before {
  3769. content: "\f02c";
  3770. }
  3771. .uk-icon-book:before {
  3772. content: "\f02d";
  3773. }
  3774. .uk-icon-bookmark:before {
  3775. content: "\f02e";
  3776. }
  3777. .uk-icon-print:before {
  3778. content: "\f02f";
  3779. }
  3780. .uk-icon-camera:before {
  3781. content: "\f030";
  3782. }
  3783. .uk-icon-font:before {
  3784. content: "\f031";
  3785. }
  3786. .uk-icon-bold:before {
  3787. content: "\f032";
  3788. }
  3789. .uk-icon-italic:before {
  3790. content: "\f033";
  3791. }
  3792. .uk-icon-text-height:before {
  3793. content: "\f034";
  3794. }
  3795. .uk-icon-text-width:before {
  3796. content: "\f035";
  3797. }
  3798. .uk-icon-align-left:before {
  3799. content: "\f036";
  3800. }
  3801. .uk-icon-align-center:before {
  3802. content: "\f037";
  3803. }
  3804. .uk-icon-align-right:before {
  3805. content: "\f038";
  3806. }
  3807. .uk-icon-align-justify:before {
  3808. content: "\f039";
  3809. }
  3810. .uk-icon-list:before {
  3811. content: "\f03a";
  3812. }
  3813. .uk-icon-indent-left:before {
  3814. content: "\f03b";
  3815. }
  3816. .uk-icon-indent-right:before {
  3817. content: "\f03c";
  3818. }
  3819. .uk-icon-facetime-video:before {
  3820. content: "\f03d";
  3821. }
  3822. .uk-icon-picture:before {
  3823. content: "\f03e";
  3824. }
  3825. .uk-icon-pencil:before {
  3826. content: "\f040";
  3827. }
  3828. .uk-icon-map-marker:before {
  3829. content: "\f041";
  3830. }
  3831. .uk-icon-adjust:before {
  3832. content: "\f042";
  3833. }
  3834. .uk-icon-tint:before {
  3835. content: "\f043";
  3836. }
  3837. .uk-icon-edit:before {
  3838. content: "\f044";
  3839. }
  3840. .uk-icon-share:before {
  3841. content: "\f045";
  3842. }
  3843. .uk-icon-check:before {
  3844. content: "\f046";
  3845. }
  3846. .uk-icon-move:before {
  3847. content: "\f047";
  3848. }
  3849. .uk-icon-step-backward:before {
  3850. content: "\f048";
  3851. }
  3852. .uk-icon-fast-backward:before {
  3853. content: "\f049";
  3854. }
  3855. .uk-icon-backward:before {
  3856. content: "\f04a";
  3857. }
  3858. .uk-icon-play:before {
  3859. content: "\f04b";
  3860. }
  3861. .uk-icon-pause:before {
  3862. content: "\f04c";
  3863. }
  3864. .uk-icon-stop:before {
  3865. content: "\f04d";
  3866. }
  3867. .uk-icon-forward:before {
  3868. content: "\f04e";
  3869. }
  3870. .uk-icon-fast-forward:before {
  3871. content: "\f050";
  3872. }
  3873. .uk-icon-step-forward:before {
  3874. content: "\f051";
  3875. }
  3876. .uk-icon-eject:before {
  3877. content: "\f052";
  3878. }
  3879. .uk-icon-chevron-left:before {
  3880. content: "\f053";
  3881. }
  3882. .uk-icon-chevron-right:before {
  3883. content: "\f054";
  3884. }
  3885. .uk-icon-plus-sign:before {
  3886. content: "\f055";
  3887. }
  3888. .uk-icon-minus-sign:before {
  3889. content: "\f056";
  3890. }
  3891. .uk-icon-remove-sign:before {
  3892. content: "\f057";
  3893. }
  3894. .uk-icon-ok-sign:before {
  3895. content: "\f058";
  3896. }
  3897. .uk-icon-question-sign:before {
  3898. content: "\f059";
  3899. }
  3900. .uk-icon-info-sign:before {
  3901. content: "\f05a";
  3902. }
  3903. .uk-icon-screenshot:before {
  3904. content: "\f05b";
  3905. }
  3906. .uk-icon-remove-circle:before {
  3907. content: "\f05c";
  3908. }
  3909. .uk-icon-ok-circle:before {
  3910. content: "\f05d";
  3911. }
  3912. .uk-icon-ban-circle:before {
  3913. content: "\f05e";
  3914. }
  3915. .uk-icon-arrow-left:before {
  3916. content: "\f060";
  3917. }
  3918. .uk-icon-arrow-right:before {
  3919. content: "\f061";
  3920. }
  3921. .uk-icon-arrow-up:before {
  3922. content: "\f062";
  3923. }
  3924. .uk-icon-arrow-down:before {
  3925. content: "\f063";
  3926. }
  3927. .uk-icon-mail-forward:before,
  3928. .uk-icon-share-alt:before {
  3929. content: "\f064";
  3930. }
  3931. .uk-icon-resize-full:before {
  3932. content: "\f065";
  3933. }
  3934. .uk-icon-resize-small:before {
  3935. content: "\f066";
  3936. }
  3937. .uk-icon-plus:before {
  3938. content: "\f067";
  3939. }
  3940. .uk-icon-minus:before {
  3941. content: "\f068";
  3942. }
  3943. .uk-icon-asterisk:before {
  3944. content: "\f069";
  3945. }
  3946. .uk-icon-exclamation-sign:before {
  3947. content: "\f06a";
  3948. }
  3949. .uk-icon-gift:before {
  3950. content: "\f06b";
  3951. }
  3952. .uk-icon-leaf:before {
  3953. content: "\f06c";
  3954. }
  3955. .uk-icon-fire:before {
  3956. content: "\f06d";
  3957. }
  3958. .uk-icon-eye-open:before {
  3959. content: "\f06e";
  3960. }
  3961. .uk-icon-eye-close:before {
  3962. content: "\f070";
  3963. }
  3964. .uk-icon-warning-sign:before {
  3965. content: "\f071";
  3966. }
  3967. .uk-icon-plane:before {
  3968. content: "\f072";
  3969. }
  3970. .uk-icon-calendar:before {
  3971. content: "\f073";
  3972. }
  3973. .uk-icon-random:before {
  3974. content: "\f074";
  3975. }
  3976. .uk-icon-comment:before {
  3977. content: "\f075";
  3978. }
  3979. .uk-icon-magnet:before {
  3980. content: "\f076";
  3981. }
  3982. .uk-icon-chevron-up:before {
  3983. content: "\f077";
  3984. }
  3985. .uk-icon-chevron-down:before {
  3986. content: "\f078";
  3987. }
  3988. .uk-icon-retweet:before {
  3989. content: "\f079";
  3990. }
  3991. .uk-icon-shopping-cart:before {
  3992. content: "\f07a";
  3993. }
  3994. .uk-icon-folder-close:before {
  3995. content: "\f07b";
  3996. }
  3997. .uk-icon-folder-open:before {
  3998. content: "\f07c";
  3999. }
  4000. .uk-icon-resize-vertical:before {
  4001. content: "\f07d";
  4002. }
  4003. .uk-icon-resize-horizontal:before {
  4004. content: "\f07e";
  4005. }
  4006. .uk-icon-bar-chart:before {
  4007. content: "\f080";
  4008. }
  4009. .uk-icon-twitter-sign:before {
  4010. content: "\f081";
  4011. }
  4012. .uk-icon-facebook-sign:before {
  4013. content: "\f082";
  4014. }
  4015. .uk-icon-camera-retro:before {
  4016. content: "\f083";
  4017. }
  4018. .uk-icon-key:before {
  4019. content: "\f084";
  4020. }
  4021. .uk-icon-gears:before,
  4022. .uk-icon-cogs:before {
  4023. content: "\f085";
  4024. }
  4025. .uk-icon-comments:before {
  4026. content: "\f086";
  4027. }
  4028. .uk-icon-thumbs-up-alt:before {
  4029. content: "\f087";
  4030. }
  4031. .uk-icon-thumbs-down-alt:before {
  4032. content: "\f088";
  4033. }
  4034. .uk-icon-star-half:before {
  4035. content: "\f089";
  4036. }
  4037. .uk-icon-heart-empty:before {
  4038. content: "\f08a";
  4039. }
  4040. .uk-icon-signout:before {
  4041. content: "\f08b";
  4042. }
  4043. .uk-icon-linkedin-sign:before {
  4044. content: "\f08c";
  4045. }
  4046. .uk-icon-pushpin:before {
  4047. content: "\f08d";
  4048. }
  4049. .uk-icon-external-link:before {
  4050. content: "\f08e";
  4051. }
  4052. .uk-icon-signin:before {
  4053. content: "\f090";
  4054. }
  4055. .uk-icon-trophy:before {
  4056. content: "\f091";
  4057. }
  4058. .uk-icon-github-sign:before {
  4059. content: "\f092";
  4060. }
  4061. .uk-icon-upload-alt:before {
  4062. content: "\f093";
  4063. }
  4064. .uk-icon-lemon:before {
  4065. content: "\f094";
  4066. }
  4067. .uk-icon-phone:before {
  4068. content: "\f095";
  4069. }
  4070. .uk-icon-unchecked:before,
  4071. .uk-icon-check-empty:before {
  4072. content: "\f096";
  4073. }
  4074. .uk-icon-bookmark-empty:before {
  4075. content: "\f097";
  4076. }
  4077. .uk-icon-phone-sign:before {
  4078. content: "\f098";
  4079. }
  4080. .uk-icon-twitter:before {
  4081. content: "\f099";
  4082. }
  4083. .uk-icon-facebook:before {
  4084. content: "\f09a";
  4085. }
  4086. .uk-icon-github:before {
  4087. content: "\f09b";
  4088. }
  4089. .uk-icon-unlock:before {
  4090. content: "\f09c";
  4091. }
  4092. .uk-icon-credit-card:before {
  4093. content: "\f09d";
  4094. }
  4095. .uk-icon-rss:before {
  4096. content: "\f09e";
  4097. }
  4098. .uk-icon-hdd:before {
  4099. content: "\f0a0";
  4100. }
  4101. .uk-icon-bullhorn:before {
  4102. content: "\f0a1";
  4103. }
  4104. .uk-icon-bell:before {
  4105. content: "\f0a2";
  4106. }
  4107. .uk-icon-certificate:before {
  4108. content: "\f0a3";
  4109. }
  4110. .uk-icon-hand-right:before {
  4111. content: "\f0a4";
  4112. }
  4113. .uk-icon-hand-left:before {
  4114. content: "\f0a5";
  4115. }
  4116. .uk-icon-hand-up:before {
  4117. content: "\f0a6";
  4118. }
  4119. .uk-icon-hand-down:before {
  4120. content: "\f0a7";
  4121. }
  4122. .uk-icon-circle-arrow-left:before {
  4123. content: "\f0a8";
  4124. }
  4125. .uk-icon-circle-arrow-right:before {
  4126. content: "\f0a9";
  4127. }
  4128. .uk-icon-circle-arrow-up:before {
  4129. content: "\f0aa";
  4130. }
  4131. .uk-icon-circle-arrow-down:before {
  4132. content: "\f0ab";
  4133. }
  4134. .uk-icon-globe:before {
  4135. content: "\f0ac";
  4136. }
  4137. .uk-icon-wrench:before {
  4138. content: "\f0ad";
  4139. }
  4140. .uk-icon-tasks:before {
  4141. content: "\f0ae";
  4142. }
  4143. .uk-icon-filter:before {
  4144. content: "\f0b0";
  4145. }
  4146. .uk-icon-briefcase:before {
  4147. content: "\f0b1";
  4148. }
  4149. .uk-icon-fullscreen:before {
  4150. content: "\f0b2";
  4151. }
  4152. .uk-icon-group:before {
  4153. content: "\f0c0";
  4154. }
  4155. .uk-icon-link:before {
  4156. content: "\f0c1";
  4157. }
  4158. .uk-icon-cloud:before {
  4159. content: "\f0c2";
  4160. }
  4161. .uk-icon-beaker:before {
  4162. content: "\f0c3";
  4163. }
  4164. .uk-icon-cut:before {
  4165. content: "\f0c4";
  4166. }
  4167. .uk-icon-copy:before {
  4168. content: "\f0c5";
  4169. }
  4170. .uk-icon-paperclip:before,
  4171. .uk-icon-paper-clip:before {
  4172. content: "\f0c6";
  4173. }
  4174. .uk-icon-save:before {
  4175. content: "\f0c7";
  4176. }
  4177. .uk-icon-sign-blank:before {
  4178. content: "\f0c8";
  4179. }
  4180. .uk-icon-reorder:before {
  4181. content: "\f0c9";
  4182. }
  4183. .uk-icon-list-ul:before {
  4184. content: "\f0ca";
  4185. }
  4186. .uk-icon-list-ol:before {
  4187. content: "\f0cb";
  4188. }
  4189. .uk-icon-strikethrough:before {
  4190. content: "\f0cc";
  4191. }
  4192. .uk-icon-underline:before {
  4193. content: "\f0cd";
  4194. }
  4195. .uk-icon-table:before {
  4196. content: "\f0ce";
  4197. }
  4198. .uk-icon-magic:before {
  4199. content: "\f0d0";
  4200. }
  4201. .uk-icon-truck:before {
  4202. content: "\f0d1";
  4203. }
  4204. .uk-icon-pinterest:before {
  4205. content: "\f0d2";
  4206. }
  4207. .uk-icon-pinterest-sign:before {
  4208. content: "\f0d3";
  4209. }
  4210. .uk-icon-google-plus-sign:before {
  4211. content: "\f0d4";
  4212. }
  4213. .uk-icon-google-plus:before {
  4214. content: "\f0d5";
  4215. }
  4216. .uk-icon-money:before {
  4217. content: "\f0d6";
  4218. }
  4219. .uk-icon-caret-down:before {
  4220. content: "\f0d7";
  4221. }
  4222. .uk-icon-caret-up:before {
  4223. content: "\f0d8";
  4224. }
  4225. .uk-icon-caret-left:before {
  4226. content: "\f0d9";
  4227. }
  4228. .uk-icon-caret-right:before {
  4229. content: "\f0da";
  4230. }
  4231. .uk-icon-columns:before {
  4232. content: "\f0db";
  4233. }
  4234. .uk-icon-sort:before {
  4235. content: "\f0dc";
  4236. }
  4237. .uk-icon-sort-down:before {
  4238. content: "\f0dd";
  4239. }
  4240. .uk-icon-sort-up:before {
  4241. content: "\f0de";
  4242. }
  4243. .uk-icon-envelope:before {
  4244. content: "\f0e0";
  4245. }
  4246. .uk-icon-linkedin:before {
  4247. content: "\f0e1";
  4248. }
  4249. .uk-icon-rotate-left:before,
  4250. .uk-icon-undo:before {
  4251. content: "\f0e2";
  4252. }
  4253. .uk-icon-legal:before {
  4254. content: "\f0e3";
  4255. }
  4256. .uk-icon-dashboard:before {
  4257. content: "\f0e4";
  4258. }
  4259. .uk-icon-comment-alt:before {
  4260. content: "\f0e5";
  4261. }
  4262. .uk-icon-comments-alt:before {
  4263. content: "\f0e6";
  4264. }
  4265. .uk-icon-bolt:before {
  4266. content: "\f0e7";
  4267. }
  4268. .uk-icon-sitemap:before {
  4269. content: "\f0e8";
  4270. }
  4271. .uk-icon-umbrella:before {
  4272. content: "\f0e9";
  4273. }
  4274. .uk-icon-paste:before {
  4275. content: "\f0ea";
  4276. }
  4277. .uk-icon-lightbulb:before {
  4278. content: "\f0eb";
  4279. }
  4280. .uk-icon-exchange:before {
  4281. content: "\f0ec";
  4282. }
  4283. .uk-icon-cloud-download:before {
  4284. content: "\f0ed";
  4285. }
  4286. .uk-icon-cloud-upload:before {
  4287. content: "\f0ee";
  4288. }
  4289. .uk-icon-user-md:before {
  4290. content: "\f0f0";
  4291. }
  4292. .uk-icon-stethoscope:before {
  4293. content: "\f0f1";
  4294. }
  4295. .uk-icon-suitcase:before {
  4296. content: "\f0f2";
  4297. }
  4298. .uk-icon-bell-alt:before {
  4299. content: "\f0f3";
  4300. }
  4301. .uk-icon-coffee:before {
  4302. content: "\f0f4";
  4303. }
  4304. .uk-icon-food:before {
  4305. content: "\f0f5";
  4306. }
  4307. .uk-icon-file-text-alt:before {
  4308. content: "\f0f6";
  4309. }
  4310. .uk-icon-building:before {
  4311. content: "\f0f7";
  4312. }
  4313. .uk-icon-hospital:before {
  4314. content: "\f0f8";
  4315. }
  4316. .uk-icon-ambulance:before {
  4317. content: "\f0f9";
  4318. }
  4319. .uk-icon-medkit:before {
  4320. content: "\f0fa";
  4321. }
  4322. .uk-icon-fighter-jet:before {
  4323. content: "\f0fb";
  4324. }
  4325. .uk-icon-beer:before {
  4326. content: "\f0fc";
  4327. }
  4328. .uk-icon-h-sign:before {
  4329. content: "\f0fd";
  4330. }
  4331. .uk-icon-plus-sign-alt:before {
  4332. content: "\f0fe";
  4333. }
  4334. .uk-icon-double-angle-left:before {
  4335. content: "\f100";
  4336. }
  4337. .uk-icon-double-angle-right:before {
  4338. content: "\f101";
  4339. }
  4340. .uk-icon-double-angle-up:before {
  4341. content: "\f102";
  4342. }
  4343. .uk-icon-double-angle-down:before {
  4344. content: "\f103";
  4345. }
  4346. .uk-icon-angle-left:before {
  4347. content: "\f104";
  4348. }
  4349. .uk-icon-angle-right:before {
  4350. content: "\f105";
  4351. }
  4352. .uk-icon-angle-up:before {
  4353. content: "\f106";
  4354. }
  4355. .uk-icon-angle-down:before {
  4356. content: "\f107";
  4357. }
  4358. .uk-icon-desktop:before {
  4359. content: "\f108";
  4360. }
  4361. .uk-icon-laptop:before {
  4362. content: "\f109";
  4363. }
  4364. .uk-icon-tablet:before {
  4365. content: "\f10a";
  4366. }
  4367. .uk-icon-mobile-phone:before {
  4368. content: "\f10b";
  4369. }
  4370. .uk-icon-circle-blank:before {
  4371. content: "\f10c";
  4372. }
  4373. .uk-icon-quote-left:before {
  4374. content: "\f10d";
  4375. }
  4376. .uk-icon-quote-right:before {
  4377. content: "\f10e";
  4378. }
  4379. .uk-icon-spinner:before {
  4380. content: "\f110";
  4381. }
  4382. .uk-icon-circle:before {
  4383. content: "\f111";
  4384. }
  4385. .uk-icon-mail-reply:before,
  4386. .uk-icon-reply:before {
  4387. content: "\f112";
  4388. }
  4389. .uk-icon-github-alt:before {
  4390. content: "\f113";
  4391. }
  4392. .uk-icon-folder-close-alt:before {
  4393. content: "\f114";
  4394. }
  4395. .uk-icon-folder-open-alt:before {
  4396. content: "\f115";
  4397. }
  4398. .uk-icon-expand-alt:before {
  4399. content: "\f116";
  4400. }
  4401. .uk-icon-collapse-alt:before {
  4402. content: "\f117";
  4403. }
  4404. .uk-icon-smile:before {
  4405. content: "\f118";
  4406. }
  4407. .uk-icon-frown:before {
  4408. content: "\f119";
  4409. }
  4410. .uk-icon-meh:before {
  4411. content: "\f11a";
  4412. }
  4413. .uk-icon-gamepad:before {
  4414. content: "\f11b";
  4415. }
  4416. .uk-icon-keyboard:before {
  4417. content: "\f11c";
  4418. }
  4419. .uk-icon-flag-alt:before {
  4420. content: "\f11d";
  4421. }
  4422. .uk-icon-flag-checkered:before {
  4423. content: "\f11e";
  4424. }
  4425. .uk-icon-terminal:before {
  4426. content: "\f120";
  4427. }
  4428. .uk-icon-code:before {
  4429. content: "\f121";
  4430. }
  4431. .uk-icon-reply-all:before {
  4432. content: "\f122";
  4433. }
  4434. .uk-icon-mail-reply-all:before {
  4435. content: "\f122";
  4436. }
  4437. .uk-icon-star-half-full:before,
  4438. .uk-icon-star-half-empty:before {
  4439. content: "\f123";
  4440. }
  4441. .uk-icon-location-arrow:before {
  4442. content: "\f124";
  4443. }
  4444. .uk-icon-crop:before {
  4445. content: "\f125";
  4446. }
  4447. .uk-icon-code-fork:before {
  4448. content: "\f126";
  4449. }
  4450. .uk-icon-unlink:before {
  4451. content: "\f127";
  4452. }
  4453. .uk-icon-question:before {
  4454. content: "\f128";
  4455. }
  4456. .uk-icon-info:before {
  4457. content: "\f129";
  4458. }
  4459. .uk-icon-exclamation:before {
  4460. content: "\f12a";
  4461. }
  4462. .uk-icon-superscript:before {
  4463. content: "\f12b";
  4464. }
  4465. .uk-icon-subscript:before {
  4466. content: "\f12c";
  4467. }
  4468. .uk-icon-eraser:before {
  4469. content: "\f12d";
  4470. }
  4471. .uk-icon-puzzle-piece:before {
  4472. content: "\f12e";
  4473. }
  4474. .uk-icon-microphone:before {
  4475. content: "\f130";
  4476. }
  4477. .uk-icon-microphone-off:before {
  4478. content: "\f131";
  4479. }
  4480. .uk-icon-shield:before {
  4481. content: "\f132";
  4482. }
  4483. .uk-icon-calendar-empty:before {
  4484. content: "\f133";
  4485. }
  4486. .uk-icon-fire-extinguisher:before {
  4487. content: "\f134";
  4488. }
  4489. .uk-icon-rocket:before {
  4490. content: "\f135";
  4491. }
  4492. .uk-icon-maxcdn:before {
  4493. content: "\f136";
  4494. }
  4495. .uk-icon-chevron-sign-left:before {
  4496. content: "\f137";
  4497. }
  4498. .uk-icon-chevron-sign-right:before {
  4499. content: "\f138";
  4500. }
  4501. .uk-icon-chevron-sign-up:before {
  4502. content: "\f139";
  4503. }
  4504. .uk-icon-chevron-sign-down:before {
  4505. content: "\f13a";
  4506. }
  4507. .uk-icon-html5:before {
  4508. content: "\f13b";
  4509. }
  4510. .uk-icon-css3:before {
  4511. content: "\f13c";
  4512. }
  4513. .uk-icon-anchor:before {
  4514. content: "\f13d";
  4515. }
  4516. .uk-icon-unlock-alt:before {
  4517. content: "\f13e";
  4518. }
  4519. .uk-icon-bullseye:before {
  4520. content: "\f140";
  4521. }
  4522. .uk-icon-ellipsis-horizontal:before {
  4523. content: "\f141";
  4524. }
  4525. .uk-icon-ellipsis-vertical:before {
  4526. content: "\f142";
  4527. }
  4528. .uk-icon-rss-sign:before {
  4529. content: "\f143";
  4530. }
  4531. .uk-icon-play-sign:before {
  4532. content: "\f144";
  4533. }
  4534. .uk-icon-ticket:before {
  4535. content: "\f145";
  4536. }
  4537. .uk-icon-minus-sign-alt:before {
  4538. content: "\f146";
  4539. }
  4540. .uk-icon-check-minus:before {
  4541. content: "\f147";
  4542. }
  4543. .uk-icon-level-up:before {
  4544. content: "\f148";
  4545. }
  4546. .uk-icon-level-down:before {
  4547. content: "\f149";
  4548. }
  4549. .uk-icon-check-sign:before {
  4550. content: "\f14a";
  4551. }
  4552. .uk-icon-edit-sign:before {
  4553. content: "\f14b";
  4554. }
  4555. .uk-icon-external-link-sign:before {
  4556. content: "\f14c";
  4557. }
  4558. .uk-icon-share-sign:before {
  4559. content: "\f14d";
  4560. }
  4561. .uk-icon-compass:before {
  4562. content: "\f14e";
  4563. }
  4564. .uk-icon-collapse:before {
  4565. content: "\f150";
  4566. }
  4567. .uk-icon-collapse-top:before {
  4568. content: "\f151";
  4569. }
  4570. .uk-icon-expand:before {
  4571. content: "\f152";
  4572. }
  4573. .uk-icon-euro:before,
  4574. .uk-icon-eur:before {
  4575. content: "\f153";
  4576. }
  4577. .uk-icon-gbp:before {
  4578. content: "\f154";
  4579. }
  4580. .uk-icon-dollar:before,
  4581. .uk-icon-usd:before {
  4582. content: "\f155";
  4583. }
  4584. .uk-icon-rupee:before,
  4585. .uk-icon-inr:before {
  4586. content: "\f156";
  4587. }
  4588. .uk-icon-yen:before,
  4589. .uk-icon-jpy:before {
  4590. content: "\f157";
  4591. }
  4592. .uk-icon-renminbi:before,
  4593. .uk-icon-cny:before {
  4594. content: "\f158";
  4595. }
  4596. .uk-icon-won:before,
  4597. .uk-icon-krw:before {
  4598. content: "\f159";
  4599. }
  4600. .uk-icon-bitcoin:before,
  4601. .uk-icon-btc:before {
  4602. content: "\f15a";
  4603. }
  4604. .uk-icon-file:before {
  4605. content: "\f15b";
  4606. }
  4607. .uk-icon-file-text:before {
  4608. content: "\f15c";
  4609. }
  4610. .uk-icon-sort-by-alphabet:before {
  4611. content: "\f15d";
  4612. }
  4613. .uk-icon-sort-by-alphabet-alt:before {
  4614. content: "\f15e";
  4615. }
  4616. .uk-icon-sort-by-attributes:before {
  4617. content: "\f160";
  4618. }
  4619. .uk-icon-sort-by-attributes-alt:before {
  4620. content: "\f161";
  4621. }
  4622. .uk-icon-sort-by-order:before {
  4623. content: "\f162";
  4624. }
  4625. .uk-icon-sort-by-order-alt:before {
  4626. content: "\f163";
  4627. }
  4628. .uk-icon-thumbs-up:before {
  4629. content: "\f164";
  4630. }
  4631. .uk-icon-thumbs-down:before {
  4632. content: "\f165";
  4633. }
  4634. .uk-icon-youtube-sign:before {
  4635. content: "\f166";
  4636. }
  4637. .uk-icon-youtube:before {
  4638. content: "\f167";
  4639. }
  4640. .uk-icon-xing:before {
  4641. content: "\f168";
  4642. }
  4643. .uk-icon-xing-sign:before {
  4644. content: "\f169";
  4645. }
  4646. .uk-icon-youtube-play:before {
  4647. content: "\f16a";
  4648. }
  4649. .uk-icon-dropbox:before {
  4650. content: "\f16b";
  4651. }
  4652. .uk-icon-stackexchange:before {
  4653. content: "\f16c";
  4654. }
  4655. .uk-icon-instagram:before {
  4656. content: "\f16d";
  4657. }
  4658. .uk-icon-flickr:before {
  4659. content: "\f16e";
  4660. }
  4661. .uk-icon-adn:before {
  4662. content: "\f170";
  4663. }
  4664. .uk-icon-bitbucket:before {
  4665. content: "\f171";
  4666. }
  4667. .uk-icon-bitbucket-sign:before {
  4668. content: "\f172";
  4669. }
  4670. .uk-icon-tumblr:before {
  4671. content: "\f173";
  4672. }
  4673. .uk-icon-tumblr-sign:before {
  4674. content: "\f174";
  4675. }
  4676. .uk-icon-long-arrow-down:before {
  4677. content: "\f175";
  4678. }
  4679. .uk-icon-long-arrow-up:before {
  4680. content: "\f176";
  4681. }
  4682. .uk-icon-long-arrow-left:before {
  4683. content: "\f177";
  4684. }
  4685. .uk-icon-long-arrow-right:before {
  4686. content: "\f178";
  4687. }
  4688. .uk-icon-apple:before {
  4689. content: "\f179";
  4690. }
  4691. .uk-icon-windows:before {
  4692. content: "\f17a";
  4693. }
  4694. .uk-icon-android:before {
  4695. content: "\f17b";
  4696. }
  4697. .uk-icon-linux:before {
  4698. content: "\f17c";
  4699. }
  4700. .uk-icon-dribbble:before {
  4701. content: "\f17d";
  4702. }
  4703. .uk-icon-skype:before {
  4704. content: "\f17e";
  4705. }
  4706. .uk-icon-foursquare:before {
  4707. content: "\f180";
  4708. }
  4709. .uk-icon-trello:before {
  4710. content: "\f181";
  4711. }
  4712. .uk-icon-female:before {
  4713. content: "\f182";
  4714. }
  4715. .uk-icon-male:before {
  4716. content: "\f183";
  4717. }
  4718. .uk-icon-gittip:before {
  4719. content: "\f184";
  4720. }
  4721. .uk-icon-sun:before {
  4722. content: "\f185";
  4723. }
  4724. .uk-icon-moon:before {
  4725. content: "\f186";
  4726. }
  4727. .uk-icon-archive:before {
  4728. content: "\f187";
  4729. }
  4730. .uk-icon-bug:before {
  4731. content: "\f188";
  4732. }
  4733. .uk-icon-vk:before {
  4734. content: "\f189";
  4735. }
  4736. .uk-icon-weibo:before {
  4737. content: "\f18a";
  4738. }
  4739. .uk-icon-renren:before {
  4740. content: "\f18b";
  4741. }
  4742. /* Hooks
  4743. ========================================================================== */
  4744. /*
  4745. * Name: Close
  4746. * Description: Defines styles for a close button
  4747. *
  4748. * Component: `uk-close`
  4749. *
  4750. * Modifiers: `uk-close-alt`
  4751. *
  4752. * Uses: Icon: FontAwesome
  4753. *
  4754. * Used by: Alert
  4755. * Modal
  4756. *
  4757. ========================================================================== */
  4758. /* Component
  4759. ========================================================================== */
  4760. /*
  4761. * 1. Required for `button` elements and makes
  4762. * close button more robust against different box-sizing use
  4763. * 2. Required for `button` elements
  4764. */
  4765. .uk-close {
  4766. -moz-box-sizing: content-box;
  4767. box-sizing: content-box;
  4768. /* 1 */
  4769. display: inline-block;
  4770. width: 20px;
  4771. line-height: 20px;
  4772. text-align: center;
  4773. color: inherit;
  4774. opacity: 0.3;
  4775. /* 2. */
  4776. padding: 0;
  4777. border: 0;
  4778. -webkit-appearance: none;
  4779. background: transparent;
  4780. /* Needed for Sarari */
  4781. }
  4782. /* Icon */
  4783. .uk-close:after {
  4784. display: block;
  4785. content: "\f00d";
  4786. font-family: "FontAwesome";
  4787. }
  4788. /*
  4789. * Hover
  4790. * 1. Apply hover style also to focus state
  4791. * 2. Remove default focus style
  4792. */
  4793. .uk-close:hover,
  4794. .uk-close:focus {
  4795. /* 1 */
  4796. opacity: 0.5;
  4797. outline: none;
  4798. /* 2 */
  4799. }
  4800. /* Required for `a` elements */
  4801. a.uk-close:hover {
  4802. color: inherit;
  4803. text-decoration: none;
  4804. cursor: pointer;
  4805. }
  4806. /* Modifier
  4807. ========================================================================== */
  4808. .uk-close-alt {
  4809. padding: 2px;
  4810. border-radius: 100%;
  4811. background: #ffffff;
  4812. opacity: 1;
  4813. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
  4814. }
  4815. /* Hover */
  4816. .uk-close-alt:hover,
  4817. .uk-close-alt:focus {
  4818. opacity: 1;
  4819. }
  4820. /* Icon */
  4821. .uk-close-alt:after {
  4822. opacity: 0.5;
  4823. }
  4824. .uk-close-alt:hover:after,
  4825. .uk-close-alt:focus:after {
  4826. opacity: 0.8;
  4827. }
  4828. /* Hooks
  4829. ========================================================================== */
  4830. /*
  4831. * Name: Badge
  4832. * Description: Defines styles for badges
  4833. *
  4834. * Component: `uk-badge`
  4835. *
  4836. * Modifiers: `uk-badge-notification`
  4837. * `uk-badge-success`
  4838. * `uk-badge-danger`
  4839. *
  4840. ========================================================================== */
  4841. /* Component
  4842. ========================================================================== */
  4843. .uk-badge {
  4844. display: inline-block;
  4845. padding: 0 5px;
  4846. background: #00a8e6;
  4847. font-size: 10px;
  4848. font-weight: bold;
  4849. line-height: 14px;
  4850. color: #ffffff;
  4851. text-align: center;
  4852. vertical-align: middle;
  4853. text-transform: none;
  4854. border: 1px solid rgba(0, 0, 0, 0.06);
  4855. border-radius: 2px;
  4856. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  4857. }
  4858. /* Modifier: `uk-badge-notification`;
  4859. ========================================================================== */
  4860. .uk-badge-notification {
  4861. -moz-box-sizing: border-box;
  4862. box-sizing: border-box;
  4863. min-width: 18px;
  4864. border-radius: 500px;
  4865. font-size: 12px;
  4866. line-height: 18px;
  4867. }
  4868. /* Color modifier
  4869. ========================================================================== */
  4870. /*
  4871. * Modifier: `uk-badge-success`
  4872. */
  4873. .uk-badge-success {
  4874. background-color: #8cc14c;
  4875. }
  4876. /*
  4877. * Modifier: `uk-badge-warning`
  4878. */
  4879. .uk-badge-warning {
  4880. background-color: #faa732;
  4881. }
  4882. /*
  4883. * Modifier: `uk-badge-danger`
  4884. */
  4885. .uk-badge-danger {
  4886. background-color: #da314b;
  4887. }
  4888. /* Hooks
  4889. ========================================================================== */
  4890. /*
  4891. * Name: Alert
  4892. * Description: Defines styles for alert messages
  4893. *
  4894. * Component: `uk-alert`
  4895. *
  4896. * Sub-objects: `uk-alert-close`
  4897. *
  4898. * Modifiers: `uk-alert-success`
  4899. * `uk-alert-warning`
  4900. * `uk-alert-danger`
  4901. * `uk-alert-large`
  4902. *
  4903. * Uses: Close: `uk-close`
  4904. *
  4905. ========================================================================== */
  4906. /* Component
  4907. ========================================================================== */
  4908. .uk-alert {
  4909. margin-bottom: 15px;
  4910. padding: 10px;
  4911. background: #ebf7fd;
  4912. color: #2d7091;
  4913. border: 1px solid rgba(45, 112, 145, 0.3);
  4914. border-radius: 4px;
  4915. text-shadow: 0 1px 0 #ffffff;
  4916. }
  4917. /*
  4918. * Add margin if adjacent element
  4919. */
  4920. * + .uk-alert {
  4921. margin-top: 15px;
  4922. }
  4923. /*
  4924. * Remove margin from the last-child
  4925. */
  4926. .uk-alert > :last-child {
  4927. margin-bottom: 0;
  4928. }
  4929. /*
  4930. * Keep color for headings if the default heading color is changed
  4931. */
  4932. .uk-alert h1,
  4933. .uk-alert h2,
  4934. .uk-alert h3,
  4935. .uk-alert h4,
  4936. .uk-alert h5,
  4937. .uk-alert h6 {
  4938. color: inherit;
  4939. }
  4940. /* Close in alert
  4941. ========================================================================== */
  4942. .uk-alert > .uk-close:first-child {
  4943. float: right;
  4944. }
  4945. /*
  4946. * Remove margin from adjacent element
  4947. */
  4948. .uk-alert > .uk-close:first-child + * {
  4949. margin-top: 0;
  4950. }
  4951. /* Modifier: `uk-alert-success`
  4952. ========================================================================== */
  4953. .uk-alert-success {
  4954. background: #f2fae3;
  4955. color: #659f13;
  4956. border-color: rgba(101, 159, 19, 0.3);
  4957. }
  4958. /* Modifier: `uk-alert-warning`
  4959. ========================================================================== */
  4960. .uk-alert-warning {
  4961. background: #fffceb;
  4962. color: #e28327;
  4963. border-color: rgba(226, 131, 39, 0.3);
  4964. }
  4965. /* Modifier: `uk-alert-danger`
  4966. ========================================================================== */
  4967. .uk-alert-danger {
  4968. background: #fff1f0;
  4969. color: #d85030;
  4970. border-color: rgba(216, 80, 48, 0.3);
  4971. }
  4972. /* Modifier: `uk-alert-large`
  4973. ========================================================================== */
  4974. .uk-alert-large {
  4975. padding: 20px;
  4976. }
  4977. .uk-alert-large > .uk-close:first-child {
  4978. margin: -10px -10px 0 0;
  4979. }
  4980. /* Hooks
  4981. ========================================================================== */
  4982. /*
  4983. * Name: Thumbnail
  4984. * Description: Defines styles for image thumbnails
  4985. *
  4986. * Component: `uk-thumbnail`
  4987. *
  4988. * Sub-objects: `uk-thumbnail-caption`
  4989. *
  4990. * Modifiers: `uk-thumbnail-mini`
  4991. * `uk-thumbnail-small`
  4992. * `uk-thumbnail-medium`
  4993. * `uk-thumbnail-large`
  4994. * `uk-thumbnail-expand`
  4995. *
  4996. ========================================================================== */
  4997. /* Component
  4998. ========================================================================== */
  4999. /*
  5000. * 1. Corrects max-width behavior (2.) if padding and border are used
  5001. * 2. Responsive behavior
  5002. * 3. Required for `figure` element
  5003. */
  5004. .uk-thumbnail {
  5005. /* Required for `a`, `div` or `figure` elements */
  5006. display: inline-block;
  5007. -moz-box-sizing: border-box;
  5008. /* 1 */
  5009. box-sizing: border-box;
  5010. max-width: 100%;
  5011. /* 2 */
  5012. margin: 0;
  5013. /* 3 */
  5014. padding: 4px;
  5015. border: 1px solid #dddddd;
  5016. background: #ffffff;
  5017. border-radius: 4px;
  5018. }
  5019. /*
  5020. * Hover state for `a` elements
  5021. * 1. Apply hover style also to focus state
  5022. * 2. Needed for caption
  5023. * 3. Remove default focus style
  5024. */
  5025. a.uk-thumbnail:hover,
  5026. a.uk-thumbnail:focus {
  5027. /* 1 */
  5028. border-color: #aaaaaa;
  5029. background-color: #ffffff;
  5030. text-decoration: none;
  5031. /* 2 */
  5032. outline: none;
  5033. /* 3 */
  5034. }
  5035. /* Caption
  5036. ========================================================================== */
  5037. .uk-thumbnail-caption {
  5038. padding-top: 5px;
  5039. text-align: center;
  5040. color: #444444;
  5041. }
  5042. /* Sizes
  5043. ========================================================================== */
  5044. .uk-thumbnail-mini {
  5045. width: 150px;
  5046. }
  5047. .uk-thumbnail-small {
  5048. width: 200px;
  5049. }
  5050. .uk-thumbnail-medium {
  5051. width: 300px;
  5052. }
  5053. .uk-thumbnail-large {
  5054. width: 400px;
  5055. }
  5056. .uk-thumbnail-expand,
  5057. .uk-thumbnail-expand > img {
  5058. width: 100%;
  5059. }
  5060. /* Hooks
  5061. ========================================================================== */
  5062. /*
  5063. * Name: Overlay
  5064. * Description: Defines styles for image overlays
  5065. *
  5066. * Component: `uk-overlay`
  5067. *
  5068. * Sub-objects: `uk-overlay-area`
  5069. * `uk-overlay-caption`
  5070. * `uk-overlay-toggle`
  5071. *
  5072. ========================================================================== */
  5073. /* Component
  5074. ========================================================================== */
  5075. /*
  5076. * 1. Container width fits its content
  5077. * 2. Create position context
  5078. * 3. Set max-width for responsive images to prevent `inline-block` consequences
  5079. * 4. Remove the gap between the container and its child element
  5080. */
  5081. .uk-overlay {
  5082. /* 1 */
  5083. display: inline-block;
  5084. /* 2 */
  5085. position: relative;
  5086. /* 3 */
  5087. max-width: 100%;
  5088. /* 4 */
  5089. vertical-align: middle;
  5090. }
  5091. /* Sub-object `uk-overlay-area`
  5092. ========================================================================== */
  5093. /*
  5094. * 1. Set position
  5095. * 2. Set style
  5096. * 3. Fade-in transition
  5097. */
  5098. .uk-overlay-area {
  5099. /* 1 */
  5100. position: absolute;
  5101. top: 0;
  5102. bottom: 0;
  5103. left: 0;
  5104. right: 0;
  5105. /* 2 */
  5106. background: rgba(0, 0, 0, 0.3);
  5107. /* 3 */
  5108. opacity: 0;
  5109. -webkit-transition: opacity 0.15s linear;
  5110. transition: opacity 0.15s linear;
  5111. }
  5112. /*
  5113. * Hover
  5114. * 1. Use optional `uk-overlay-toggle` to trigger the overlay earlier
  5115. */
  5116. .uk-overlay:hover .uk-overlay-area,
  5117. .uk-overlay-toggle:hover .uk-overlay-area {
  5118. opacity: 1;
  5119. }
  5120. /* 1 */
  5121. /*
  5122. * Icon
  5123. */
  5124. .uk-overlay-area:before {
  5125. content: "\f002";
  5126. position: absolute;
  5127. top: 50%;
  5128. left: 50%;
  5129. width: 50px;
  5130. height: 50px;
  5131. margin-top: -25px;
  5132. margin-left: -25px;
  5133. font-size: 50px;
  5134. line-height: 1;
  5135. font-family: "FontAwesome";
  5136. text-align: center;
  5137. color: #ffffff;
  5138. }
  5139. /* Sub-object `uk-overlay-caption`
  5140. ========================================================================== */
  5141. /*
  5142. * 1. Set position
  5143. * 2. Set style
  5144. * 3. Fade-in transition
  5145. */
  5146. .uk-overlay-caption {
  5147. /* 1 */
  5148. position: absolute;
  5149. bottom: 0;
  5150. left: 0;
  5151. right: 0;
  5152. /* 2 */
  5153. padding: 15px;
  5154. background: rgba(0, 0, 0, 0.5);
  5155. color: #ffffff;
  5156. /* 3 */
  5157. opacity: 0;
  5158. -webkit-transition: opacity 0.15s linear;
  5159. transition: opacity 0.15s linear;
  5160. }
  5161. /*
  5162. * Hover
  5163. * 1. Use optional `uk-overlay-toggle` to trigger the overlay earlier
  5164. */
  5165. .uk-overlay:hover .uk-overlay-caption,
  5166. .uk-overlay-toggle:hover .uk-overlay-caption {
  5167. opacity: 1;
  5168. }
  5169. /* 1 */
  5170. /* Hooks
  5171. ========================================================================== */
  5172. /*
  5173. * Name: Progress
  5174. * Description: Defines styles for progress bars
  5175. *
  5176. * Component: `uk-progress`
  5177. *
  5178. * Sub-objects: `uk-progress-bar`
  5179. *
  5180. * Modifiers: `uk-progress-mini`
  5181. * `uk-progress-small`
  5182. * `uk-progress-success`
  5183. * `uk-progress-warning`
  5184. * `uk-progress-danger`
  5185. * `uk-progress-striped`
  5186. *
  5187. ========================================================================== */
  5188. /* Component
  5189. ========================================================================== */
  5190. /*
  5191. * 1. Clearing
  5192. * 2. Vertical alignment if text is used
  5193. */
  5194. .uk-progress {
  5195. -moz-box-sizing: border-box;
  5196. box-sizing: border-box;
  5197. height: 20px;
  5198. margin-bottom: 15px;
  5199. background: #f5f5f5;
  5200. overflow: hidden;
  5201. /* 1 */
  5202. line-height: 20px;
  5203. /* 2 */
  5204. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  5205. border-radius: 4px;
  5206. }
  5207. /*
  5208. * Add margin if adjacent element
  5209. */
  5210. * + .uk-progress {
  5211. margin-top: 15px;
  5212. }
  5213. /* Sub-object: `uk-progress-bar`
  5214. ========================================================================== */
  5215. .uk-progress-bar {
  5216. width: 0;
  5217. height: 100%;
  5218. background: #00a8e6;
  5219. float: left;
  5220. /* Transition */
  5221. -webkit-transition: width 0.6s ease;
  5222. transition: width 0.6s ease;
  5223. /* Allow text */
  5224. font-size: 12px;
  5225. color: #ffffff;
  5226. text-align: center;
  5227. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  5228. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  5229. }
  5230. /* Size modifiers
  5231. ========================================================================== */
  5232. /* Mini */
  5233. .uk-progress-mini {
  5234. height: 6px;
  5235. }
  5236. /* Small */
  5237. .uk-progress-small {
  5238. height: 12px;
  5239. }
  5240. /* Color modifiers
  5241. ========================================================================== */
  5242. .uk-progress-success .uk-progress-bar {
  5243. background-color: #8cc14c;
  5244. }
  5245. .uk-progress-warning .uk-progress-bar {
  5246. background-color: #faa732;
  5247. }
  5248. .uk-progress-danger .uk-progress-bar {
  5249. background-color: #da314b;
  5250. }
  5251. /* Modifier: `uk-progress-striped`
  5252. ========================================================================== */
  5253. .uk-progress-striped .uk-progress-bar {
  5254. 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);
  5255. 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);
  5256. background-size: 30px 30px;
  5257. }
  5258. /*
  5259. * Animation
  5260. */
  5261. .uk-progress-striped.uk-active .uk-progress-bar {
  5262. -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  5263. animation: uk-progress-bar-stripes 2s linear infinite;
  5264. }
  5265. @-webkit-keyframes uk-progress-bar-stripes {
  5266. 0% {
  5267. background-position: 0 0;
  5268. }
  5269. 100% {
  5270. background-position: 30px 0;
  5271. }
  5272. }
  5273. @keyframes uk-progress-bar-stripes {
  5274. 0% {
  5275. background-position: 0 0;
  5276. }
  5277. 100% {
  5278. background-position: 30px 0;
  5279. }
  5280. }
  5281. /* Hooks
  5282. ========================================================================== */
  5283. /*
  5284. * Name: Search
  5285. * Description: Defines a search component
  5286. *
  5287. * Component: `uk-search`
  5288. *
  5289. * Sub-objects: `uk-search-field`
  5290. * `uk-search-close`
  5291. *
  5292. * States: `uk-active`
  5293. * `uk-loading`
  5294. *
  5295. * Uses: Animation
  5296. * Icon: FontAwesome
  5297. *
  5298. * Used by: Off-canvas
  5299. *
  5300. ========================================================================== */
  5301. /* Component
  5302. ========================================================================== */
  5303. /*
  5304. * 1. Create position context for dropdowns
  5305. * 2. Needed for `form` element
  5306. */
  5307. .uk-search {
  5308. display: inline-block;
  5309. position: relative;
  5310. /* 1 */
  5311. margin: 0;
  5312. /* 2 */
  5313. }
  5314. /*
  5315. * Icon
  5316. */
  5317. .uk-search:before {
  5318. content: "\f002";
  5319. position: absolute;
  5320. top: 0;
  5321. left: 0;
  5322. width: 30px;
  5323. line-height: 30px;
  5324. text-align: center;
  5325. font-family: "FontAwesome";
  5326. font-size: 14px;
  5327. color: rgba(0, 0, 0, 0.2);
  5328. }
  5329. /* Sub-object `uk-search-field`
  5330. ========================================================================== */
  5331. /*
  5332. * 1. Needed to reset iOS `input[type="search"]` appearance
  5333. */
  5334. .uk-search-field {
  5335. width: 120px;
  5336. height: 30px;
  5337. padding: 0 30px;
  5338. border: 1px solid rgba(0, 0, 0, 0);
  5339. border-radius: 0;
  5340. /* 1 */
  5341. background: rgba(0, 0, 0, 0);
  5342. color: #444444;
  5343. -webkit-transition: all linear 0.2s;
  5344. transition: all linear 0.2s;
  5345. }
  5346. /*
  5347. * Needed to reset iOS `input[type="search"]` appearance
  5348. * Higher specificity to override appearance set by normalize.less
  5349. */
  5350. input.uk-search-field {
  5351. -webkit-appearance: none;
  5352. }
  5353. /* Placeholder */
  5354. .uk-search-field:-ms-input-placeholder {
  5355. color: #999999;
  5356. }
  5357. .uk-search-field::-moz-placeholder {
  5358. color: #999999;
  5359. }
  5360. .uk-search-field::-webkit-input-placeholder {
  5361. color: #999999;
  5362. }
  5363. /* Removes cancel button in IE10 */
  5364. .uk-search-field::-ms-clear {
  5365. display: none;
  5366. }
  5367. /* Focus */
  5368. .uk-search-field:focus {
  5369. outline: 0;
  5370. }
  5371. /* Focus + active */
  5372. .uk-search-field:focus,
  5373. .uk-active .uk-search-field {
  5374. width: 180px;
  5375. }
  5376. /* Sub-object `uk-search-close`
  5377. ========================================================================== */
  5378. /*
  5379. * 1. Required for `button` elements
  5380. */
  5381. .uk-search-close {
  5382. display: none;
  5383. position: absolute;
  5384. top: 0;
  5385. right: 0;
  5386. width: 30px;
  5387. line-height: 30px;
  5388. text-align: center;
  5389. font-size: 14px;
  5390. color: rgba(0, 0, 0, 0.2);
  5391. /* 1. */
  5392. padding: 0;
  5393. border: 0;
  5394. -webkit-appearance: none;
  5395. background: transparent;
  5396. /* Needed for Sarari */
  5397. }
  5398. .uk-loading > .uk-search-close,
  5399. .uk-active > .uk-search-close {
  5400. display: block;
  5401. }
  5402. /*
  5403. * Icon
  5404. */
  5405. .uk-search-close:after {
  5406. display: block;
  5407. content: "\f00d";
  5408. font-family: "FontAwesome";
  5409. }
  5410. /* Loading icon */
  5411. .uk-loading > .uk-search-close:after {
  5412. content: "\f110";
  5413. -webkit-animation: uk-spin 2s infinite linear;
  5414. animation: uk-spin 2s infinite linear;
  5415. }
  5416. /* Hooks
  5417. ========================================================================== */
  5418. /*
  5419. * Name: Animation
  5420. * Description: Provides a useful set of keyframe animations
  5421. *
  5422. * Component: `uk-animation-*`
  5423. *
  5424. * Modifiers: `uk-animation-fade`
  5425. * `uk-animation-scale-up`
  5426. * `uk-animation-scale-down`
  5427. * `uk-animation-slide-top`
  5428. * `uk-animation-slide-bottom`
  5429. * `uk-animation-slide-left`
  5430. * `uk-animation-slide-right`
  5431. * `uk-animation-reverse`
  5432. *
  5433. * Used by: Dropdown
  5434. * Icon
  5435. * Search
  5436. *
  5437. ========================================================================== */
  5438. /* Component
  5439. ========================================================================== */
  5440. [class*='uk-animation-'] {
  5441. -webkit-animation-duration: 0.5s;
  5442. animation-duration: 0.5s;
  5443. -webkit-animation-timing-function: ease-out;
  5444. animation-timing-function: ease-out;
  5445. -webkit-animation-fill-mode: both;
  5446. animation-fill-mode: both;
  5447. }
  5448. /*
  5449. * Fade
  5450. */
  5451. .uk-animation-fade {
  5452. -webkit-animation-name: uk-fade;
  5453. animation-name: uk-fade;
  5454. -webkit-animation-duration: 0.8s;
  5455. animation-duration: 0.8s;
  5456. -webkit-animation-timing-function: linear;
  5457. animation-timing-function: linear;
  5458. }
  5459. /*
  5460. * Scale
  5461. */
  5462. .uk-animation-scale-up {
  5463. -webkit-animation-name: uk-scale-up;
  5464. animation-name: uk-scale-up;
  5465. }
  5466. .uk-animation-scale-down {
  5467. -webkit-animation-name: uk-scale-down;
  5468. animation-name: uk-scale-down;
  5469. }
  5470. /*
  5471. * Slide
  5472. */
  5473. .uk-animation-slide-top {
  5474. -webkit-animation-name: uk-slide-top;
  5475. animation-name: uk-slide-top;
  5476. }
  5477. .uk-animation-slide-bottom {
  5478. -webkit-animation-name: uk-slide-bottom;
  5479. animation-name: uk-slide-bottom;
  5480. }
  5481. .uk-animation-slide-left {
  5482. -webkit-animation-name: uk-slide-left;
  5483. animation-name: uk-slide-left;
  5484. }
  5485. .uk-animation-slide-right {
  5486. -webkit-animation-name: uk-slide-right;
  5487. animation-name: uk-slide-right;
  5488. }
  5489. /* Modifiers
  5490. ========================================================================== */
  5491. .uk-animation-reverse {
  5492. -webkit-animation-direction: reverse;
  5493. animation-direction: reverse;
  5494. }
  5495. /* Keyframes
  5496. ========================================================================== */
  5497. /*
  5498. * Fade
  5499. */
  5500. @-webkit-keyframes uk-fade {
  5501. 0% {
  5502. opacity: 0;
  5503. }
  5504. 100% {
  5505. opacity: 1;
  5506. }
  5507. }
  5508. @keyframes uk-fade {
  5509. 0% {
  5510. opacity: 0;
  5511. }
  5512. 100% {
  5513. opacity: 1;
  5514. }
  5515. }
  5516. /*
  5517. * Scale up
  5518. */
  5519. @-webkit-keyframes uk-scale-up {
  5520. 0% {
  5521. opacity: 0;
  5522. -webkit-transform: scale(0.2);
  5523. }
  5524. 100% {
  5525. opacity: 1;
  5526. -webkit-transform: scale(1);
  5527. }
  5528. }
  5529. @keyframes uk-scale-up {
  5530. 0% {
  5531. opacity: 0;
  5532. transform: scale(0.2);
  5533. }
  5534. 100% {
  5535. opacity: 1;
  5536. transform: scale(1);
  5537. }
  5538. }
  5539. /*
  5540. * Scale down
  5541. */
  5542. @-webkit-keyframes uk-scale-down {
  5543. 0% {
  5544. opacity: 0;
  5545. -webkit-transform: scale(1.8);
  5546. }
  5547. 100% {
  5548. opacity: 1;
  5549. -webkit-transform: scale(1);
  5550. }
  5551. }
  5552. @keyframes uk-scale-down {
  5553. 0% {
  5554. opacity: 0;
  5555. transform: scale(1.8);
  5556. }
  5557. 100% {
  5558. opacity: 1;
  5559. transform: scale(1);
  5560. }
  5561. }
  5562. /*
  5563. * Slide top
  5564. */
  5565. @-webkit-keyframes uk-slide-top {
  5566. 0% {
  5567. opacity: 0;
  5568. -webkit-transform: translateY(-100%);
  5569. }
  5570. 100% {
  5571. opacity: 1;
  5572. -webkit-transform: translateY(0);
  5573. }
  5574. }
  5575. @keyframes uk-slide-top {
  5576. 0% {
  5577. opacity: 0;
  5578. transform: translateY(-100%);
  5579. }
  5580. 100% {
  5581. opacity: 1;
  5582. transform: translateY(0);
  5583. }
  5584. }
  5585. /*
  5586. * Slide bottom
  5587. */
  5588. @-webkit-keyframes uk-slide-bottom {
  5589. 0% {
  5590. opacity: 0;
  5591. -webkit-transform: translateY(100%);
  5592. }
  5593. 100% {
  5594. opacity: 1;
  5595. -webkit-transform: translateY(0);
  5596. }
  5597. }
  5598. @keyframes uk-slide-bottom {
  5599. 0% {
  5600. opacity: 0;
  5601. transform: translateY(100%);
  5602. }
  5603. 100% {
  5604. opacity: 1;
  5605. transform: translateY(0);
  5606. }
  5607. }
  5608. /*
  5609. * Slide left
  5610. */
  5611. @-webkit-keyframes uk-slide-left {
  5612. 0% {
  5613. opacity: 0;
  5614. -webkit-transform: translateX(-100%);
  5615. }
  5616. 100% {
  5617. opacity: 1;
  5618. -webkit-transform: translateX(0);
  5619. }
  5620. }
  5621. @keyframes uk-slide-left {
  5622. 0% {
  5623. opacity: 0;
  5624. transform: translateX(-100%);
  5625. }
  5626. 100% {
  5627. opacity: 1;
  5628. transform: translateX(0);
  5629. }
  5630. }
  5631. /*
  5632. * Slide right
  5633. */
  5634. @-webkit-keyframes uk-slide-right {
  5635. 0% {
  5636. opacity: 0;
  5637. -webkit-transform: translateX(100%);
  5638. }
  5639. 100% {
  5640. opacity: 1;
  5641. -webkit-transform: translateX(0);
  5642. }
  5643. }
  5644. @keyframes uk-slide-right {
  5645. 0% {
  5646. opacity: 0;
  5647. transform: translateX(100%);
  5648. }
  5649. 100% {
  5650. opacity: 1;
  5651. transform: translateX(0);
  5652. }
  5653. }
  5654. /*
  5655. * Slide top fixed
  5656. */
  5657. @-webkit-keyframes uk-slide-top-fixed {
  5658. 0% {
  5659. opacity: 0;
  5660. -webkit-transform: translateY(-10px);
  5661. }
  5662. 100% {
  5663. opacity: 1;
  5664. -webkit-transform: translateY(0);
  5665. }
  5666. }
  5667. @keyframes uk-slide-top-fixed {
  5668. 0% {
  5669. opacity: 0;
  5670. transform: translateY(-10px);
  5671. }
  5672. 100% {
  5673. opacity: 1;
  5674. transform: translateY(0);
  5675. }
  5676. }
  5677. /*
  5678. * Slide bottom fixed
  5679. */
  5680. @-webkit-keyframes uk-slide-bottom-fixed {
  5681. 0% {
  5682. opacity: 0;
  5683. -webkit-transform: translateY(10px);
  5684. }
  5685. 100% {
  5686. opacity: 1;
  5687. -webkit-transform: translateY(0);
  5688. }
  5689. }
  5690. @keyframes uk-slide-bottom-fixed {
  5691. 0% {
  5692. opacity: 0;
  5693. transform: translateY(10px);
  5694. }
  5695. 100% {
  5696. opacity: 1;
  5697. transform: translateY(0);
  5698. }
  5699. }
  5700. /*
  5701. * Spin
  5702. */
  5703. @-webkit-keyframes uk-spin {
  5704. 0% {
  5705. -webkit-transform: rotate(0deg);
  5706. }
  5707. 100% {
  5708. -webkit-transform: rotate(359deg);
  5709. }
  5710. }
  5711. @keyframes uk-spin {
  5712. 0% {
  5713. transform: rotate(0deg);
  5714. }
  5715. 100% {
  5716. transform: rotate(359deg);
  5717. }
  5718. }
  5719. /* JavaScript */
  5720. /*
  5721. * Name: Dropdown
  5722. * Description: Defines styles for a toggleable dropdown
  5723. *
  5724. * Component: `uk-dropdown`
  5725. *
  5726. * Modifiers: `uk-dropdown-flip`
  5727. * `uk-dropdown-center`
  5728. * `uk-dropdown-justify`
  5729. * `uk-dropdown-up`
  5730. * `uk-dropdown-width-2`
  5731. * `uk-dropdown-width-3`
  5732. * `uk-dropdown-width-4`
  5733. * `uk-dropdown-width-5`
  5734. * `uk-dropdown-stack`
  5735. * `uk-dropdown-small`
  5736. * `uk-dropdown-navbar`
  5737. * `uk-dropdown-search`
  5738. *
  5739. * States: `uk-open`
  5740. *
  5741. * Uses: Animation
  5742. * Grid: `uk-grid`, `uk-width-*`
  5743. * Panel: `uk-panel`
  5744. * Navbar: `uk-navbar-flip`
  5745. *
  5746. ========================================================================== */
  5747. /* Component
  5748. ========================================================================== */
  5749. /*
  5750. * 1. Hide by default
  5751. * 2. Set position
  5752. * 3. Box-sizing is needed for `uk-dropdown-justify`
  5753. * 4. Set style
  5754. * 5. Reset button group whitespace hack
  5755. */
  5756. .uk-dropdown {
  5757. /* 1 */
  5758. display: none;
  5759. /* 2 */
  5760. position: absolute;
  5761. top: 100%;
  5762. left: 0;
  5763. z-index: 1000;
  5764. /* 3 */
  5765. -moz-box-sizing: border-box;
  5766. box-sizing: border-box;
  5767. /* 4 */
  5768. width: 200px;
  5769. margin-top: 5px;
  5770. padding: 15px;
  5771. background: #ffffff;
  5772. color: #444444;
  5773. /* 5 */
  5774. letter-spacing: normal;
  5775. border: 1px solid #dddddd;
  5776. border-radius: 4px;
  5777. }
  5778. /*
  5779. * 1. Show dropdown
  5780. * 2. Set animation
  5781. * 3. Needed for scale animation
  5782. */
  5783. .uk-open > .uk-dropdown {
  5784. /* 1 */
  5785. display: block;
  5786. /* 2 */
  5787. -webkit-animation: uk-fade 0.2s ease-in-out;
  5788. animation: uk-fade 0.2s ease-in-out;
  5789. /* 3 */
  5790. -webkit-transform-origin: 0 0;
  5791. transform-origin: 0 0;
  5792. }
  5793. /* Alignment modifiers
  5794. ========================================================================== */
  5795. /*
  5796. * Modifier `uk-dropdown-flip`
  5797. */
  5798. .uk-dropdown-flip {
  5799. left: auto;
  5800. right: 0;
  5801. }
  5802. /*
  5803. * Modifier `uk-dropdown-up`
  5804. */
  5805. .uk-dropdown-up {
  5806. top: auto;
  5807. bottom: 100%;
  5808. margin-top: auto;
  5809. margin-bottom: 5px;
  5810. }
  5811. /* Nav in dropdown
  5812. ========================================================================== */
  5813. .uk-dropdown .uk-nav {
  5814. margin: 0 -15px;
  5815. }
  5816. /* Grid and panel in dropdown
  5817. ========================================================================== */
  5818. /*
  5819. * Vertical gutter
  5820. */
  5821. /* Grid */
  5822. .uk-dropdown > .uk-grid + .uk-grid {
  5823. margin-top: 15px;
  5824. }
  5825. /* Panels */
  5826. .uk-dropdown > .uk-grid > [class*='uk-width-'] > .uk-panel + .uk-panel {
  5827. margin-top: 15px;
  5828. }
  5829. /* Only tablets and desktops */
  5830. @media (min-width: 768px) {
  5831. /*
  5832. * Horizontal gutter
  5833. */
  5834. .uk-dropdown:not(.uk-dropdown-stack) > .uk-grid {
  5835. margin-left: -15px;
  5836. margin-right: -15px;
  5837. }
  5838. .uk-dropdown:not(.uk-dropdown-stack) > .uk-grid > [class*='uk-width-'] {
  5839. padding-left: 15px;
  5840. padding-right: 15px;
  5841. }
  5842. /*
  5843. * Column divider
  5844. */
  5845. .uk-dropdown:not(.uk-dropdown-stack) > .uk-grid > [class*='uk-width-']:nth-child(n+2) {
  5846. border-left: 1px solid #dddddd;
  5847. }
  5848. /*
  5849. * Width multiplier for dropdown columns
  5850. */
  5851. .uk-dropdown-width-2:not(.uk-dropdown-stack) {
  5852. width: 400px;
  5853. }
  5854. .uk-dropdown-width-3:not(.uk-dropdown-stack) {
  5855. width: 600px;
  5856. }
  5857. .uk-dropdown-width-4:not(.uk-dropdown-stack) {
  5858. width: 800px;
  5859. }
  5860. .uk-dropdown-width-5:not(.uk-dropdown-stack) {
  5861. width: 1000px;
  5862. }
  5863. }
  5864. /* Only phones */
  5865. @media (max-width: 767px) {
  5866. /*
  5867. * Stack columns and take full width
  5868. */
  5869. .uk-dropdown > .uk-grid > [class*='uk-width-'] {
  5870. width: 100%;
  5871. }
  5872. /*
  5873. * Vertical gutter
  5874. */
  5875. .uk-dropdown > .uk-grid > [class*='uk-width-']:nth-child(n+2) {
  5876. margin-top: 15px;
  5877. }
  5878. }
  5879. /*
  5880. * Stack grid columns
  5881. */
  5882. .uk-dropdown-stack > .uk-grid > [class*='uk-width-'] {
  5883. width: 100%;
  5884. }
  5885. .uk-dropdown-stack > .uk-grid > [class*='uk-width-']:nth-child(n+2) {
  5886. margin-top: 15px;
  5887. }
  5888. /* Modifier `uk-dropdown-small`
  5889. ========================================================================== */
  5890. /*
  5891. * Set min-width and text expands dropdown if needed
  5892. */
  5893. .uk-dropdown-small {
  5894. min-width: 150px;
  5895. width: auto;
  5896. padding: 5px;
  5897. white-space: nowrap;
  5898. }
  5899. /*
  5900. * Nav in dropdown
  5901. */
  5902. .uk-dropdown-small .uk-nav {
  5903. margin: 0 -5px;
  5904. }
  5905. /* Modifier: `uk-dropdown-navbar`
  5906. ========================================================================== */
  5907. .uk-dropdown-navbar {
  5908. margin-top: 6px;
  5909. background: #ffffff;
  5910. color: #444444;
  5911. left: -1px;
  5912. border: 1px solid #dddddd;
  5913. border-radius: 4px;
  5914. }
  5915. .uk-open > .uk-dropdown-navbar {
  5916. -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  5917. animation: uk-slide-top-fixed 0.2s ease-in-out;
  5918. }
  5919. /* Modifier: `uk-dropdown-search`
  5920. ========================================================================== */
  5921. .uk-dropdown-search {
  5922. width: 300px;
  5923. margin-top: 0;
  5924. background: #ffffff;
  5925. color: #444444;
  5926. }
  5927. .uk-open > .uk-dropdown-search {
  5928. -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  5929. animation: uk-slide-top-fixed 0.2s ease-in-out;
  5930. }
  5931. /*
  5932. * Dependency `uk-navbar-flip`
  5933. */
  5934. .uk-navbar-flip .uk-dropdown-search {
  5935. margin-top: 11px;
  5936. margin-right: -16px;
  5937. }
  5938. /* Hooks
  5939. ========================================================================== */
  5940. /*
  5941. * Name: Modal
  5942. * Description: Defines styles for modal dialogs
  5943. *
  5944. * Component: `uk-modal`
  5945. *
  5946. * Sub-objects: `uk-modal-dialog`
  5947. * `uk-modal-close`
  5948. *
  5949. * Modifiers: `uk-modal-dialog-slide`
  5950. * `uk-modal-dialog-frameless`
  5951. *
  5952. * States: `uk-open`
  5953. *
  5954. * Uses: Close: `uk-close`
  5955. *
  5956. ========================================================================== */
  5957. /* Component
  5958. ========================================================================== */
  5959. /*
  5960. * This is the modal overlay and modal dialog container
  5961. * 1. Hide by default
  5962. * 2. Set fixed position
  5963. * 3. Webkit needs a height to position the modal dialog vertically in percent
  5964. * 4. Allow scrolling for the modal dialog
  5965. * 5. Mask the background page
  5966. * 6. Fade-in transition
  5967. */
  5968. .uk-modal {
  5969. /* 1 */
  5970. display: none;
  5971. /* 2 */
  5972. position: fixed;
  5973. top: 0;
  5974. right: 0;
  5975. bottom: 0;
  5976. left: 0;
  5977. z-index: 1020;
  5978. /* 3 */
  5979. height: 100%;
  5980. /* 4 */
  5981. overflow-y: auto;
  5982. -webkit-overflow-scrolling: touch;
  5983. /* 5 */
  5984. background: rgba(0, 0, 0, 0.6);
  5985. /* 6 */
  5986. opacity: 0;
  5987. -webkit-transition: opacity 0.15s linear;
  5988. transition: opacity 0.15s linear;
  5989. }
  5990. /*
  5991. * Open state
  5992. */
  5993. .uk-modal.uk-open {
  5994. opacity: 1;
  5995. }
  5996. /*
  5997. * Prevents dublicated scrollbar caused by 4.
  5998. */
  5999. .uk-modal-page {
  6000. overflow: hidden;
  6001. }
  6002. /* Sub-object: `uk-modal-dialog`
  6003. ========================================================================== */
  6004. /*
  6005. * 1. Set position
  6006. * 2. Set box sizing
  6007. * 3. Center dialog box
  6008. * 4. Set style
  6009. */
  6010. .uk-modal-dialog {
  6011. /* 1 */
  6012. position: relative;
  6013. top: 10%;
  6014. left: 50%;
  6015. /* 2 */
  6016. -moz-box-sizing: border-box;
  6017. box-sizing: border-box;
  6018. padding: 20px;
  6019. width: 600px;
  6020. /* 3 */
  6021. margin-left: -300px;
  6022. /* 4 */
  6023. background: #ffffff;
  6024. border-radius: 4px;
  6025. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  6026. }
  6027. /* Only phones */
  6028. @media (max-width: 767px) {
  6029. /*
  6030. * Fit the phone width perfectly
  6031. */
  6032. .uk-modal-dialog {
  6033. top: 0;
  6034. left: 0;
  6035. right: 0;
  6036. width: auto;
  6037. margin: 10px;
  6038. }
  6039. }
  6040. /*
  6041. * Remove margin from the last-child
  6042. */
  6043. .uk-modal-dialog > :last-child {
  6044. margin-bottom: 0;
  6045. }
  6046. /* Modifier: `uk-modal-dialog-slide`
  6047. ========================================================================== */
  6048. /*
  6049. * Adds a slide-in transition to the modal dialog
  6050. */
  6051. .uk-modal-dialog-slide {
  6052. opacity: 0;
  6053. -webkit-transform: translateY(-25%);
  6054. transform: translateY(-25%);
  6055. -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  6056. transition: opacity 0.3s linear, transform 0.3s ease-out;
  6057. }
  6058. .uk-open .uk-modal-dialog-slide {
  6059. opacity: 1;
  6060. -webkit-transform: translateY(0);
  6061. transform: translateY(0);
  6062. }
  6063. /* Close in modal
  6064. ========================================================================== */
  6065. .uk-modal-dialog > .uk-close:first-child {
  6066. margin: -10px -10px 0 0;
  6067. float: right;
  6068. }
  6069. /*
  6070. * Remove margin from adjacent element
  6071. */
  6072. .uk-modal-dialog > .uk-close:first-child + * {
  6073. margin-top: 0;
  6074. }
  6075. /* Modifier: `uk-modal-dialog-frameless`
  6076. ========================================================================== */
  6077. .uk-modal-dialog-frameless {
  6078. padding: 0;
  6079. }
  6080. /*
  6081. * Close in modal
  6082. */
  6083. .uk-modal-dialog-frameless > .uk-close:first-child {
  6084. position: absolute;
  6085. top: -12px;
  6086. right: -12px;
  6087. margin: 0;
  6088. float: none;
  6089. }
  6090. /* Only phones */
  6091. @media (max-width: 767px) {
  6092. .uk-modal-dialog-frameless > .uk-close:first-child {
  6093. top: -7px;
  6094. right: -7px;
  6095. }
  6096. }
  6097. /* Hooks
  6098. ========================================================================== */
  6099. /*
  6100. * Name: Off-canvas
  6101. * Description: Defines styles for an off-canvas sidebar that slides in and out of the page
  6102. *
  6103. * Component: `uk-offcanvas`
  6104. *
  6105. * Sub-objects: `uk-offcanvas-page`
  6106. * `uk-offcanvas-bar`
  6107. *
  6108. * Modifiers: `uk-offcanvas-bar-flip`
  6109. *
  6110. * States: `uk-active`
  6111. *
  6112. * Uses: Panel: `uk-panel`
  6113. * Search: `uk-search`, `uk-search-field`
  6114. *
  6115. ========================================================================== */
  6116. /* Component
  6117. ========================================================================== */
  6118. /*
  6119. * This is the offcanvas overlay and bar container
  6120. * 1. Hide by default
  6121. * 2. Set fixed position
  6122. * 3. Mask the background page
  6123. */
  6124. .uk-offcanvas {
  6125. /* 1 */
  6126. display: none;
  6127. /* 2 */
  6128. position: fixed;
  6129. top: 0;
  6130. right: 0;
  6131. bottom: 0;
  6132. left: 0;
  6133. z-index: 1010;
  6134. /* 3 */
  6135. background: rgba(0, 0, 0, 0.1);
  6136. }
  6137. .uk-offcanvas.uk-active {
  6138. display: block;
  6139. }
  6140. /* Sub-object `uk-offcanvas-page`
  6141. ========================================================================== */
  6142. /*
  6143. * Prepares the whole HTML page to slide-out
  6144. * 1. Fix the main page and disallow scrolling
  6145. * 2. Side-out transition
  6146. */
  6147. .uk-offcanvas-page {
  6148. /* 1 */
  6149. position: fixed;
  6150. /* 2 */
  6151. -webkit-transition: margin-left 0.3s ease-in-out 50ms;
  6152. transition: margin-left 0.3s ease-in-out 50ms;
  6153. }
  6154. /* Sub-object `uk-offcanvas-bar`
  6155. ========================================================================== */
  6156. /*
  6157. * This is the offcanvas bar
  6158. * 1. Set fixed position
  6159. * 2. Size and style
  6160. * 3. Allow scrolling
  6161. * 4. Side-out transition
  6162. */
  6163. .uk-offcanvas-bar {
  6164. /* 1 */
  6165. position: fixed;
  6166. top: 0;
  6167. bottom: 0;
  6168. left: 0;
  6169. -webkit-transform: translateX(-100%);
  6170. transform: translateX(-100%);
  6171. z-index: 1011;
  6172. /* 2 */
  6173. width: 270px;
  6174. max-width: 100%;
  6175. background: #333333;
  6176. /* 3 */
  6177. overflow-y: auto;
  6178. -webkit-overflow-scrolling: touch;
  6179. /* 4 */
  6180. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6181. transition: transform 0.3s ease-in-out;
  6182. }
  6183. .uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  6184. -webkit-transform: translateX(0%);
  6185. transform: translateX(0%);
  6186. }
  6187. /* Modifier `uk-offcanvas-bar-flip`
  6188. ========================================================================== */
  6189. .uk-offcanvas-bar-flip {
  6190. left: auto;
  6191. right: 0;
  6192. -webkit-transform: translateX(100%);
  6193. transform: translateX(100%);
  6194. }
  6195. /* Panel in offcanvas
  6196. ========================================================================== */
  6197. .uk-offcanvas .uk-panel {
  6198. margin: 20px 15px;
  6199. color: #777777;
  6200. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  6201. }
  6202. .uk-offcanvas .uk-panel-title {
  6203. color: #cccccc;
  6204. }
  6205. .uk-offcanvas .uk-panel a:not([class]) {
  6206. color: #cccccc;
  6207. }
  6208. .uk-offcanvas .uk-panel a:not([class]):hover {
  6209. color: #ffffff;
  6210. }
  6211. /* Search in offcanvas
  6212. ========================================================================== */
  6213. .uk-offcanvas .uk-search {
  6214. display: block;
  6215. margin: 20px 15px;
  6216. }
  6217. .uk-offcanvas .uk-search:before {
  6218. color: #777777;
  6219. }
  6220. .uk-offcanvas .uk-search-field {
  6221. width: 100%;
  6222. border-color: rgba(0, 0, 0, 0);
  6223. background: #1a1a1a;
  6224. color: #cccccc;
  6225. }
  6226. .uk-offcanvas .uk-search-field:-ms-input-placeholder {
  6227. color: #777777;
  6228. }
  6229. .uk-offcanvas .uk-search-field::-moz-placeholder {
  6230. color: #777777;
  6231. }
  6232. .uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  6233. color: #777777;
  6234. }
  6235. /* Hooks
  6236. ========================================================================== */
  6237. /*
  6238. * Name: Switcher
  6239. * Description: Defines styles for the switcher
  6240. *
  6241. * Component: `uk-switcher`
  6242. *
  6243. * States: `uk-active`
  6244. *
  6245. ========================================================================== */
  6246. /* Component
  6247. ========================================================================== */
  6248. .uk-switcher {
  6249. margin: 0;
  6250. padding: 0;
  6251. list-style: none;
  6252. }
  6253. /*
  6254. * Items
  6255. */
  6256. .uk-switcher > *:not(.uk-active) {
  6257. display: none;
  6258. }
  6259. /*
  6260. * Name: Tooltip
  6261. * Description: Defines styles for tooltips
  6262. *
  6263. * Component: `uk-tooltip`
  6264. *
  6265. * Modifiers `uk-tooltip-top`
  6266. * `uk-tooltip-top-left`
  6267. * `uk-tooltip-top-right`
  6268. * `uk-tooltip-bottom`
  6269. * `uk-tooltip-bottom-left`
  6270. * `uk-tooltip-bottom-right`
  6271. * `uk-tooltip-left`
  6272. * `uk-tooltip-right`
  6273. *
  6274. ========================================================================== */
  6275. /* Component
  6276. ========================================================================== */
  6277. /*
  6278. * 1. Hide by default
  6279. * 2. Set fixed position
  6280. * 3. Set dimensions
  6281. * 4. Set style
  6282. */
  6283. .uk-tooltip {
  6284. /* 1 */
  6285. display: none;
  6286. /* 2 */
  6287. position: absolute;
  6288. z-index: 1030;
  6289. /* 3 */
  6290. -moz-box-sizing: border-box;
  6291. box-sizing: border-box;
  6292. max-width: 200px;
  6293. padding: 5px 8px;
  6294. /* 4 */
  6295. background: #333333;
  6296. color: rgba(255, 255, 255, 0.7);
  6297. font-size: 12px;
  6298. line-height: 18px;
  6299. text-align: center;
  6300. border-radius: 3px;
  6301. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  6302. }
  6303. /* Triangle
  6304. ========================================================================== */
  6305. /*
  6306. * 1. Dashed is less antialised than solid
  6307. */
  6308. .uk-tooltip:after {
  6309. content: "";
  6310. display: block;
  6311. position: absolute;
  6312. width: 0;
  6313. height: 0;
  6314. border: 5px dashed #333333;
  6315. /* 1 */
  6316. }
  6317. /* Direction modifiers
  6318. ========================================================================== */
  6319. /*
  6320. * Top
  6321. */
  6322. .uk-tooltip-top:after,
  6323. .uk-tooltip-top-left:after,
  6324. .uk-tooltip-top-right:after {
  6325. bottom: -5px;
  6326. border-top-style: solid;
  6327. border-bottom: none;
  6328. border-left-color: transparent;
  6329. border-right-color: transparent;
  6330. border-top-color: #333333;
  6331. }
  6332. /*
  6333. * Bottom
  6334. */
  6335. .uk-tooltip-bottom:after,
  6336. .uk-tooltip-bottom-left:after,
  6337. .uk-tooltip-bottom-right:after {
  6338. top: -5px;
  6339. border-bottom-style: solid;
  6340. border-top: none;
  6341. border-left-color: transparent;
  6342. border-right-color: transparent;
  6343. border-bottom-color: #333333;
  6344. }
  6345. /*
  6346. * Top/Bottom center
  6347. */
  6348. .uk-tooltip-top:after,
  6349. .uk-tooltip-bottom:after {
  6350. left: 50%;
  6351. margin-left: -5px;
  6352. }
  6353. /*
  6354. * Top/Bottom left
  6355. */
  6356. .uk-tooltip-top-left:after,
  6357. .uk-tooltip-bottom-left:after {
  6358. left: 10px;
  6359. }
  6360. /*
  6361. * Top/Bottom right
  6362. */
  6363. .uk-tooltip-top-right:after,
  6364. .uk-tooltip-bottom-right:after {
  6365. right: 10px;
  6366. }
  6367. /*
  6368. * Left
  6369. */
  6370. .uk-tooltip-left:after {
  6371. right: -5px;
  6372. top: 50%;
  6373. margin-top: -5px;
  6374. border-left-style: solid;
  6375. border-right: none;
  6376. border-top-color: transparent;
  6377. border-bottom-color: transparent;
  6378. border-left-color: #333333;
  6379. }
  6380. /*
  6381. * Right
  6382. */
  6383. .uk-tooltip-right:after {
  6384. left: -5px;
  6385. top: 50%;
  6386. margin-top: -5px;
  6387. border-right-style: solid;
  6388. border-left: none;
  6389. border-top-color: transparent;
  6390. border-bottom-color: transparent;
  6391. border-right-color: #333333;
  6392. }
  6393. /* Hooks
  6394. ========================================================================== */
  6395. /* Need to be loaded last */
  6396. /*
  6397. * Name: Text
  6398. * Description: Collection of useful text utility classes to style your content
  6399. *
  6400. * Component: `uk-text-*`
  6401. *
  6402. ========================================================================== */
  6403. /* Size modifiers
  6404. ========================================================================== */
  6405. .uk-text-small {
  6406. font-size: 11px;
  6407. line-height: 16px;
  6408. }
  6409. .uk-text-large {
  6410. font-size: 18px;
  6411. line-height: 24px;
  6412. }
  6413. /* Weight modifiers
  6414. ========================================================================== */
  6415. .uk-text-bold {
  6416. font-weight: bold;
  6417. }
  6418. /* Color modifiers
  6419. ========================================================================== */
  6420. .uk-text-muted {
  6421. color: #999999;
  6422. }
  6423. .uk-text-info {
  6424. color: #2d7091;
  6425. }
  6426. .uk-text-success {
  6427. color: #659f13;
  6428. }
  6429. .uk-text-warning {
  6430. color: #e28327;
  6431. }
  6432. .uk-text-danger {
  6433. color: #d85030;
  6434. }
  6435. /* Alignment modifiers
  6436. ========================================================================== */
  6437. .uk-text-left {
  6438. text-align: left !important;
  6439. }
  6440. .uk-text-right {
  6441. text-align: right !important;
  6442. }
  6443. .uk-text-center {
  6444. text-align: center !important;
  6445. }
  6446. .uk-text-justify {
  6447. text-align: justify !important;
  6448. }
  6449. /* Wrap modifiers
  6450. ========================================================================== */
  6451. /*
  6452. * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
  6453. */
  6454. .uk-text-truncate {
  6455. overflow: hidden;
  6456. text-overflow: ellipsis;
  6457. white-space: nowrap;
  6458. }
  6459. /*
  6460. * Break strings if their length exceeds the width of their container
  6461. */
  6462. .uk-text-break {
  6463. word-wrap: break-word;
  6464. -webkit-hyphens: auto;
  6465. -ms-hyphens: auto;
  6466. -moz-hyphens: auto;
  6467. hyphens: auto;
  6468. }
  6469. /*
  6470. * Name: Utility
  6471. * Description: Collection of useful utility classes to style your content
  6472. *
  6473. * Component: `uk-container-*`
  6474. * `uk-clearfix`
  6475. * `uk-nbfc-*`
  6476. * `uk-float-*`
  6477. * `uk-align-*`
  6478. * `uk-vertical-align`
  6479. * `uk-height-1-1`
  6480. * `uk-responsive-*`
  6481. * `uk-margin-*`
  6482. * `uk-heading-*`
  6483. * `uk-link-muted`
  6484. * `uk-scrollable-*`
  6485. * `uk-display-*`
  6486. * `uk-visible-*`
  6487. * `uk-hidden-*`
  6488. *
  6489. ========================================================================== */
  6490. /* Container
  6491. ========================================================================== */
  6492. .uk-container {
  6493. -moz-box-sizing: border-box;
  6494. box-sizing: border-box;
  6495. max-width: 980px;
  6496. padding: 0 25px;
  6497. }
  6498. /* Only large screens */
  6499. @media (min-width: 1220px) {
  6500. .uk-container {
  6501. max-width: 1200px;
  6502. padding: 0 35px;
  6503. }
  6504. }
  6505. /*
  6506. * Micro clearfix
  6507. */
  6508. .uk-container:before,
  6509. .uk-container:after {
  6510. content: " ";
  6511. display: table;
  6512. }
  6513. .uk-container:after {
  6514. clear: both;
  6515. }
  6516. /*
  6517. * Center container
  6518. */
  6519. .uk-container-center {
  6520. margin-left: auto;
  6521. margin-right: auto;
  6522. }
  6523. /* Clearing
  6524. ========================================================================== */
  6525. /*
  6526. * Micro clearfix
  6527. */
  6528. .uk-clearfix:before,
  6529. .uk-clearfix:after {
  6530. content: " ";
  6531. display: table;
  6532. }
  6533. .uk-clearfix:after {
  6534. clear: both;
  6535. }
  6536. /*
  6537. * Create a new block formatting context
  6538. */
  6539. .uk-nbfc {
  6540. overflow: hidden;
  6541. }
  6542. .uk-nbfc-alt {
  6543. display: table-cell;
  6544. width: 10000px;
  6545. }
  6546. /* Alignment of block elements
  6547. ========================================================================== */
  6548. /*
  6549. * Float blocks
  6550. */
  6551. .uk-float-left {
  6552. float: left;
  6553. }
  6554. .uk-float-right {
  6555. float: right;
  6556. }
  6557. /* Alignment of images and objects
  6558. ========================================================================== */
  6559. /*
  6560. * Alignment
  6561. */
  6562. [class*='uk-align-'] {
  6563. display: block;
  6564. margin-bottom: 15px;
  6565. }
  6566. .uk-align-left {
  6567. margin-right: 15px;
  6568. float: left;
  6569. }
  6570. .uk-align-right {
  6571. margin-left: 15px;
  6572. float: right;
  6573. }
  6574. /* Only tablets and desktop */
  6575. @media (min-width: 768px) {
  6576. .uk-align-medium-left {
  6577. margin-right: 15px;
  6578. margin-bottom: 15px;
  6579. float: left;
  6580. }
  6581. .uk-align-medium-right {
  6582. margin-left: 15px;
  6583. margin-bottom: 15px;
  6584. float: right;
  6585. }
  6586. }
  6587. .uk-align-center {
  6588. margin-left: auto;
  6589. margin-right: auto;
  6590. }
  6591. /* Vertical alignment
  6592. ========================================================================== */
  6593. /*
  6594. * Remove whitespace between child elements when using `inline-block`
  6595. */
  6596. .uk-vertical-align {
  6597. letter-spacing: -0.31em;
  6598. }
  6599. /*
  6600. * The `uk-vertical-align` container needs a specific height
  6601. */
  6602. .uk-vertical-align:before {
  6603. content: '';
  6604. display: inline-block;
  6605. height: 100%;
  6606. vertical-align: middle;
  6607. }
  6608. /*
  6609. * Sub-object which can have any height
  6610. * 1. Reset whitespace hack
  6611. */
  6612. .uk-vertical-align-middle,
  6613. .uk-vertical-align-bottom {
  6614. display: inline-block;
  6615. letter-spacing: normal;
  6616. /* 1 */
  6617. max-width: 100%;
  6618. }
  6619. .uk-vertical-align-middle {
  6620. vertical-align: middle;
  6621. }
  6622. .uk-vertical-align-bottom {
  6623. vertical-align: bottom;
  6624. }
  6625. /*
  6626. * This helper class is very useful to extend the `html` and `body` element to the full height of the page.
  6627. */
  6628. .uk-height-1-1 {
  6629. height: 100%;
  6630. }
  6631. /* Responsive objects
  6632. * Note: Images are already responsive by default, see Base component
  6633. ========================================================================== */
  6634. /*
  6635. * 1. Corrects max-width/max-height behavior if padding and border are used
  6636. */
  6637. .uk-responsive-width,
  6638. .uk-responsive-height {
  6639. -moz-box-sizing: border-box;
  6640. box-sizing: border-box;
  6641. }
  6642. /*
  6643. * Responsiveness: Sets a maxium width relative to the parent and auto scales the height
  6644. */
  6645. .uk-responsive-width {
  6646. max-width: 100%;
  6647. height: auto;
  6648. }
  6649. /*
  6650. * Responsiveness: Sets a maxium height relative to the parent and auto scales the width
  6651. * Only works if the parent element has a fixed height.
  6652. */
  6653. .uk-responsive-height {
  6654. max-height: 100%;
  6655. width: auto;
  6656. }
  6657. /* Margin
  6658. ========================================================================== */
  6659. /*
  6660. * Create a block with the same margin of a paragraph
  6661. */
  6662. .uk-margin {
  6663. margin-bottom: 15px;
  6664. }
  6665. /*
  6666. * Add margin if adjacent element
  6667. */
  6668. * + .uk-margin {
  6669. margin-top: 15px;
  6670. }
  6671. /*
  6672. * Margin top and bottom
  6673. */
  6674. .uk-margin-top {
  6675. margin-top: 15px !important;
  6676. }
  6677. .uk-margin-bottom {
  6678. margin-bottom: 15px !important;
  6679. }
  6680. /*
  6681. * Remove margins
  6682. */
  6683. .uk-margin-remove {
  6684. margin: 0 !important;
  6685. }
  6686. .uk-margin-top-remove {
  6687. margin-top: 0 !important;
  6688. }
  6689. .uk-margin-bottom-remove {
  6690. margin-bottom: 0 !important;
  6691. }
  6692. /* Headings
  6693. ========================================================================== */
  6694. /* Only tablets and desktops */
  6695. @media (min-width: 768px) {
  6696. .uk-heading-large {
  6697. font-size: 52px;
  6698. line-height: 64px;
  6699. }
  6700. }
  6701. /* Link
  6702. ========================================================================== */
  6703. .uk-link-muted,
  6704. .uk-link-muted * {
  6705. color: #444444;
  6706. }
  6707. .uk-link-muted:hover,
  6708. .uk-link-muted *:hover {
  6709. color: #444444;
  6710. }
  6711. /* Scrollable
  6712. ========================================================================== */
  6713. /*
  6714. * Enable scrolling for preformatted text
  6715. */
  6716. .uk-scrollable-text {
  6717. max-height: 300px;
  6718. overflow-y: scroll;
  6719. }
  6720. /*
  6721. * Box with scrolling enabled
  6722. */
  6723. .uk-scrollable-box {
  6724. max-height: 150px;
  6725. padding: 10px;
  6726. border: 1px solid #dddddd;
  6727. overflow: auto;
  6728. border-radius: 3px;
  6729. }
  6730. /*
  6731. * Remove margin from the last-child
  6732. */
  6733. .uk-scrollable-box > :last-child {
  6734. margin-bottom: 0;
  6735. }
  6736. /* Display
  6737. ========================================================================== */
  6738. /*
  6739. * Display
  6740. */
  6741. .uk-display-block {
  6742. display: block !important;
  6743. }
  6744. .uk-display-inline {
  6745. display: inline !important;
  6746. }
  6747. .uk-display-inline-block {
  6748. display: inline-block !important;
  6749. }
  6750. /*
  6751. * Visibility
  6752. * Avoids setting display to `block`
  6753. */
  6754. /* Only desktops */
  6755. @media (min-width: 960px) {
  6756. .uk-visible-small {
  6757. display: none !important;
  6758. }
  6759. .uk-visible-medium {
  6760. display: none !important;
  6761. }
  6762. .uk-hidden-large {
  6763. display: none !important;
  6764. }
  6765. }
  6766. /* Only tablets portrait */
  6767. @media (min-width: 768px) and (max-width: 959px) {
  6768. .uk-visible-small {
  6769. display: none !important;
  6770. }
  6771. .uk-visible-large {
  6772. display: none !important ;
  6773. }
  6774. .uk-hidden-medium {
  6775. display: none !important;
  6776. }
  6777. }
  6778. /* Only phones */
  6779. @media (max-width: 767px) {
  6780. .uk-visible-medium {
  6781. display: none !important;
  6782. }
  6783. .uk-visible-large {
  6784. display: none !important;
  6785. }
  6786. .uk-hidden-small {
  6787. display: none !important;
  6788. }
  6789. }
  6790. /* Remove from the flow and screen readers on any device */
  6791. .uk-hidden {
  6792. display: none !important;
  6793. visibility: hidden !important;
  6794. }
  6795. /* Show on hover */
  6796. .uk-visible-hover:hover .uk-hidden {
  6797. display: block !important;
  6798. visibility: visible !important;
  6799. }
  6800. .uk-visible-hover-inline:hover .uk-hidden {
  6801. display: inline-block !important;
  6802. visibility: visible !important;
  6803. }
  6804. /* Hooks
  6805. ========================================================================== */
  6806. /*
  6807. * Component: Print
  6808. * Description: Optimize page for printing
  6809. *
  6810. * Adapted from http://github.com/h5bp/html5-boilerplate
  6811. *
  6812. * Modifications: Removed link `href` and `title` related rules
  6813. *
  6814. ========================================================================== */
  6815. @media print {
  6816. * {
  6817. background: transparent !important;
  6818. color: black !important;
  6819. box-shadow: none !important;
  6820. text-shadow: none !important;
  6821. }
  6822. a,
  6823. a:visited {
  6824. text-decoration: underline;
  6825. }
  6826. pre,
  6827. blockquote {
  6828. border: 1px solid #999;
  6829. page-break-inside: avoid;
  6830. }
  6831. thead {
  6832. display: table-header-group;
  6833. }
  6834. tr,
  6835. img {
  6836. page-break-inside: avoid;
  6837. }
  6838. img {
  6839. max-width: 100% !important;
  6840. }
  6841. @page {
  6842. margin: 0.5cm;
  6843. }
  6844. p,
  6845. h2,
  6846. h3 {
  6847. orphans: 3;
  6848. widows: 3;
  6849. }
  6850. h2,
  6851. h3 {
  6852. page-break-after: avoid;
  6853. }
  6854. }
  6855. /* Theme
  6856. ========================================================================== */
  6857. /* LESS related */
  6858. /*
  6859. * Variables component
  6860. *
  6861. ========================================================================== */
  6862. /* Global variables
  6863. ========================================================================== */
  6864. /* Theme variables
  6865. ========================================================================== */
  6866. /*
  6867. * Backgrounds
  6868. */
  6869. /*
  6870. * Borders
  6871. */
  6872. /*
  6873. * Text shadows
  6874. */
  6875. /* Components variables
  6876. ========================================================================== */
  6877. /*
  6878. * Base
  6879. */
  6880. /*
  6881. * Panel
  6882. */
  6883. /*
  6884. * Comment
  6885. */
  6886. /*
  6887. * Nav
  6888. */
  6889. /*
  6890. * Navbar
  6891. */
  6892. /*
  6893. * Subnav
  6894. */
  6895. /*
  6896. * Pagination
  6897. */
  6898. /*
  6899. * Tab
  6900. */
  6901. /*
  6902. * List
  6903. */
  6904. /*
  6905. * Table
  6906. */
  6907. /*
  6908. * Form
  6909. */
  6910. /*
  6911. * Button
  6912. */
  6913. /*
  6914. * Icon
  6915. */
  6916. /*
  6917. * Close
  6918. */
  6919. /*
  6920. * Progress
  6921. */
  6922. /*
  6923. * Dropdown
  6924. */
  6925. /* Theme component variables
  6926. ========================================================================== */
  6927. /*
  6928. * Base
  6929. */
  6930. /*
  6931. * Panel
  6932. */
  6933. /*
  6934. * Article
  6935. */
  6936. /*
  6937. * Comment
  6938. */
  6939. /*
  6940. * Nav
  6941. */
  6942. /*
  6943. * Navbar
  6944. */
  6945. /*
  6946. * Pagination
  6947. */
  6948. /*
  6949. * Tab
  6950. */
  6951. /*
  6952. * List
  6953. */
  6954. /*
  6955. * Table
  6956. */
  6957. /*
  6958. * Button
  6959. */
  6960. /*
  6961. * Icon
  6962. */
  6963. /*
  6964. * Badge
  6965. */
  6966. /*
  6967. * Alert
  6968. */
  6969. /*
  6970. * Progress
  6971. */
  6972. /*
  6973. * Dropdown
  6974. */
  6975. /*
  6976. * Offcanvas
  6977. */
  6978. /*
  6979. * Tooltip
  6980. */
  6981. /* Defaults */
  6982. /*
  6983. * Base component
  6984. *
  6985. ========================================================================== */
  6986. /* Body
  6987. ========================================================================== */
  6988. /* Code and preformatted text
  6989. ========================================================================== */
  6990. /* Layout */
  6991. /*
  6992. * Panel component
  6993. *
  6994. ========================================================================== */
  6995. /* Component
  6996. ========================================================================== */
  6997. /* Sub-object: `uk-panel-title`
  6998. ========================================================================== */
  6999. /* Sub-object: `uk-panel-badge`
  7000. ========================================================================== */
  7001. /* Modifier: `uk-panel-box`
  7002. ========================================================================== */
  7003. /* Modifier: `uk-panel-header`
  7004. ========================================================================== */
  7005. /*
  7006. * Article component
  7007. *
  7008. ========================================================================== */
  7009. /* Component
  7010. ========================================================================== */
  7011. .uk-article + .uk-article {
  7012. padding-top: 15px;
  7013. border-top: 1px solid #dddddd;
  7014. }
  7015. /* Sub-object `uk-article-title`
  7016. ========================================================================== */
  7017. /* Sub-object `uk-article-meta`
  7018. ========================================================================== */
  7019. /* Sub-object `uk-article-lead`
  7020. ========================================================================== */
  7021. /* Sub-object `uk-article-divider`
  7022. ========================================================================== */
  7023. /*
  7024. * Comment component
  7025. *
  7026. ========================================================================== */
  7027. /* Component
  7028. ========================================================================== */
  7029. /* Sub-object `uk-comment-header`
  7030. ========================================================================== */
  7031. /* Sub-object `uk-comment-avatar`
  7032. ========================================================================== */
  7033. /* Sub-object `uk-comment-title`
  7034. ========================================================================== */
  7035. /* Sub-object `uk-comment-meta`
  7036. ========================================================================== */
  7037. /* Sub-object `uk-comment-body`
  7038. ========================================================================== */
  7039. .uk-comment-body {
  7040. padding-left: 10px;
  7041. padding-right: 10px;
  7042. }
  7043. /* Navs */
  7044. /*
  7045. * Nav component
  7046. *
  7047. ========================================================================== */
  7048. /* Component
  7049. ========================================================================== */
  7050. /* Sub-object: `uk-nav-header`
  7051. ========================================================================== */
  7052. /* Sub-object: `uk-nav-divider`
  7053. ========================================================================== */
  7054. /* Sub-object: `uk-nav-sub`
  7055. ========================================================================== */
  7056. /* Modifier: `uk-nav-parent-icon`
  7057. ========================================================================== */
  7058. /* Modifier `uk-nav-side`
  7059. ========================================================================== */
  7060. /*
  7061. * Items
  7062. */
  7063. /* Hover */
  7064. /* Active */
  7065. /*
  7066. * Sub-object: `uk-nav-header`
  7067. */
  7068. /*
  7069. * Sub-object: `uk-nav-divider`
  7070. */
  7071. /* Modifier `uk-nav-dropdown`
  7072. ========================================================================== */
  7073. /*
  7074. * Items
  7075. */
  7076. /* Hover */
  7077. /*
  7078. * Sub-object: `uk-nav-header`
  7079. */
  7080. /*
  7081. * Sub-object: `uk-nav-divider`
  7082. */
  7083. /* Modifier `uk-nav-navbar`
  7084. ========================================================================== */
  7085. /*
  7086. * Items
  7087. */
  7088. /* Hover */
  7089. /*
  7090. * Sub-object: `uk-nav-header`
  7091. */
  7092. /*
  7093. * Sub-object: `uk-nav-divider`
  7094. */
  7095. /* Modifier `uk-nav-search`
  7096. ========================================================================== */
  7097. /*
  7098. * Items
  7099. */
  7100. /* Active */
  7101. /*
  7102. * Sub-object: `uk-nav-header`
  7103. */
  7104. /*
  7105. * Sub-object: `uk-nav-divider`
  7106. */
  7107. /* Modifier `uk-nav-offcanvas`
  7108. ========================================================================== */
  7109. .uk-nav-offcanvas {
  7110. border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  7111. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  7112. }
  7113. /*
  7114. * Items
  7115. */
  7116. /* Active */
  7117. /*
  7118. * Sub-object: `uk-nav-header`
  7119. */
  7120. /*
  7121. * Sub-object: `uk-nav-divider`
  7122. */
  7123. /*
  7124. * Sub-object: `uk-nav-sub`
  7125. */
  7126. .uk-nav-offcanvas .uk-nav-sub {
  7127. border-top: 1px solid rgba(0, 0, 0, 0.3);
  7128. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  7129. }
  7130. /*
  7131. * Navbar component
  7132. *
  7133. ========================================================================== */
  7134. /* Component
  7135. ========================================================================== */
  7136. .uk-navbar:not(.uk-navbar-attached) {
  7137. border-radius: 4px;
  7138. }
  7139. /* Sub-object: `uk-navbar-nav`
  7140. ========================================================================== */
  7141. /*
  7142. * 1. Overlap top border
  7143. * 2. Collapse horizontal borders
  7144. * 3. Adjust height because of 1. and `box-sizing` set to `border-box`
  7145. */
  7146. /*
  7147. * Apply same `border-radius` as `uk-navbar`
  7148. */
  7149. .uk-navbar:not(.uk-navbar-attached) .uk-navbar-nav:first-child > li:first-child > a {
  7150. border-top-left-radius: 4px;
  7151. border-bottom-left-radius: 4px;
  7152. }
  7153. /*
  7154. * Sub-modifier `uk-navbar-flip`
  7155. */
  7156. /* Collapse border */
  7157. .uk-navbar .uk-navbar-flip .uk-navbar-nav > li > a {
  7158. margin-left: 0;
  7159. margin-right: -1px;
  7160. }
  7161. /* Apply same `border-radius` as `uk-navbar` */
  7162. .uk-navbar .uk-navbar-flip .uk-navbar-nav:first-child > li:first-child > a {
  7163. border-top-left-radius: 0;
  7164. border-bottom-left-radius: 0;
  7165. }
  7166. .uk-navbar:not(.uk-navbar-attached) .uk-navbar-flip .uk-navbar-nav:last-child > li:last-child > a {
  7167. border-top-right-radius: 4px;
  7168. border-bottom-right-radius: 4px;
  7169. }
  7170. /*
  7171. * Needed for hover
  7172. * 1. Create position context to superimpose the successor elements border
  7173. * 2. Needed because the `li` elements have already a position context
  7174. */
  7175. /* Hover *//* OnClick *//* Active *//* Sub-object: `uk-navbar-content`
  7176. ========================================================================== */
  7177. /*
  7178. * Subnav component
  7179. *
  7180. ========================================================================== */
  7181. /* Component
  7182. ========================================================================== */
  7183. /* Modifier: `uk-subnav-line'
  7184. ========================================================================== */
  7185. /* Modifier: `uk-subnav-pill'
  7186. ========================================================================== */
  7187. /* Hover */
  7188. /* Active */
  7189. /*
  7190. * Breadcrumb component
  7191. *
  7192. ========================================================================== */
  7193. /* Component
  7194. ========================================================================== */
  7195. /* Items
  7196. ========================================================================== */
  7197. /*
  7198. * Pagination component
  7199. *
  7200. ========================================================================== */
  7201. /* Component
  7202. ========================================================================== */
  7203. /* Items
  7204. ========================================================================== */
  7205. /*
  7206. * Active
  7207. */
  7208. /*
  7209. * Disabled
  7210. */
  7211. /*
  7212. * Tab component
  7213. *
  7214. ========================================================================== */
  7215. /* Component
  7216. ========================================================================== */
  7217. /*
  7218. * Items
  7219. */
  7220. /* Hover */
  7221. /* Active */
  7222. /* Disabled */
  7223. /* Modifier: `uk-tab-bottom'
  7224. ========================================================================== */
  7225. .uk-tab-bottom > li > a {
  7226. border-radius: 0 0 4px 4px;
  7227. }
  7228. /* Modifier: `uk-tab-left', `uk-tab-right'
  7229. ========================================================================== */
  7230. /* Only tablets and desktops */
  7231. @media (min-width: 768px) {
  7232. /*
  7233. * Modifier: `uk-tab-left'
  7234. */
  7235. .uk-tab-left > li > a {
  7236. border-radius: 4px 0 0 4px;
  7237. }
  7238. /*
  7239. * Modifier: `uk-tab-right'
  7240. */
  7241. .uk-tab-right > li > a {
  7242. border-radius: 0 4px 4px 0;
  7243. }
  7244. }
  7245. /* Elements */
  7246. /*
  7247. * List component
  7248. *
  7249. ========================================================================== */
  7250. /* Component
  7251. ========================================================================== */
  7252. /* Modifier: `list-line`
  7253. ========================================================================== */
  7254. /* Modifier: `list-striped`
  7255. ========================================================================== */
  7256. .uk-list-striped > li:first-child {
  7257. border-top: 1px solid #dddddd;
  7258. }
  7259. /*
  7260. * Table component
  7261. *
  7262. ========================================================================== */
  7263. /* Component
  7264. ========================================================================== */
  7265. /*
  7266. * Form component
  7267. *
  7268. ========================================================================== */
  7269. /* Component
  7270. ========================================================================== */
  7271. /* Common */
  7272. /*
  7273. * Button component
  7274. *
  7275. ========================================================================== */
  7276. /* Component
  7277. ========================================================================== */
  7278. /* Color modifiers
  7279. ========================================================================== */
  7280. .uk-button-primary,
  7281. .uk-button-success,
  7282. .uk-button-danger {
  7283. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  7284. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  7285. }
  7286. .uk-button-primary:hover,
  7287. .uk-button-primary:focus,
  7288. .uk-button-success:hover,
  7289. .uk-button-success:focus,
  7290. .uk-button-danger:hover,
  7291. .uk-button-danger:focus {
  7292. border-color: rgba(0, 0, 0, 0.21);
  7293. }
  7294. /* Disabled state
  7295. ========================================================================== */
  7296. /* Modifier: `uk-button-link`
  7297. ========================================================================== */
  7298. /* Size modifiers
  7299. ========================================================================== */
  7300. /* Sub-object `uk-button-group`
  7301. ========================================================================== */
  7302. /*
  7303. * Reset border-radius
  7304. */
  7305. .uk-button-group > .uk-button:not(:first-child):not(:last-child),
  7306. .uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
  7307. border-left-color: rgba(0, 0, 0, 0.1);
  7308. border-right-color: rgba(0, 0, 0, 0.1);
  7309. border-radius: 0;
  7310. }
  7311. .uk-button-group > .uk-button:first-child,
  7312. .uk-button-group > div:first-child .uk-button {
  7313. border-right-color: rgba(0, 0, 0, 0.1);
  7314. border-top-right-radius: 0;
  7315. border-bottom-right-radius: 0;
  7316. }
  7317. .uk-button-group > .uk-button:last-child,
  7318. .uk-button-group > div:last-child .uk-button {
  7319. border-left-color: rgba(0, 0, 0, 0.1);
  7320. border-top-left-radius: 0;
  7321. border-bottom-left-radius: 0;
  7322. }
  7323. /*
  7324. * Collapse border
  7325. */
  7326. .uk-button-group > .uk-button:nth-child(n+2),
  7327. .uk-button-group > div:nth-child(n+2) .uk-button {
  7328. margin-left: -1px;
  7329. }
  7330. /*
  7331. * Create position context to superimpose the successor elements border
  7332. * Known issue: If you use an `a` element as button and an icon inside,
  7333. * the active state will not work if you click the icon inside the button
  7334. * Workaround: Just use a `button` or `input` element as button
  7335. */
  7336. .uk-button-group .uk-button:hover,
  7337. .uk-button-group .uk-button:active {
  7338. position: relative;
  7339. }
  7340. /*
  7341. * Icon component
  7342. *
  7343. ========================================================================== */
  7344. /* Component
  7345. ========================================================================== */
  7346. /* Modifier: `uk-icon-button`
  7347. ========================================================================== */
  7348. /* Hover */
  7349. /* Active */
  7350. /*
  7351. * Close component
  7352. *
  7353. ========================================================================== */
  7354. /* Component
  7355. ========================================================================== */
  7356. /* Modifier: `uk-close-alt`
  7357. ========================================================================== */
  7358. /*
  7359. * Badge component
  7360. *
  7361. ========================================================================== */
  7362. /* Component
  7363. ========================================================================== */
  7364. /*
  7365. * Alert component
  7366. *
  7367. ========================================================================== */
  7368. /* Component
  7369. ========================================================================== */
  7370. /* Modifier: `uk-alert-success`
  7371. ========================================================================== */
  7372. /* Modifier: `uk-alert-warning`
  7373. ========================================================================== */
  7374. /* Modifier: `uk-alert-danger`
  7375. ========================================================================== */
  7376. /*
  7377. * Thumbnail component
  7378. *
  7379. ========================================================================== */
  7380. /* Component
  7381. ========================================================================== */
  7382. /* Caption
  7383. ========================================================================== */
  7384. /*
  7385. * Overlay component
  7386. *
  7387. ========================================================================== */
  7388. /* Component
  7389. ========================================================================== */
  7390. /* Sub-object `uk-overlay-area`
  7391. ========================================================================== */
  7392. /* Sub-object `uk-overlay-caption`
  7393. ========================================================================== */
  7394. /*
  7395. * Progress component
  7396. *
  7397. ========================================================================== */
  7398. /* Component
  7399. ========================================================================== */
  7400. /* Sub-object: `progress-bar`
  7401. ========================================================================== */
  7402. /* Size modifiers
  7403. ========================================================================== */
  7404. /* Mini */
  7405. .uk-progress-mini,
  7406. .uk-progress-small {
  7407. border-radius: 500px;
  7408. }
  7409. /*
  7410. * Search component
  7411. *
  7412. ========================================================================== */
  7413. /* Component
  7414. ========================================================================== */
  7415. /* Sub-object `uk-search-field`
  7416. ========================================================================== */
  7417. /* Sub-object `uk-search-close`
  7418. ========================================================================== */
  7419. /* JavaScript */
  7420. /*
  7421. * Dropdown component
  7422. *
  7423. ========================================================================== */
  7424. /* Component
  7425. ========================================================================== */
  7426. /* Modifier: `uk-dropdown-navbar`
  7427. ========================================================================== */
  7428. .uk-dropdown-navbar.uk-dropdown-flip {
  7429. left: auto;
  7430. }
  7431. /* Modifier: `uk-dropdown-search`
  7432. ========================================================================== */
  7433. /*
  7434. * Modal component
  7435. *
  7436. ========================================================================== */
  7437. /* Component
  7438. ========================================================================== */
  7439. /* Sub-object: `uk-modal-dialog`
  7440. ========================================================================== */
  7441. /*
  7442. * Off-canvas component
  7443. *
  7444. ========================================================================== */
  7445. /* Component
  7446. ========================================================================== */
  7447. /* Sub-object `uk-offcanvas-bar`
  7448. ========================================================================== */
  7449. .uk-offcanvas-bar:after {
  7450. content: "";
  7451. display: block;
  7452. position: absolute;
  7453. top: 0;
  7454. bottom: 0;
  7455. right: 0;
  7456. width: 1px;
  7457. background: rgba(0, 0, 0, 0.6);
  7458. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
  7459. }
  7460. .uk-offcanvas-bar-flip:after {
  7461. right: auto;
  7462. left: 0;
  7463. width: 1px;
  7464. background: rgba(0, 0, 0, 0.6);
  7465. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.6);
  7466. }
  7467. /* Panel in offcanvas
  7468. ========================================================================== */
  7469. /* Search in offcanvas
  7470. ========================================================================== */
  7471. /*
  7472. * Tooltip component
  7473. *
  7474. ========================================================================== */
  7475. /* Component
  7476. ========================================================================== */
  7477. /* Need to be loaded last */
  7478. /*
  7479. * Utility component
  7480. *
  7481. ========================================================================== */
  7482. /* Component
  7483. ========================================================================== */
  7484. /* Container
  7485. ========================================================================== */
  7486. /* Scrollable
  7487. ========================================================================== */