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.

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