DotaNoobs main site.
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.

6822 lines
140 KiB

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