uikit-reset 2.1.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/uikit/reset/version.rb +1 -1
- data/vendor/assets/javascripts/uikit-reset.js +1696 -1594
- data/vendor/assets/stylesheets/uikit-reset.scss +438 -202
- metadata +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 3.
|
1
|
+
/*! UIkit 3.3.0 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
|
2
2
|
/* ========================================================================
|
3
3
|
Component: Base
|
4
4
|
========================================================================== */
|
@@ -30,13 +30,6 @@ body {
|
|
30
30
|
|
31
31
|
/* Links
|
32
32
|
========================================================================== */
|
33
|
-
/*
|
34
|
-
* Remove gaps in links underline in iOS 8+ and Safari 8+.
|
35
|
-
*/
|
36
|
-
a {
|
37
|
-
-webkit-text-decoration-skip: objects;
|
38
|
-
}
|
39
|
-
|
40
33
|
/*
|
41
34
|
* Remove the outline on focused links when they are also active or hovered
|
42
35
|
*/
|
@@ -56,7 +49,9 @@ a,
|
|
56
49
|
}
|
57
50
|
|
58
51
|
a:hover,
|
59
|
-
.uk-link:hover
|
52
|
+
.uk-link:hover,
|
53
|
+
.uk-link-toggle:hover .uk-link,
|
54
|
+
.uk-link-toggle:focus .uk-link {
|
60
55
|
color: #0f6ecd;
|
61
56
|
text-decoration: underline;
|
62
57
|
}
|
@@ -64,13 +59,12 @@ a:hover,
|
|
64
59
|
/* Text-level semantics
|
65
60
|
========================================================================== */
|
66
61
|
/*
|
67
|
-
* 1. Add
|
68
|
-
* 2.
|
69
|
-
* Note: The shorthand declaration `underline dotted` is not supported in Safari, Edge and IE.
|
62
|
+
* 1. Add the correct text decoration in Edge.
|
63
|
+
* 2. The shorthand declaration `underline dotted` is not supported in Safari.
|
70
64
|
*/
|
71
65
|
abbr[title] {
|
72
66
|
/* 1 */
|
73
|
-
text-decoration: underline;
|
67
|
+
text-decoration: underline dotted;
|
74
68
|
/* 2 */
|
75
69
|
-webkit-text-decoration-style: dotted;
|
76
70
|
}
|
@@ -207,10 +201,14 @@ svg:not(:root) {
|
|
207
201
|
}
|
208
202
|
|
209
203
|
/*
|
210
|
-
*
|
211
|
-
*
|
204
|
+
* 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
|
205
|
+
* 2. Hide `alt` text for lazy loading images.
|
206
|
+
* Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
|
212
207
|
*/
|
213
208
|
img:not([src]) {
|
209
|
+
/* 1 */
|
210
|
+
min-width: 1px;
|
211
|
+
/* 2 */
|
214
212
|
visibility: hidden;
|
215
213
|
}
|
216
214
|
|
@@ -380,21 +378,17 @@ dd {
|
|
380
378
|
/* Horizontal rules
|
381
379
|
========================================================================== */
|
382
380
|
/*
|
383
|
-
* 1.
|
384
|
-
* 2.
|
385
|
-
* 3.
|
386
|
-
* 4. Style
|
381
|
+
* 1. Show the overflow in Chrome, Edge and IE.
|
382
|
+
* 2. Add the correct text-align in Edge and IE.
|
383
|
+
* 3. Style
|
387
384
|
*/
|
388
385
|
hr,
|
389
386
|
.uk-hr {
|
390
387
|
/* 1 */
|
391
|
-
box-sizing: content-box;
|
392
|
-
height: 0;
|
393
|
-
/* 2 */
|
394
388
|
overflow: visible;
|
395
|
-
/*
|
389
|
+
/* 2 */
|
396
390
|
text-align: inherit;
|
397
|
-
/*
|
391
|
+
/* 3 */
|
398
392
|
margin: 0 0 20px 0;
|
399
393
|
border: 0;
|
400
394
|
border-top: 1px solid #e5e5e5;
|
@@ -540,31 +534,37 @@ a.uk-link-muted,
|
|
540
534
|
}
|
541
535
|
|
542
536
|
a.uk-link-muted:hover,
|
543
|
-
.uk-link-muted a:hover
|
537
|
+
.uk-link-muted a:hover,
|
538
|
+
.uk-link-toggle:hover .uk-link-muted,
|
539
|
+
.uk-link-toggle:focus .uk-link-muted {
|
544
540
|
color: #666;
|
545
541
|
}
|
546
542
|
|
547
543
|
/* Text
|
548
544
|
========================================================================== */
|
549
|
-
a.uk-link-text
|
550
|
-
.uk-link-text a
|
545
|
+
a.uk-link-text,
|
546
|
+
.uk-link-text a {
|
551
547
|
color: inherit;
|
552
548
|
}
|
553
549
|
|
554
550
|
a.uk-link-text:hover,
|
555
|
-
.uk-link-text a:hover
|
551
|
+
.uk-link-text a:hover,
|
552
|
+
.uk-link-toggle:hover .uk-link-text,
|
553
|
+
.uk-link-toggle:focus .uk-link-text {
|
556
554
|
color: #999;
|
557
555
|
}
|
558
556
|
|
559
557
|
/* Heading
|
560
558
|
========================================================================== */
|
561
|
-
a.uk-link-heading
|
562
|
-
.uk-link-heading a
|
559
|
+
a.uk-link-heading,
|
560
|
+
.uk-link-heading a {
|
563
561
|
color: inherit;
|
564
562
|
}
|
565
563
|
|
566
564
|
a.uk-link-heading:hover,
|
567
|
-
.uk-link-heading a:hover
|
565
|
+
.uk-link-heading a:hover,
|
566
|
+
.uk-link-toggle:hover .uk-link-heading,
|
567
|
+
.uk-link-toggle:focus .uk-link-heading {
|
568
568
|
color: #1e87f0;
|
569
569
|
text-decoration: none;
|
570
570
|
}
|
@@ -575,13 +575,22 @@ a.uk-link-heading:hover,
|
|
575
575
|
* `!important` needed to override inverse component
|
576
576
|
*/
|
577
577
|
a.uk-link-reset,
|
578
|
-
|
579
|
-
.uk-link-reset a,
|
580
|
-
.uk-link-reset a:hover {
|
578
|
+
.uk-link-reset a {
|
581
579
|
color: inherit !important;
|
582
580
|
text-decoration: none !important;
|
583
581
|
}
|
584
582
|
|
583
|
+
/* Toggle
|
584
|
+
========================================================================== */
|
585
|
+
.uk-link-toggle {
|
586
|
+
color: inherit !important;
|
587
|
+
text-decoration: none !important;
|
588
|
+
}
|
589
|
+
|
590
|
+
.uk-link-toggle:focus {
|
591
|
+
outline: none;
|
592
|
+
}
|
593
|
+
|
585
594
|
/* ========================================================================
|
586
595
|
Component: Heading
|
587
596
|
========================================================================== */
|
@@ -655,54 +664,17 @@ a.uk-link-reset:hover,
|
|
655
664
|
/* Primary
|
656
665
|
Deprecated: Use `uk-heading-medium` instead
|
657
666
|
========================================================================== */
|
658
|
-
.uk-heading-primary {
|
659
|
-
font-size: 3rem;
|
660
|
-
line-height: 1.2;
|
661
|
-
}
|
662
|
-
|
663
667
|
/* Tablet landscape and bigger */
|
664
|
-
@media (min-width: 960px) {
|
665
|
-
.uk-heading-primary {
|
666
|
-
font-size: 3.375rem;
|
667
|
-
}
|
668
|
-
}
|
669
|
-
|
670
668
|
/* Desktop and bigger */
|
671
|
-
@media (min-width: 1200px) {
|
672
|
-
.uk-heading-primary {
|
673
|
-
font-size: 3.75rem;
|
674
|
-
line-height: 1.1;
|
675
|
-
}
|
676
|
-
}
|
677
|
-
|
678
669
|
/* Hero
|
679
670
|
Deprecated: Use `uk-heading-xlarge` instead
|
680
671
|
========================================================================== */
|
681
|
-
.uk-heading-hero {
|
682
|
-
font-size: 4rem;
|
683
|
-
line-height: 1.1;
|
684
|
-
}
|
685
|
-
|
686
672
|
/* Tablet landscape and bigger */
|
687
|
-
@media (min-width: 960px) {
|
688
|
-
.uk-heading-hero {
|
689
|
-
font-size: 6rem;
|
690
|
-
line-height: 1;
|
691
|
-
}
|
692
|
-
}
|
693
|
-
|
694
673
|
/* Desktop and bigger */
|
695
|
-
@media (min-width: 1200px) {
|
696
|
-
.uk-heading-hero {
|
697
|
-
font-size: 8rem;
|
698
|
-
line-height: 1;
|
699
|
-
}
|
700
|
-
}
|
701
|
-
|
702
674
|
/* Divider
|
703
675
|
========================================================================== */
|
704
676
|
.uk-heading-divider {
|
705
|
-
padding-bottom: calc(
|
677
|
+
padding-bottom: calc(5px + 0.1em);
|
706
678
|
border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
|
707
679
|
}
|
708
680
|
|
@@ -758,7 +730,7 @@ a.uk-link-reset:hover,
|
|
758
730
|
content: "";
|
759
731
|
/* 1 */
|
760
732
|
position: absolute;
|
761
|
-
top: calc(50% - (
|
733
|
+
top: calc(50% - ((0.2px + 0.05em) / 2));
|
762
734
|
/* 2 */
|
763
735
|
width: 2000px;
|
764
736
|
/* 3 */
|
@@ -826,13 +798,15 @@ a.uk-link-reset:hover,
|
|
826
798
|
/* Small
|
827
799
|
========================================================================== */
|
828
800
|
/*
|
829
|
-
* Fix height of `
|
830
|
-
*
|
801
|
+
* 1. Fix height because of `inline-block`
|
802
|
+
* 2. Using ::after and inline-block to make `text-align` work
|
831
803
|
*/
|
804
|
+
/* 1 */
|
832
805
|
.uk-divider-small {
|
833
|
-
height:
|
806
|
+
line-height: 0;
|
834
807
|
}
|
835
808
|
|
809
|
+
/* 2 */
|
836
810
|
.uk-divider-small::after {
|
837
811
|
content: "";
|
838
812
|
display: inline-block;
|
@@ -1860,6 +1834,27 @@ select.uk-form-width-xsmall {
|
|
1860
1834
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
1861
1835
|
}
|
1862
1836
|
|
1837
|
+
/* Datalist
|
1838
|
+
========================================================================== */
|
1839
|
+
/*
|
1840
|
+
* 1. Remove default style in Chrome
|
1841
|
+
*/
|
1842
|
+
.uk-input[list] {
|
1843
|
+
padding-right: 20px;
|
1844
|
+
background-repeat: no-repeat;
|
1845
|
+
background-position: 100% 50%;
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
.uk-input[list]:hover,
|
1849
|
+
.uk-input[list]:focus {
|
1850
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
/* 1 */
|
1854
|
+
.uk-input[list]::-webkit-calendar-picker-indicator {
|
1855
|
+
display: none;
|
1856
|
+
}
|
1857
|
+
|
1863
1858
|
/* Radio and checkbox
|
1864
1859
|
* Note: Does not work in IE11
|
1865
1860
|
========================================================================== */
|
@@ -2145,11 +2140,12 @@ select.uk-form-width-xsmall {
|
|
2145
2140
|
* 3. Address `overflow` set to `hidden` in IE.
|
2146
2141
|
* 4. Correct `font` properties and `color` not being inherited for `button`.
|
2147
2142
|
* 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
|
2148
|
-
* 6.
|
2149
|
-
* 7.
|
2143
|
+
* 6. Remove default style for `input type="submit"`in iOS.
|
2144
|
+
* 7. Style
|
2145
|
+
* 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
|
2150
2146
|
* Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
|
2151
|
-
*
|
2152
|
-
*
|
2147
|
+
* 9. Align text if button has a width
|
2148
|
+
* 10. Required for `a`.
|
2153
2149
|
*/
|
2154
2150
|
.uk-button {
|
2155
2151
|
/* 1 */
|
@@ -2164,16 +2160,19 @@ select.uk-form-width-xsmall {
|
|
2164
2160
|
/* 5 */
|
2165
2161
|
text-transform: none;
|
2166
2162
|
/* 6 */
|
2163
|
+
-webkit-appearance: none;
|
2164
|
+
border-radius: 0;
|
2165
|
+
/* 7 */
|
2167
2166
|
display: inline-block;
|
2168
2167
|
box-sizing: border-box;
|
2169
2168
|
padding: 0 30px;
|
2170
2169
|
vertical-align: middle;
|
2171
2170
|
font-size: 0.875rem;
|
2172
|
-
/* 7 */
|
2173
|
-
line-height: 38px;
|
2174
2171
|
/* 8 */
|
2175
|
-
|
2172
|
+
line-height: 38px;
|
2176
2173
|
/* 9 */
|
2174
|
+
text-align: center;
|
2175
|
+
/* 10 */
|
2177
2176
|
text-decoration: none;
|
2178
2177
|
text-transform: uppercase;
|
2179
2178
|
transition: 0.1s ease-in-out;
|
@@ -2640,6 +2639,10 @@ select.uk-form-width-xsmall {
|
|
2640
2639
|
}
|
2641
2640
|
|
2642
2641
|
.uk-container-large {
|
2642
|
+
max-width: 1400px;
|
2643
|
+
}
|
2644
|
+
|
2645
|
+
.uk-container-xlarge {
|
2643
2646
|
max-width: 1600px;
|
2644
2647
|
}
|
2645
2648
|
|
@@ -2694,6 +2697,11 @@ select.uk-form-width-xsmall {
|
|
2694
2697
|
|
2695
2698
|
.uk-container-expand-left.uk-container-large,
|
2696
2699
|
.uk-container-expand-right.uk-container-large {
|
2700
|
+
max-width: calc(50% + (1400px / 2) - 40px);
|
2701
|
+
}
|
2702
|
+
|
2703
|
+
.uk-container-expand-left.uk-container-xlarge,
|
2704
|
+
.uk-container-expand-right.uk-container-xlarge {
|
2697
2705
|
max-width: calc(50% + (1600px / 2) - 40px);
|
2698
2706
|
}
|
2699
2707
|
}
|
@@ -2829,17 +2837,21 @@ select.uk-form-width-xsmall {
|
|
2829
2837
|
* Small
|
2830
2838
|
*/
|
2831
2839
|
/* Horizontal */
|
2832
|
-
.uk-grid-small
|
2840
|
+
.uk-grid-small,
|
2841
|
+
.uk-grid-column-small {
|
2833
2842
|
margin-left: -15px;
|
2834
2843
|
}
|
2835
2844
|
|
2836
|
-
.uk-grid-small
|
2845
|
+
.uk-grid-small>*,
|
2846
|
+
.uk-grid-column-small>* {
|
2837
2847
|
padding-left: 15px;
|
2838
2848
|
}
|
2839
2849
|
|
2840
2850
|
/* Vertical */
|
2841
2851
|
.uk-grid+.uk-grid-small,
|
2852
|
+
.uk-grid+.uk-grid-row-small,
|
2842
2853
|
.uk-grid-small>.uk-grid-margin,
|
2854
|
+
.uk-grid-row-small>.uk-grid-margin,
|
2843
2855
|
*+.uk-grid-margin-small {
|
2844
2856
|
margin-top: 15px;
|
2845
2857
|
}
|
@@ -2848,17 +2860,21 @@ select.uk-form-width-xsmall {
|
|
2848
2860
|
* Medium
|
2849
2861
|
*/
|
2850
2862
|
/* Horizontal */
|
2851
|
-
.uk-grid-medium
|
2863
|
+
.uk-grid-medium,
|
2864
|
+
.uk-grid-column-medium {
|
2852
2865
|
margin-left: -30px;
|
2853
2866
|
}
|
2854
2867
|
|
2855
|
-
.uk-grid-medium
|
2868
|
+
.uk-grid-medium>*,
|
2869
|
+
.uk-grid-column-medium>* {
|
2856
2870
|
padding-left: 30px;
|
2857
2871
|
}
|
2858
2872
|
|
2859
2873
|
/* Vertical */
|
2860
2874
|
.uk-grid+.uk-grid-medium,
|
2875
|
+
.uk-grid+.uk-grid-row-medium,
|
2861
2876
|
.uk-grid-medium>.uk-grid-margin,
|
2877
|
+
.uk-grid-row-medium>.uk-grid-margin,
|
2862
2878
|
*+.uk-grid-margin-medium {
|
2863
2879
|
margin-top: 30px;
|
2864
2880
|
}
|
@@ -2867,17 +2883,21 @@ select.uk-form-width-xsmall {
|
|
2867
2883
|
* Large
|
2868
2884
|
*/
|
2869
2885
|
/* Horizontal */
|
2870
|
-
.uk-grid-large
|
2886
|
+
.uk-grid-large,
|
2887
|
+
.uk-grid-column-large {
|
2871
2888
|
margin-left: -40px;
|
2872
2889
|
}
|
2873
2890
|
|
2874
|
-
.uk-grid-large
|
2891
|
+
.uk-grid-large>*,
|
2892
|
+
.uk-grid-column-large>* {
|
2875
2893
|
padding-left: 40px;
|
2876
2894
|
}
|
2877
2895
|
|
2878
2896
|
/* Vertical */
|
2879
2897
|
.uk-grid+.uk-grid-large,
|
2898
|
+
.uk-grid+.uk-grid-row-large,
|
2880
2899
|
.uk-grid-large>.uk-grid-margin,
|
2900
|
+
.uk-grid-row-large>.uk-grid-margin,
|
2881
2901
|
*+.uk-grid-margin-large {
|
2882
2902
|
margin-top: 40px;
|
2883
2903
|
}
|
@@ -2886,17 +2906,21 @@ select.uk-form-width-xsmall {
|
|
2886
2906
|
@media (min-width: 1200px) {
|
2887
2907
|
|
2888
2908
|
/* Horizontal */
|
2889
|
-
.uk-grid-large
|
2909
|
+
.uk-grid-large,
|
2910
|
+
.uk-grid-column-large {
|
2890
2911
|
margin-left: -70px;
|
2891
2912
|
}
|
2892
2913
|
|
2893
|
-
.uk-grid-large
|
2914
|
+
.uk-grid-large>*,
|
2915
|
+
.uk-grid-column-large>* {
|
2894
2916
|
padding-left: 70px;
|
2895
2917
|
}
|
2896
2918
|
|
2897
2919
|
/* Vertical */
|
2898
2920
|
.uk-grid+.uk-grid-large,
|
2921
|
+
.uk-grid+.uk-grid-row-large,
|
2899
2922
|
.uk-grid-large>.uk-grid-margin,
|
2923
|
+
.uk-grid-row-large>.uk-grid-margin,
|
2900
2924
|
*+.uk-grid-margin-large {
|
2901
2925
|
margin-top: 70px;
|
2902
2926
|
}
|
@@ -2906,17 +2930,21 @@ select.uk-form-width-xsmall {
|
|
2906
2930
|
* Collapse
|
2907
2931
|
*/
|
2908
2932
|
/* Horizontal */
|
2909
|
-
.uk-grid-collapse
|
2933
|
+
.uk-grid-collapse,
|
2934
|
+
.uk-grid-column-collapse {
|
2910
2935
|
margin-left: 0;
|
2911
2936
|
}
|
2912
2937
|
|
2913
|
-
.uk-grid-collapse
|
2938
|
+
.uk-grid-collapse>*,
|
2939
|
+
.uk-grid-column-collapse>* {
|
2914
2940
|
padding-left: 0;
|
2915
2941
|
}
|
2916
2942
|
|
2917
2943
|
/* Vertical */
|
2918
2944
|
.uk-grid+.uk-grid-collapse,
|
2919
|
-
.uk-grid
|
2945
|
+
.uk-grid+.uk-grid-row-collapse,
|
2946
|
+
.uk-grid-collapse>.uk-grid-margin,
|
2947
|
+
.uk-grid-row-collapse>.uk-grid-margin {
|
2920
2948
|
margin-top: 0;
|
2921
2949
|
}
|
2922
2950
|
|
@@ -3000,20 +3028,24 @@ select.uk-form-width-xsmall {
|
|
3000
3028
|
* Small
|
3001
3029
|
*/
|
3002
3030
|
/* Horizontal */
|
3003
|
-
.uk-grid-divider.uk-grid-small
|
3031
|
+
.uk-grid-divider.uk-grid-small,
|
3032
|
+
.uk-grid-divider.uk-grid-column-small {
|
3004
3033
|
margin-left: -30px;
|
3005
3034
|
}
|
3006
3035
|
|
3007
|
-
.uk-grid-divider.uk-grid-small
|
3036
|
+
.uk-grid-divider.uk-grid-small>*,
|
3037
|
+
.uk-grid-divider.uk-grid-column-small>* {
|
3008
3038
|
padding-left: 30px;
|
3009
3039
|
}
|
3010
3040
|
|
3011
|
-
.uk-grid-divider.uk-grid-small> :not(.uk-first-column)::before
|
3041
|
+
.uk-grid-divider.uk-grid-small> :not(.uk-first-column)::before,
|
3042
|
+
.uk-grid-divider.uk-grid-column-small> :not(.uk-first-column)::before {
|
3012
3043
|
left: 15px;
|
3013
3044
|
}
|
3014
3045
|
|
3015
3046
|
/* Vertical */
|
3016
|
-
.uk-grid-divider.uk-grid-small.uk-grid-stack>.uk-grid-margin
|
3047
|
+
.uk-grid-divider.uk-grid-small.uk-grid-stack>.uk-grid-margin,
|
3048
|
+
.uk-grid-divider.uk-grid-row-small.uk-grid-stack>.uk-grid-margin {
|
3017
3049
|
margin-top: 30px;
|
3018
3050
|
}
|
3019
3051
|
|
@@ -3022,24 +3054,36 @@ select.uk-form-width-xsmall {
|
|
3022
3054
|
left: 30px;
|
3023
3055
|
}
|
3024
3056
|
|
3057
|
+
.uk-grid-divider.uk-grid-row-small.uk-grid-stack>.uk-grid-margin::before {
|
3058
|
+
top: -15px;
|
3059
|
+
}
|
3060
|
+
|
3061
|
+
.uk-grid-divider.uk-grid-column-small.uk-grid-stack>.uk-grid-margin::before {
|
3062
|
+
left: 30px;
|
3063
|
+
}
|
3064
|
+
|
3025
3065
|
/*
|
3026
3066
|
* Medium
|
3027
3067
|
*/
|
3028
3068
|
/* Horizontal */
|
3029
|
-
.uk-grid-divider.uk-grid-medium
|
3069
|
+
.uk-grid-divider.uk-grid-medium,
|
3070
|
+
.uk-grid-divider.uk-grid-column-medium {
|
3030
3071
|
margin-left: -60px;
|
3031
3072
|
}
|
3032
3073
|
|
3033
|
-
.uk-grid-divider.uk-grid-medium
|
3074
|
+
.uk-grid-divider.uk-grid-medium>*,
|
3075
|
+
.uk-grid-divider.uk-grid-column-medium>* {
|
3034
3076
|
padding-left: 60px;
|
3035
3077
|
}
|
3036
3078
|
|
3037
|
-
.uk-grid-divider.uk-grid-medium> :not(.uk-first-column)::before
|
3079
|
+
.uk-grid-divider.uk-grid-medium> :not(.uk-first-column)::before,
|
3080
|
+
.uk-grid-divider.uk-grid-column-medium> :not(.uk-first-column)::before {
|
3038
3081
|
left: 30px;
|
3039
3082
|
}
|
3040
3083
|
|
3041
3084
|
/* Vertical */
|
3042
|
-
.uk-grid-divider.uk-grid-medium.uk-grid-stack>.uk-grid-margin
|
3085
|
+
.uk-grid-divider.uk-grid-medium.uk-grid-stack>.uk-grid-margin,
|
3086
|
+
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack>.uk-grid-margin {
|
3043
3087
|
margin-top: 60px;
|
3044
3088
|
}
|
3045
3089
|
|
@@ -3048,24 +3092,36 @@ select.uk-form-width-xsmall {
|
|
3048
3092
|
left: 60px;
|
3049
3093
|
}
|
3050
3094
|
|
3095
|
+
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack>.uk-grid-margin::before {
|
3096
|
+
top: -30px;
|
3097
|
+
}
|
3098
|
+
|
3099
|
+
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack>.uk-grid-margin::before {
|
3100
|
+
left: 60px;
|
3101
|
+
}
|
3102
|
+
|
3051
3103
|
/*
|
3052
3104
|
* Large
|
3053
3105
|
*/
|
3054
3106
|
/* Horizontal */
|
3055
|
-
.uk-grid-divider.uk-grid-large
|
3107
|
+
.uk-grid-divider.uk-grid-large,
|
3108
|
+
.uk-grid-divider.uk-grid-column-large {
|
3056
3109
|
margin-left: -80px;
|
3057
3110
|
}
|
3058
3111
|
|
3059
|
-
.uk-grid-divider.uk-grid-large
|
3112
|
+
.uk-grid-divider.uk-grid-large>*,
|
3113
|
+
.uk-grid-divider.uk-grid-column-large>* {
|
3060
3114
|
padding-left: 80px;
|
3061
3115
|
}
|
3062
3116
|
|
3063
|
-
.uk-grid-divider.uk-grid-large> :not(.uk-first-column)::before
|
3117
|
+
.uk-grid-divider.uk-grid-large> :not(.uk-first-column)::before,
|
3118
|
+
.uk-grid-divider.uk-grid-column-large> :not(.uk-first-column)::before {
|
3064
3119
|
left: 40px;
|
3065
3120
|
}
|
3066
3121
|
|
3067
3122
|
/* Vertical */
|
3068
|
-
.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin
|
3123
|
+
.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin,
|
3124
|
+
.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin {
|
3069
3125
|
margin-top: 80px;
|
3070
3126
|
}
|
3071
3127
|
|
@@ -3074,24 +3130,36 @@ select.uk-form-width-xsmall {
|
|
3074
3130
|
left: 80px;
|
3075
3131
|
}
|
3076
3132
|
|
3133
|
+
.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin::before {
|
3134
|
+
top: -40px;
|
3135
|
+
}
|
3136
|
+
|
3137
|
+
.uk-grid-divider.uk-grid-column-large.uk-grid-stack>.uk-grid-margin::before {
|
3138
|
+
left: 80px;
|
3139
|
+
}
|
3140
|
+
|
3077
3141
|
/* Desktop and bigger */
|
3078
3142
|
@media (min-width: 1200px) {
|
3079
3143
|
|
3080
3144
|
/* Horizontal */
|
3081
|
-
.uk-grid-divider.uk-grid-large
|
3145
|
+
.uk-grid-divider.uk-grid-large,
|
3146
|
+
.uk-grid-divider.uk-grid-column-large {
|
3082
3147
|
margin-left: -140px;
|
3083
3148
|
}
|
3084
3149
|
|
3085
|
-
.uk-grid-divider.uk-grid-large
|
3150
|
+
.uk-grid-divider.uk-grid-large>*,
|
3151
|
+
.uk-grid-divider.uk-grid-column-large>* {
|
3086
3152
|
padding-left: 140px;
|
3087
3153
|
}
|
3088
3154
|
|
3089
|
-
.uk-grid-divider.uk-grid-large> :not(.uk-first-column)::before
|
3155
|
+
.uk-grid-divider.uk-grid-large> :not(.uk-first-column)::before,
|
3156
|
+
.uk-grid-divider.uk-grid-column-large> :not(.uk-first-column)::before {
|
3090
3157
|
left: 70px;
|
3091
3158
|
}
|
3092
3159
|
|
3093
3160
|
/* Vertical */
|
3094
|
-
.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin
|
3161
|
+
.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin,
|
3162
|
+
.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin {
|
3095
3163
|
margin-top: 140px;
|
3096
3164
|
}
|
3097
3165
|
|
@@ -3099,6 +3167,14 @@ select.uk-form-width-xsmall {
|
|
3099
3167
|
top: -70px;
|
3100
3168
|
left: 140px;
|
3101
3169
|
}
|
3170
|
+
|
3171
|
+
.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin::before {
|
3172
|
+
top: -70px;
|
3173
|
+
}
|
3174
|
+
|
3175
|
+
.uk-grid-divider.uk-grid-column-large.uk-grid-stack>.uk-grid-margin::before {
|
3176
|
+
left: 140px;
|
3177
|
+
}
|
3102
3178
|
}
|
3103
3179
|
|
3104
3180
|
/* Match child of a grid cell
|
@@ -4545,9 +4621,9 @@ ul.uk-nav-sub {
|
|
4545
4621
|
/*
|
4546
4622
|
* Horizontal alignment
|
4547
4623
|
* 1. Create position context for centered navbar with sub groups (left/right)
|
4548
|
-
* 2.
|
4624
|
+
* 2. Fix text wrapping if content is larger than 50% of the container.
|
4625
|
+
* 3. Needed for dropdowns because a new position context is created
|
4549
4626
|
* `z-index` must be smaller than off-canvas
|
4550
|
-
* 3. Fix text wrapping if the centered section is larger than 50% of the navbar
|
4551
4627
|
* 4. Align sub groups for centered navbar
|
4552
4628
|
*/
|
4553
4629
|
.uk-navbar-right {
|
@@ -4567,16 +4643,12 @@ ul.uk-nav-sub {
|
|
4567
4643
|
left: 50%;
|
4568
4644
|
transform: translate(-50%, -50%);
|
4569
4645
|
/* 2 */
|
4646
|
+
width: max-content;
|
4647
|
+
box-sizing: border-box;
|
4648
|
+
/* 3 */
|
4570
4649
|
z-index: 990;
|
4571
4650
|
}
|
4572
4651
|
|
4573
|
-
/* 3 */
|
4574
|
-
.uk-navbar-center:not(:only-child) .uk-navbar-nav>li>a,
|
4575
|
-
.uk-navbar-center:not(:only-child) .uk-navbar-item,
|
4576
|
-
.uk-navbar-center:not(:only-child) .uk-navbar-toggle {
|
4577
|
-
white-space: nowrap;
|
4578
|
-
}
|
4579
|
-
|
4580
4652
|
/* 4 */
|
4581
4653
|
.uk-navbar-center-left,
|
4582
4654
|
.uk-navbar-center-right {
|
@@ -4592,10 +4664,9 @@ ul.uk-nav-sub {
|
|
4592
4664
|
left: 100%;
|
4593
4665
|
}
|
4594
4666
|
|
4595
|
-
[class*='uk-navbar-center-']
|
4596
|
-
|
4597
|
-
|
4598
|
-
white-space: nowrap;
|
4667
|
+
[class*='uk-navbar-center-'] {
|
4668
|
+
width: max-content;
|
4669
|
+
box-sizing: border-box;
|
4599
4670
|
}
|
4600
4671
|
|
4601
4672
|
/* Nav
|
@@ -6084,7 +6155,7 @@ ul.uk-nav-sub {
|
|
6084
6155
|
}
|
6085
6156
|
|
6086
6157
|
/* 6 */
|
6087
|
-
.uk-
|
6158
|
+
.uk-lightbox-items> :focus {
|
6088
6159
|
outline: none;
|
6089
6160
|
}
|
6090
6161
|
|
@@ -6636,7 +6707,7 @@ ul.uk-nav-sub {
|
|
6636
6707
|
}
|
6637
6708
|
|
6638
6709
|
:root {
|
6639
|
-
--uk-leader-fill-content:
|
6710
|
+
--uk-leader-fill-content: .;
|
6640
6711
|
}
|
6641
6712
|
|
6642
6713
|
/* ========================================================================
|
@@ -7008,6 +7079,7 @@ ul.uk-nav-sub {
|
|
7008
7079
|
========================================================================== */
|
7009
7080
|
.uk-sortable-placeholder {
|
7010
7081
|
opacity: 0;
|
7082
|
+
pointer-events: none;
|
7011
7083
|
}
|
7012
7084
|
|
7013
7085
|
/* Empty modifier
|
@@ -7034,7 +7106,7 @@ ul.uk-nav-sub {
|
|
7034
7106
|
.uk-countdown-number,
|
7035
7107
|
.uk-countdown-separator {
|
7036
7108
|
/* 1 */
|
7037
|
-
line-height:
|
7109
|
+
line-height: 0.8;
|
7038
7110
|
}
|
7039
7111
|
|
7040
7112
|
/* Number
|
@@ -8262,20 +8334,42 @@ ul.uk-nav-sub {
|
|
8262
8334
|
|
8263
8335
|
/* Weight modifier
|
8264
8336
|
========================================================================== */
|
8337
|
+
.uk-text-light {
|
8338
|
+
font-weight: 300;
|
8339
|
+
}
|
8340
|
+
|
8341
|
+
.uk-text-normal {
|
8342
|
+
font-weight: 400;
|
8343
|
+
}
|
8344
|
+
|
8265
8345
|
.uk-text-bold {
|
8346
|
+
font-weight: 700;
|
8347
|
+
}
|
8348
|
+
|
8349
|
+
.uk-text-lighter {
|
8350
|
+
font-weight: lighter;
|
8351
|
+
}
|
8352
|
+
|
8353
|
+
.uk-text-bolder {
|
8266
8354
|
font-weight: bolder;
|
8267
8355
|
}
|
8268
8356
|
|
8269
|
-
/*
|
8357
|
+
/* Style modifier
|
8270
8358
|
========================================================================== */
|
8271
|
-
.uk-text-
|
8272
|
-
|
8359
|
+
.uk-text-italic {
|
8360
|
+
font-style: italic;
|
8273
8361
|
}
|
8274
8362
|
|
8363
|
+
/* Transform modifier
|
8364
|
+
========================================================================== */
|
8275
8365
|
.uk-text-capitalize {
|
8276
8366
|
text-transform: capitalize !important;
|
8277
8367
|
}
|
8278
8368
|
|
8369
|
+
.uk-text-uppercase {
|
8370
|
+
text-transform: uppercase !important;
|
8371
|
+
}
|
8372
|
+
|
8279
8373
|
.uk-text-lowercase {
|
8280
8374
|
text-transform: lowercase !important;
|
8281
8375
|
}
|
@@ -9991,6 +10085,98 @@ iframe.uk-cover {
|
|
9991
10085
|
}
|
9992
10086
|
}
|
9993
10087
|
|
10088
|
+
/* Auto
|
10089
|
+
========================================================================== */
|
10090
|
+
.uk-margin-auto {
|
10091
|
+
margin-left: auto !important;
|
10092
|
+
margin-right: auto !important;
|
10093
|
+
}
|
10094
|
+
|
10095
|
+
.uk-margin-auto-top {
|
10096
|
+
margin-top: auto !important;
|
10097
|
+
}
|
10098
|
+
|
10099
|
+
.uk-margin-auto-bottom {
|
10100
|
+
margin-bottom: auto !important;
|
10101
|
+
}
|
10102
|
+
|
10103
|
+
.uk-margin-auto-left {
|
10104
|
+
margin-left: auto !important;
|
10105
|
+
}
|
10106
|
+
|
10107
|
+
.uk-margin-auto-right {
|
10108
|
+
margin-right: auto !important;
|
10109
|
+
}
|
10110
|
+
|
10111
|
+
.uk-margin-auto-vertical {
|
10112
|
+
margin-top: auto !important;
|
10113
|
+
margin-bottom: auto !important;
|
10114
|
+
}
|
10115
|
+
|
10116
|
+
/* Phone landscape and bigger */
|
10117
|
+
@media (min-width: 640px) {
|
10118
|
+
.uk-margin-auto\@s {
|
10119
|
+
margin-left: auto !important;
|
10120
|
+
margin-right: auto !important;
|
10121
|
+
}
|
10122
|
+
|
10123
|
+
.uk-margin-auto-left\@s {
|
10124
|
+
margin-left: auto !important;
|
10125
|
+
}
|
10126
|
+
|
10127
|
+
.uk-margin-auto-right\@s {
|
10128
|
+
margin-right: auto !important;
|
10129
|
+
}
|
10130
|
+
}
|
10131
|
+
|
10132
|
+
/* Tablet landscape and bigger */
|
10133
|
+
@media (min-width: 960px) {
|
10134
|
+
.uk-margin-auto\@m {
|
10135
|
+
margin-left: auto !important;
|
10136
|
+
margin-right: auto !important;
|
10137
|
+
}
|
10138
|
+
|
10139
|
+
.uk-margin-auto-left\@m {
|
10140
|
+
margin-left: auto !important;
|
10141
|
+
}
|
10142
|
+
|
10143
|
+
.uk-margin-auto-right\@m {
|
10144
|
+
margin-right: auto !important;
|
10145
|
+
}
|
10146
|
+
}
|
10147
|
+
|
10148
|
+
/* Desktop and bigger */
|
10149
|
+
@media (min-width: 1200px) {
|
10150
|
+
.uk-margin-auto\@l {
|
10151
|
+
margin-left: auto !important;
|
10152
|
+
margin-right: auto !important;
|
10153
|
+
}
|
10154
|
+
|
10155
|
+
.uk-margin-auto-left\@l {
|
10156
|
+
margin-left: auto !important;
|
10157
|
+
}
|
10158
|
+
|
10159
|
+
.uk-margin-auto-right\@l {
|
10160
|
+
margin-right: auto !important;
|
10161
|
+
}
|
10162
|
+
}
|
10163
|
+
|
10164
|
+
/* Large screen and bigger */
|
10165
|
+
@media (min-width: 1600px) {
|
10166
|
+
.uk-margin-auto\@xl {
|
10167
|
+
margin-left: auto !important;
|
10168
|
+
margin-right: auto !important;
|
10169
|
+
}
|
10170
|
+
|
10171
|
+
.uk-margin-auto-left\@xl {
|
10172
|
+
margin-left: auto !important;
|
10173
|
+
}
|
10174
|
+
|
10175
|
+
.uk-margin-auto-right\@xl {
|
10176
|
+
margin-right: auto !important;
|
10177
|
+
}
|
10178
|
+
}
|
10179
|
+
|
9994
10180
|
/* Remove
|
9995
10181
|
========================================================================== */
|
9996
10182
|
.uk-margin-remove {
|
@@ -10023,32 +10209,52 @@ iframe.uk-cover {
|
|
10023
10209
|
margin-top: 0 !important;
|
10024
10210
|
}
|
10025
10211
|
|
10026
|
-
|
10027
|
-
|
10028
|
-
.uk-margin-auto {
|
10029
|
-
margin-left: auto !important;
|
10030
|
-
margin-right: auto !important;
|
10212
|
+
.uk-margin-remove-last-child> :last-child {
|
10213
|
+
margin-bottom: 0 !important;
|
10031
10214
|
}
|
10032
10215
|
|
10033
|
-
|
10034
|
-
|
10035
|
-
|
10216
|
+
/* Phone landscape and bigger */
|
10217
|
+
@media (min-width: 640px) {
|
10218
|
+
.uk-margin-remove-left\@s {
|
10219
|
+
margin-left: 0 !important;
|
10220
|
+
}
|
10036
10221
|
|
10037
|
-
.uk-margin-
|
10038
|
-
|
10222
|
+
.uk-margin-remove-right\@s {
|
10223
|
+
margin-right: 0 !important;
|
10224
|
+
}
|
10039
10225
|
}
|
10040
10226
|
|
10041
|
-
|
10042
|
-
|
10227
|
+
/* Tablet landscape and bigger */
|
10228
|
+
@media (min-width: 960px) {
|
10229
|
+
.uk-margin-remove-left\@m {
|
10230
|
+
margin-left: 0 !important;
|
10231
|
+
}
|
10232
|
+
|
10233
|
+
.uk-margin-remove-right\@m {
|
10234
|
+
margin-right: 0 !important;
|
10235
|
+
}
|
10043
10236
|
}
|
10044
10237
|
|
10045
|
-
|
10046
|
-
|
10238
|
+
/* Desktop and bigger */
|
10239
|
+
@media (min-width: 1200px) {
|
10240
|
+
.uk-margin-remove-left\@l {
|
10241
|
+
margin-left: 0 !important;
|
10242
|
+
}
|
10243
|
+
|
10244
|
+
.uk-margin-remove-right\@l {
|
10245
|
+
margin-right: 0 !important;
|
10246
|
+
}
|
10047
10247
|
}
|
10048
10248
|
|
10049
|
-
|
10050
|
-
|
10051
|
-
margin-
|
10249
|
+
/* Large screen and bigger */
|
10250
|
+
@media (min-width: 1600px) {
|
10251
|
+
.uk-margin-remove-left\@xl {
|
10252
|
+
margin-left: 0 !important;
|
10253
|
+
}
|
10254
|
+
|
10255
|
+
.uk-margin-remove-right\@xl {
|
10256
|
+
margin-right: 0 !important;
|
10257
|
+
}
|
10052
10258
|
}
|
10053
10259
|
|
10054
10260
|
/* ========================================================================
|
@@ -10121,12 +10327,17 @@ iframe.uk-cover {
|
|
10121
10327
|
========================================================================== */
|
10122
10328
|
/* Directions
|
10123
10329
|
========================================================================== */
|
10330
|
+
/*
|
10331
|
+
* 1. Prevent content overflow if `max-width: 100%` is used inside position container.
|
10332
|
+
*/
|
10124
10333
|
[class*='uk-position-top'],
|
10125
10334
|
[class*='uk-position-bottom'],
|
10126
10335
|
[class*='uk-position-left'],
|
10127
10336
|
[class*='uk-position-right'],
|
10128
10337
|
[class*='uk-position-center'] {
|
10129
10338
|
position: absolute !important;
|
10339
|
+
/* 1 */
|
10340
|
+
max-width: 100%;
|
10130
10341
|
}
|
10131
10342
|
|
10132
10343
|
/* Edges
|
@@ -11015,102 +11226,102 @@ iframe.uk-cover {
|
|
11015
11226
|
border-top-color: rgba(255, 255, 255, 0.2);
|
11016
11227
|
}
|
11017
11228
|
|
11018
|
-
.uk-light
|
11229
|
+
.uk-light .uk-link-muted,
|
11019
11230
|
.uk-light .uk-link-muted a,
|
11020
|
-
.uk-section-primary:not(.uk-preserve-color)
|
11231
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted,
|
11021
11232
|
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a,
|
11022
|
-
.uk-section-secondary:not(.uk-preserve-color)
|
11233
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted,
|
11023
11234
|
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a,
|
11024
|
-
.uk-tile-primary:not(.uk-preserve-color)
|
11235
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted,
|
11025
11236
|
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a,
|
11026
|
-
.uk-tile-secondary:not(.uk-preserve-color)
|
11237
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted,
|
11027
11238
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a,
|
11028
|
-
.uk-card-primary.uk-card-body
|
11239
|
+
.uk-card-primary.uk-card-body .uk-link-muted,
|
11029
11240
|
.uk-card-primary.uk-card-body .uk-link-muted a,
|
11030
|
-
.uk-card-primary> :not([class*='uk-card-media'])
|
11241
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-muted,
|
11031
11242
|
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-muted a,
|
11032
|
-
.uk-card-secondary.uk-card-body
|
11243
|
+
.uk-card-secondary.uk-card-body .uk-link-muted,
|
11033
11244
|
.uk-card-secondary.uk-card-body .uk-link-muted a,
|
11034
|
-
.uk-card-secondary> :not([class*='uk-card-media'])
|
11245
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-muted,
|
11035
11246
|
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-muted a,
|
11036
|
-
.uk-overlay-primary
|
11247
|
+
.uk-overlay-primary .uk-link-muted,
|
11037
11248
|
.uk-overlay-primary .uk-link-muted a,
|
11038
|
-
.uk-offcanvas-bar
|
11249
|
+
.uk-offcanvas-bar .uk-link-muted,
|
11039
11250
|
.uk-offcanvas-bar .uk-link-muted a {
|
11040
11251
|
color: rgba(255, 255, 255, 0.5);
|
11041
11252
|
}
|
11042
11253
|
|
11043
|
-
.uk-light
|
11254
|
+
.uk-light .uk-link-muted:hover,
|
11044
11255
|
.uk-light .uk-link-muted a:hover,
|
11045
|
-
.uk-section-primary:not(.uk-preserve-color)
|
11256
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted:hover,
|
11046
11257
|
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
|
11047
|
-
.uk-section-secondary:not(.uk-preserve-color)
|
11258
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted:hover,
|
11048
11259
|
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
|
11049
|
-
.uk-tile-primary:not(.uk-preserve-color)
|
11260
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted:hover,
|
11050
11261
|
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
|
11051
|
-
.uk-tile-secondary:not(.uk-preserve-color)
|
11262
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted:hover,
|
11052
11263
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
|
11053
|
-
.uk-card-primary.uk-card-body
|
11264
|
+
.uk-card-primary.uk-card-body .uk-link-muted:hover,
|
11054
11265
|
.uk-card-primary.uk-card-body .uk-link-muted a:hover,
|
11055
|
-
.uk-card-primary> :not([class*='uk-card-media'])
|
11266
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-muted:hover,
|
11056
11267
|
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-muted a:hover,
|
11057
|
-
.uk-card-secondary.uk-card-body
|
11268
|
+
.uk-card-secondary.uk-card-body .uk-link-muted:hover,
|
11058
11269
|
.uk-card-secondary.uk-card-body .uk-link-muted a:hover,
|
11059
|
-
.uk-card-secondary> :not([class*='uk-card-media'])
|
11270
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-muted:hover,
|
11060
11271
|
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-muted a:hover,
|
11061
|
-
.uk-overlay-primary
|
11272
|
+
.uk-overlay-primary .uk-link-muted:hover,
|
11062
11273
|
.uk-overlay-primary .uk-link-muted a:hover,
|
11063
|
-
.uk-offcanvas-bar
|
11274
|
+
.uk-offcanvas-bar .uk-link-muted:hover,
|
11064
11275
|
.uk-offcanvas-bar .uk-link-muted a:hover {
|
11065
11276
|
color: rgba(255, 255, 255, 0.7);
|
11066
11277
|
}
|
11067
11278
|
|
11068
|
-
.uk-light
|
11279
|
+
.uk-light .uk-link-text:hover,
|
11069
11280
|
.uk-light .uk-link-text a:hover,
|
11070
|
-
.uk-section-primary:not(.uk-preserve-color)
|
11281
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-link-text:hover,
|
11071
11282
|
.uk-section-primary:not(.uk-preserve-color) .uk-link-text a:hover,
|
11072
|
-
.uk-section-secondary:not(.uk-preserve-color)
|
11283
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-link-text:hover,
|
11073
11284
|
.uk-section-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
|
11074
|
-
.uk-tile-primary:not(.uk-preserve-color)
|
11285
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-link-text:hover,
|
11075
11286
|
.uk-tile-primary:not(.uk-preserve-color) .uk-link-text a:hover,
|
11076
|
-
.uk-tile-secondary:not(.uk-preserve-color)
|
11287
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text:hover,
|
11077
11288
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
|
11078
|
-
.uk-card-primary.uk-card-body
|
11289
|
+
.uk-card-primary.uk-card-body .uk-link-text:hover,
|
11079
11290
|
.uk-card-primary.uk-card-body .uk-link-text a:hover,
|
11080
|
-
.uk-card-primary> :not([class*='uk-card-media'])
|
11291
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-text:hover,
|
11081
11292
|
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-text a:hover,
|
11082
|
-
.uk-card-secondary.uk-card-body
|
11293
|
+
.uk-card-secondary.uk-card-body .uk-link-text:hover,
|
11083
11294
|
.uk-card-secondary.uk-card-body .uk-link-text a:hover,
|
11084
|
-
.uk-card-secondary> :not([class*='uk-card-media'])
|
11295
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-text:hover,
|
11085
11296
|
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-text a:hover,
|
11086
|
-
.uk-overlay-primary
|
11297
|
+
.uk-overlay-primary .uk-link-text:hover,
|
11087
11298
|
.uk-overlay-primary .uk-link-text a:hover,
|
11088
|
-
.uk-offcanvas-bar
|
11299
|
+
.uk-offcanvas-bar .uk-link-text:hover,
|
11089
11300
|
.uk-offcanvas-bar .uk-link-text a:hover {
|
11090
11301
|
color: rgba(255, 255, 255, 0.5);
|
11091
11302
|
}
|
11092
11303
|
|
11093
|
-
.uk-light
|
11304
|
+
.uk-light .uk-link-heading:hover,
|
11094
11305
|
.uk-light .uk-link-heading a:hover,
|
11095
|
-
.uk-section-primary:not(.uk-preserve-color)
|
11306
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-link-heading:hover,
|
11096
11307
|
.uk-section-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
|
11097
|
-
.uk-section-secondary:not(.uk-preserve-color)
|
11308
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-link-heading:hover,
|
11098
11309
|
.uk-section-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
|
11099
|
-
.uk-tile-primary:not(.uk-preserve-color)
|
11310
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading:hover,
|
11100
11311
|
.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
|
11101
|
-
.uk-tile-secondary:not(.uk-preserve-color)
|
11312
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading:hover,
|
11102
11313
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
|
11103
|
-
.uk-card-primary.uk-card-body
|
11314
|
+
.uk-card-primary.uk-card-body .uk-link-heading:hover,
|
11104
11315
|
.uk-card-primary.uk-card-body .uk-link-heading a:hover,
|
11105
|
-
.uk-card-primary> :not([class*='uk-card-media'])
|
11316
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-heading:hover,
|
11106
11317
|
.uk-card-primary> :not([class*='uk-card-media']) .uk-link-heading a:hover,
|
11107
|
-
.uk-card-secondary.uk-card-body
|
11318
|
+
.uk-card-secondary.uk-card-body .uk-link-heading:hover,
|
11108
11319
|
.uk-card-secondary.uk-card-body .uk-link-heading a:hover,
|
11109
|
-
.uk-card-secondary> :not([class*='uk-card-media'])
|
11320
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-heading:hover,
|
11110
11321
|
.uk-card-secondary> :not([class*='uk-card-media']) .uk-link-heading a:hover,
|
11111
|
-
.uk-overlay-primary
|
11322
|
+
.uk-overlay-primary .uk-link-heading:hover,
|
11112
11323
|
.uk-overlay-primary .uk-link-heading a:hover,
|
11113
|
-
.uk-offcanvas-bar
|
11324
|
+
.uk-offcanvas-bar .uk-link-heading:hover,
|
11114
11325
|
.uk-offcanvas-bar .uk-link-heading a:hover {
|
11115
11326
|
color: #fff;
|
11116
11327
|
}
|
@@ -11221,17 +11432,17 @@ iframe.uk-cover {
|
|
11221
11432
|
border-top-color: rgba(255, 255, 255, 0.2);
|
11222
11433
|
}
|
11223
11434
|
|
11224
|
-
.uk-light .uk-divider-vertical
|
11225
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-divider-vertical
|
11226
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-vertical
|
11227
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical
|
11228
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical
|
11229
|
-
.uk-card-primary.uk-card-body .uk-divider-vertical
|
11230
|
-
.uk-card-primary> :not([class*='uk-card-media']) .uk-divider-vertical
|
11231
|
-
.uk-card-secondary.uk-card-body .uk-divider-vertical
|
11232
|
-
.uk-card-secondary> :not([class*='uk-card-media']) .uk-divider-vertical
|
11233
|
-
.uk-overlay-primary .uk-divider-vertical
|
11234
|
-
.uk-offcanvas-bar .uk-divider-vertical
|
11435
|
+
.uk-light .uk-divider-vertical,
|
11436
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-divider-vertical,
|
11437
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-vertical,
|
11438
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical,
|
11439
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical,
|
11440
|
+
.uk-card-primary.uk-card-body .uk-divider-vertical,
|
11441
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-divider-vertical,
|
11442
|
+
.uk-card-secondary.uk-card-body .uk-divider-vertical,
|
11443
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-divider-vertical,
|
11444
|
+
.uk-overlay-primary .uk-divider-vertical,
|
11445
|
+
.uk-offcanvas-bar .uk-divider-vertical {
|
11235
11446
|
border-left-color: rgba(255, 255, 255, 0.2);
|
11236
11447
|
}
|
11237
11448
|
|
@@ -11700,6 +11911,31 @@ iframe.uk-cover {
|
|
11700
11911
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
11701
11912
|
}
|
11702
11913
|
|
11914
|
+
.uk-light .uk-input[list]:hover,
|
11915
|
+
.uk-light .uk-input[list]:focus,
|
11916
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:hover,
|
11917
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:focus,
|
11918
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
|
11919
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
|
11920
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:hover,
|
11921
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:focus,
|
11922
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
|
11923
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
|
11924
|
+
.uk-card-primary.uk-card-body .uk-input[list]:hover,
|
11925
|
+
.uk-card-primary.uk-card-body .uk-input[list]:focus,
|
11926
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-input[list]:hover,
|
11927
|
+
.uk-card-primary> :not([class*='uk-card-media']) .uk-input[list]:focus,
|
11928
|
+
.uk-card-secondary.uk-card-body .uk-input[list]:hover,
|
11929
|
+
.uk-card-secondary.uk-card-body .uk-input[list]:focus,
|
11930
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-input[list]:hover,
|
11931
|
+
.uk-card-secondary> :not([class*='uk-card-media']) .uk-input[list]:focus,
|
11932
|
+
.uk-overlay-primary .uk-input[list]:hover,
|
11933
|
+
.uk-overlay-primary .uk-input[list]:focus,
|
11934
|
+
.uk-offcanvas-bar .uk-input[list]:hover,
|
11935
|
+
.uk-offcanvas-bar .uk-input[list]:focus {
|
11936
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
11937
|
+
}
|
11938
|
+
|
11703
11939
|
.uk-light .uk-radio,
|
11704
11940
|
.uk-light .uk-checkbox,
|
11705
11941
|
.uk-section-primary:not(.uk-preserve-color) .uk-radio,
|
@@ -13881,4 +14117,4 @@ iframe.uk-cover {
|
|
13881
14117
|
h3 {
|
13882
14118
|
page-break-after: avoid;
|
13883
14119
|
}
|
13884
|
-
}
|
14120
|
+
}
|