uikit 3.25.17-dev.80dfe87 → 3.25.17-dev.8c70e44
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.
- package/CHANGELOG.md +33 -0
- package/build/prefix.js +1 -1
- package/build/publishDev.js +1 -1
- package/build/release.js +2 -2
- package/build/scope.js +1 -1
- package/build/scss.js +1 -1
- package/dist/css/uikit-core-rtl.css +892 -802
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +892 -802
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +893 -803
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +893 -803
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +133 -132
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +134 -133
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/marquee.js +179 -0
- package/dist/js/components/marquee.min.js +1 -0
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +8 -12
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +8 -12
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +41 -25
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +8 -12
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +71 -102
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +19 -19
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +754 -262
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +629 -374
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/js/api/component.js +2 -3
- package/src/js/api/observables.js +2 -4
- package/src/js/api/options.js +6 -3
- package/src/js/api/props.js +1 -4
- package/src/js/api/state.js +7 -8
- package/src/js/components/index.js +1 -0
- package/src/js/components/internal/lightbox-animations.js +7 -26
- package/src/js/components/internal/slideshow-animations.js +15 -62
- package/src/js/components/lightbox-panel.js +121 -96
- package/src/js/components/lightbox.js +5 -8
- package/src/js/components/marquee.js +123 -0
- package/src/js/components/tooltip.js +4 -2
- package/src/js/core/accordion.js +78 -29
- package/src/js/core/drop.js +5 -4
- package/src/js/core/dropnav.js +3 -3
- package/src/js/core/grid.js +5 -19
- package/src/js/core/height-match.js +1 -2
- package/src/js/core/margin.js +3 -0
- package/src/js/core/overflow-fade.js +5 -5
- package/src/js/core/sticky.js +1 -1
- package/src/js/core/switcher.js +24 -44
- package/src/js/core/video.js +172 -15
- package/src/js/mixin/connect.js +57 -0
- package/src/js/mixin/internal/slideshow-animations.js +5 -13
- package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
- package/src/js/mixin/modal.js +4 -3
- package/src/js/mixin/parallax.js +1 -4
- package/src/js/mixin/position.js +1 -1
- package/src/js/mixin/scroll-driven.js +57 -0
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider-parallax.js +9 -38
- package/src/js/mixin/togglable.js +13 -14
- package/src/js/util/attr.js +7 -7
- package/src/js/util/class.js +1 -1
- package/src/js/util/dom.js +3 -4
- package/src/js/util/lang.js +1 -1
- package/src/js/util/player.js +4 -4
- package/src/js/util/style.js +10 -15
- package/src/js/util/viewport.js +22 -25
- package/src/less/components/_import.less +6 -1
- package/src/less/components/base.less +1 -1
- package/src/less/components/button.less +1 -1
- package/src/less/components/dropcap.less +71 -0
- package/src/less/components/floating-shadow.less +65 -0
- package/src/less/components/form.less +5 -5
- package/src/less/components/grid.less +57 -64
- package/src/less/components/logo.less +94 -0
- package/src/less/components/margin.less +81 -81
- package/src/less/components/marquee.less +133 -0
- package/src/less/components/nav.less +1 -1
- package/src/less/components/padding.less +9 -9
- package/src/less/components/utility.less +0 -157
- package/src/less/theme/_import.less +5 -1
- package/src/less/theme/dropcap.less +29 -0
- package/src/less/theme/floating-shadow.less +20 -0
- package/src/less/theme/logo.less +29 -0
- package/src/less/theme/marquee.less +14 -0
- package/src/less/theme/utility.less +0 -32
- package/src/scss/components/_import.scss +6 -1
- package/src/scss/components/base.scss +1 -1
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/dropcap.scss +63 -0
- package/src/scss/components/floating-shadow.scss +62 -0
- package/src/scss/components/form.scss +5 -5
- package/src/scss/components/grid.scss +57 -64
- package/src/scss/components/logo.scss +75 -0
- package/src/scss/components/margin.scss +81 -81
- package/src/scss/components/marquee.scss +136 -0
- package/src/scss/components/nav.scss +1 -1
- package/src/scss/components/padding.scss +9 -9
- package/src/scss/components/utility.scss +0 -128
- package/src/scss/mixins-theme.scss +41 -32
- package/src/scss/mixins.scss +38 -29
- package/src/scss/variables-theme.scss +14 -9
- package/src/scss/variables.scss +14 -9
- package/tests/accordion.html +77 -10
- package/tests/alert.html +1 -1
- package/tests/align.html +5 -5
- package/tests/animation.html +4 -4
- package/tests/article.html +7 -7
- package/tests/background.html +2 -2
- package/tests/badge.html +1 -1
- package/tests/base.html +2 -2
- package/tests/button.html +1 -1
- package/tests/card.html +15 -15
- package/tests/close.html +2 -2
- package/tests/comment.html +9 -9
- package/tests/container.html +2 -2
- package/tests/countdown.html +21 -21
- package/tests/cover.html +3 -3
- package/tests/description-list.html +1 -1
- package/tests/divider.html +3 -3
- package/tests/dotnav.html +1 -1
- package/tests/drop.html +7 -7
- package/tests/dropbar.html +5 -5
- package/tests/dropcap.html +26 -0
- package/tests/dropdown.html +1 -1
- package/tests/dropnav.html +18 -18
- package/tests/filter.html +3 -3
- package/tests/floating-shadow.html +44 -0
- package/tests/form.html +14 -14
- package/tests/grid.html +41 -47
- package/tests/heading.html +2 -2
- package/tests/height-viewport.html +4 -4
- package/tests/height.html +5 -5
- package/tests/icon.html +8 -8
- package/tests/image.html +6 -6
- package/tests/index.html +13 -13
- package/tests/js/index.js +1 -1
- package/tests/leader.html +5 -5
- package/tests/lightbox.html +6 -6
- package/tests/link.html +1 -1
- package/tests/list.html +4 -4
- package/tests/logo.html +84 -0
- package/tests/margin.html +7 -7
- package/tests/marker.html +3 -3
- package/tests/marquee.html +617 -0
- package/tests/modal.html +3 -3
- package/tests/nav.html +5 -5
- package/tests/navbar.html +27 -27
- package/tests/notification.html +2 -2
- package/tests/offcanvas.html +12 -12
- package/tests/overlay.html +3 -3
- package/tests/padding.html +1 -1
- package/tests/pagination.html +3 -3
- package/tests/parallax.html +1 -1
- package/tests/position.html +6 -6
- package/tests/scrollspy.html +12 -12
- package/tests/search.html +5 -5
- package/tests/section.html +17 -17
- package/tests/slidenav.html +3 -3
- package/tests/slider.html +5 -5
- package/tests/slideshow.html +3 -3
- package/tests/sortable.html +15 -15
- package/tests/sticky-navbar.html +4 -4
- package/tests/sticky-parallax.html +3 -3
- package/tests/sticky.html +3 -3
- package/tests/svg.html +3 -2
- package/tests/switcher.html +6 -6
- package/tests/tab.html +4 -4
- package/tests/text.html +3 -3
- package/tests/tile.html +4 -4
- package/tests/toggle.html +1 -1
- package/tests/tooltip.html +3 -3
- package/tests/totop.html +2 -2
- package/tests/transition.html +1 -1
- package/tests/upload.html +5 -5
- package/tests/utility.html +16 -116
- package/tests/video.html +224 -24
- package/tests/visibility.html +4 -4
- package/tests/width.html +12 -12
package/tests/tile.html
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<body>
|
|
12
12
|
|
|
13
13
|
<div class="uk-section">
|
|
14
|
-
<div class="uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match"
|
|
14
|
+
<div class="uk-grid uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match">
|
|
15
15
|
<div>
|
|
16
16
|
|
|
17
17
|
<div class="uk-tile uk-tile-default uk-tile-hover">
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
</div>
|
|
65
65
|
|
|
66
66
|
<div class="uk-section">
|
|
67
|
-
<div class="uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match"
|
|
67
|
+
<div class="uk-grid uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match">
|
|
68
68
|
<div>
|
|
69
69
|
|
|
70
70
|
<div class="uk-tile uk-tile-default uk-tile-small">
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
</div>
|
|
118
118
|
|
|
119
119
|
<div class="uk-section">
|
|
120
|
-
<div class="uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match"
|
|
120
|
+
<div class="uk-grid uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match">
|
|
121
121
|
<div>
|
|
122
122
|
|
|
123
123
|
<div class="uk-tile uk-tile-default uk-tile-large">
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
</div>
|
|
171
171
|
|
|
172
172
|
<div class="uk-section">
|
|
173
|
-
<div class="uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match"
|
|
173
|
+
<div class="uk-grid uk-child-width-1-2@s uk-child-width-1-4@l uk-grid-collapse uk-grid-match">
|
|
174
174
|
<div>
|
|
175
175
|
|
|
176
176
|
<div class="uk-tile uk-tile-default uk-tile-xlarge">
|
package/tests/toggle.html
CHANGED
package/tests/tooltip.html
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
<div class="uk-tooltip uk-tooltip-top-center uk-display-inline-block uk-margin-remove uk-position-relative">Tooltip</div>
|
|
18
18
|
|
|
19
|
-
<div class="uk-child-width-1-2@m"
|
|
19
|
+
<div class="uk-grid uk-child-width-1-2@m">
|
|
20
20
|
<div>
|
|
21
21
|
|
|
22
22
|
<h2>Position</h2>
|
|
@@ -89,13 +89,13 @@
|
|
|
89
89
|
<tr>
|
|
90
90
|
<td><code>animation</code></td>
|
|
91
91
|
<td>String</td>
|
|
92
|
-
<td>
|
|
92
|
+
<td>uk-animation-scale-up</td>
|
|
93
93
|
<td>Space-separated names of animations. Comma-separated for animation out.</td>
|
|
94
94
|
</tr>
|
|
95
95
|
<tr>
|
|
96
96
|
<td><code>duration</code></td>
|
|
97
97
|
<td>Number</td>
|
|
98
|
-
<td>
|
|
98
|
+
<td>100</td>
|
|
99
99
|
<td>The animation duration.</td>
|
|
100
100
|
</tr>
|
|
101
101
|
<tr>
|
package/tests/totop.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<a href="#" uk-totop></a>
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
|
-
<h2>
|
|
21
|
+
<h2>JavaScript Options</h2>
|
|
22
22
|
|
|
23
23
|
<div class="uk-overflow-auto">
|
|
24
24
|
<table class="uk-table uk-table-striped">
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<td><code>i18n</code></td>
|
|
36
36
|
<td>Object</td>
|
|
37
37
|
<td>null</td>
|
|
38
|
-
<td>Override default
|
|
38
|
+
<td>Override the default translations.</td>
|
|
39
39
|
</tr>
|
|
40
40
|
</tbody>
|
|
41
41
|
</table>
|
package/tests/transition.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<h1>Transition</h1>
|
|
16
16
|
|
|
17
|
-
<div class="uk-grid-small uk-child-width-1-3@s uk-child-width-1-6@m"
|
|
17
|
+
<div class="uk-grid uk-grid-small uk-child-width-1-3@s uk-child-width-1-6@m">
|
|
18
18
|
<div class="uk-text-center">
|
|
19
19
|
<div class="uk-inline-clip uk-inverse-light uk-transition-toggle" tabindex="0">
|
|
20
20
|
<img src="images/photo.jpg" width="1800" height="1200" alt="">
|
package/tests/upload.html
CHANGED
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
<td><code>url</code></td>
|
|
183
183
|
<td>String</td>
|
|
184
184
|
<td></td>
|
|
185
|
-
<td>The request
|
|
185
|
+
<td>The request URL.</td>
|
|
186
186
|
</tr>
|
|
187
187
|
<tr>
|
|
188
188
|
<td><code>multiple</code></td>
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
<td><code>method</code></td>
|
|
201
201
|
<td>String</td>
|
|
202
202
|
<td>POST</td>
|
|
203
|
-
<td>The request
|
|
203
|
+
<td>The HTTP request method.</td>
|
|
204
204
|
</tr>
|
|
205
205
|
<tr>
|
|
206
206
|
<td><code>params</code></td>
|
|
@@ -242,13 +242,13 @@
|
|
|
242
242
|
<td><code>i18n</code></td>
|
|
243
243
|
<td>Object</td>
|
|
244
244
|
<td>null</td>
|
|
245
|
-
<td>Override default
|
|
245
|
+
<td>Override the default translations.</td>
|
|
246
246
|
</tr>
|
|
247
247
|
<tr>
|
|
248
248
|
<td><code>cls-dragover</code></td>
|
|
249
249
|
<td>String</td>
|
|
250
250
|
<td>uk-dragover</td>
|
|
251
|
-
<td>
|
|
251
|
+
<td>CSS class applied while a file is dragged over the upload area.</td>
|
|
252
252
|
</tr>
|
|
253
253
|
<tr>
|
|
254
254
|
<td><code>abort</code></td>
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
<td><code>fail</code></td>
|
|
315
315
|
<td>Function</td>
|
|
316
316
|
<td></td>
|
|
317
|
-
<td>The fail callback.
|
|
317
|
+
<td>The fail callback. Called when the file name or MIME type is invalid.</td>
|
|
318
318
|
</tr>
|
|
319
319
|
</tbody>
|
|
320
320
|
</table>
|
package/tests/utility.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<h1>Utility</h1>
|
|
16
16
|
|
|
17
|
-
<div class="uk-child-width-1-2@m"
|
|
17
|
+
<div class="uk-grid uk-child-width-1-2@m">
|
|
18
18
|
<div>
|
|
19
19
|
|
|
20
20
|
<div class="uk-panel">
|
|
@@ -113,42 +113,42 @@
|
|
|
113
113
|
|
|
114
114
|
<h2>Pre scrollable</h2>
|
|
115
115
|
|
|
116
|
-
<pre class="uk-overflow-auto uk-height-medium uk-resize"><code><div uk-grid>
|
|
116
|
+
<pre class="uk-overflow-auto uk-height-medium uk-resize"><code><div class="uk-grid">
|
|
117
117
|
<div class="uk-width-1-2">…</div><div class="uk-width-1-2">…</div><div class="uk-width-1-2">…</div>
|
|
118
118
|
<div class="uk-width-1-2">…</div>
|
|
119
119
|
</div>
|
|
120
120
|
|
|
121
|
-
<div uk-grid>
|
|
121
|
+
<div class="uk-grid">
|
|
122
122
|
<div class="uk-width-1-2">…</div>
|
|
123
123
|
<div class="uk-width-1-2">…</div>
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
|
-
<div uk-grid>
|
|
126
|
+
<div class="uk-grid">
|
|
127
127
|
<div class="uk-width-1-2">…</div>
|
|
128
128
|
<div class="uk-width-1-2">…</div>
|
|
129
129
|
</div>
|
|
130
130
|
|
|
131
|
-
<div uk-grid>
|
|
131
|
+
<div class="uk-grid">
|
|
132
132
|
<div class="uk-width-1-2">…</div>
|
|
133
133
|
<div class="uk-width-1-2">…</div>
|
|
134
134
|
</div>
|
|
135
135
|
|
|
136
|
-
<div uk-grid>
|
|
136
|
+
<div class="uk-grid">
|
|
137
137
|
<div class="uk-width-1-2">…</div>
|
|
138
138
|
<div class="uk-width-1-2">…</div>
|
|
139
139
|
</div>
|
|
140
140
|
|
|
141
|
-
<div uk-grid>
|
|
141
|
+
<div class="uk-grid">
|
|
142
142
|
<div class="uk-width-1-2">…</div>
|
|
143
143
|
<div class="uk-width-1-2">…</div>
|
|
144
144
|
</div>
|
|
145
145
|
|
|
146
|
-
<div uk-grid>
|
|
146
|
+
<div class="uk-grid">
|
|
147
147
|
<div class="uk-width-1-2">…</div>
|
|
148
148
|
<div class="uk-width-1-2">…</div>
|
|
149
149
|
</div>
|
|
150
150
|
|
|
151
|
-
<div uk-grid>
|
|
151
|
+
<div class="uk-grid">
|
|
152
152
|
<div class="uk-width-1-2">…</div>
|
|
153
153
|
<div class="uk-width-1-2">…</div>
|
|
154
154
|
</div></code></pre>
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
|
|
159
159
|
<h2>Overflow Auto JS</h2>
|
|
160
160
|
|
|
161
|
-
<div class="uk-child-width-1-2@m"
|
|
161
|
+
<div class="uk-grid uk-child-width-1-2@m">
|
|
162
162
|
<div>
|
|
163
163
|
|
|
164
164
|
<div class="uk-height-medium">
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
<p>Some content before the overflow auto container.</p>
|
|
168
168
|
|
|
169
169
|
<div uk-overflow-auto="selContainer: .uk-height-medium; selContent: .js-wrapper">
|
|
170
|
-
<div class="uk-grid
|
|
170
|
+
<div class="uk-grid uk-grid-small">
|
|
171
171
|
<div class="uk-width-1-2"><img src="images/light.jpg" width="1800" height="1200" alt=""></div>
|
|
172
172
|
<div class="uk-width-1-2"><img src="images/dark.jpg" width="1800" height="1200" alt=""></div>
|
|
173
173
|
</div>
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
<p>Some content before the overflow auto container.</p>
|
|
188
188
|
|
|
189
189
|
<div uk-overflow-auto="selContainer: .uk-height-medium; selContent: .js-wrapper">
|
|
190
|
-
<div class="uk-grid
|
|
190
|
+
<div class="uk-grid uk-grid-small">
|
|
191
191
|
<div class="uk-width-1-2"><img src="images/light.jpg" width="1800" height="1200" alt=""></div>
|
|
192
192
|
<div class="uk-width-1-2"><img src="images/dark.jpg" width="1800" height="1200" alt=""></div>
|
|
193
193
|
<div class="uk-width-1-2"><img src="images/photo.jpg" width="1800" height="1200" alt=""></div>
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
|
|
233
233
|
<h2>Overflow Fade</h2>
|
|
234
234
|
|
|
235
|
-
<div class="uk-child-width-1-2@m"
|
|
235
|
+
<div class="uk-grid uk-child-width-1-2@m">
|
|
236
236
|
<div>
|
|
237
237
|
|
|
238
238
|
<div class="uk-margin" uk-overflow-fade>
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
|
|
391
391
|
<h2>Responsive Objects</h2>
|
|
392
392
|
|
|
393
|
-
<div class="uk-child-width-1-3@s"
|
|
393
|
+
<div class="uk-grid uk-child-width-1-3@s">
|
|
394
394
|
<div>
|
|
395
395
|
<p>JS Responsive Width (Iframe)</p>
|
|
396
396
|
<iframe src="https://www.youtube-nocookie.com/embed/c2pz2mlSfXA?rel=0" width="1920" height="1080" allowfullscreen uk-responsive uk-video="autoplay: false"></iframe>
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
|
|
404
404
|
<h2>Object Fit and Position</h2>
|
|
405
405
|
|
|
406
|
-
<div class="uk-child-width-1-3@s"
|
|
406
|
+
<div class="uk-grid uk-child-width-1-3@s">
|
|
407
407
|
<div>
|
|
408
408
|
<p>Object Fit Cover</p>
|
|
409
409
|
<img class="uk-object-cover" src="images/photo.jpg" width="1000" height="1000" alt="" style="aspect-ratio: 1 / 1;">
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
|
|
421
421
|
<h2>Box-shadows</h2>
|
|
422
422
|
|
|
423
|
-
<div class="uk-child-width-1-5@m uk-grid-large"
|
|
423
|
+
<div class="uk-grid uk-child-width-1-5@m uk-grid-large">
|
|
424
424
|
<div>
|
|
425
425
|
|
|
426
426
|
<div class="uk-inline uk-box-shadow-hover-small">
|
|
@@ -538,106 +538,6 @@
|
|
|
538
538
|
</div>
|
|
539
539
|
</div>
|
|
540
540
|
|
|
541
|
-
<h2>Box-shadow Bottom</h2>
|
|
542
|
-
|
|
543
|
-
<div class="uk-child-width-1-5@m uk-grid-large" uk-grid>
|
|
544
|
-
<div class="uk-width-1-6@m">
|
|
545
|
-
|
|
546
|
-
<div class="uk-box-shadow-bottom">
|
|
547
|
-
<img src="images/photo.jpg" width="1800" height="1200" alt="">
|
|
548
|
-
</div>
|
|
549
|
-
|
|
550
|
-
</div>
|
|
551
|
-
<div class="uk-width-1-3@m">
|
|
552
|
-
|
|
553
|
-
<div class="uk-box-shadow-bottom">
|
|
554
|
-
<img src="images/photo.jpg" width="1800" height="1200" alt="">
|
|
555
|
-
</div>
|
|
556
|
-
|
|
557
|
-
</div>
|
|
558
|
-
<div class="uk-width-1-2@m">
|
|
559
|
-
|
|
560
|
-
<div class="uk-box-shadow-bottom">
|
|
561
|
-
<img src="images/photo.jpg" width="1800" height="1200" alt="">
|
|
562
|
-
</div>
|
|
563
|
-
|
|
564
|
-
</div>
|
|
565
|
-
</div>
|
|
566
|
-
|
|
567
|
-
<h2>Drop Cap</h2>
|
|
568
|
-
|
|
569
|
-
<p class="uk-text-lead uk-dropcap">Dorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
|
570
|
-
|
|
571
|
-
<div class="uk-dropcap">
|
|
572
|
-
<p>Torem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
|
|
573
|
-
</div>
|
|
574
|
-
|
|
575
|
-
<h1>Logo</h1>
|
|
576
|
-
|
|
577
|
-
<p>
|
|
578
|
-
<a class="uk-logo" href="#">Text Logo</a>
|
|
579
|
-
</p>
|
|
580
|
-
|
|
581
|
-
<div class="uk-child-width-auto uk-grid-small" uk-grid>
|
|
582
|
-
<div>
|
|
583
|
-
<p>Image<br>-</p>
|
|
584
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
585
|
-
<img src="images/photo.jpg" width="150" height="100" alt="">
|
|
586
|
-
</a>
|
|
587
|
-
</div>
|
|
588
|
-
<div>
|
|
589
|
-
<p>Picture<br>-</p>
|
|
590
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
591
|
-
<picture>
|
|
592
|
-
<img src="images/photo.jpg" width="150" height="100" alt="">
|
|
593
|
-
</picture>
|
|
594
|
-
</a>
|
|
595
|
-
</div>
|
|
596
|
-
<div>
|
|
597
|
-
<p>Image<br>Inverse Image</p>
|
|
598
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
599
|
-
<img src="images/photo.jpg" width="150" height="100" alt="">
|
|
600
|
-
<img class="uk-logo-inverse" src="images/dark.jpg" width="150" height="100" alt="">
|
|
601
|
-
</a>
|
|
602
|
-
</div>
|
|
603
|
-
<div>
|
|
604
|
-
<p>Picture<br>Inverse Picture</p>
|
|
605
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
606
|
-
<picture>
|
|
607
|
-
<img src="images/photo.jpg" width="150" height="100" alt="">
|
|
608
|
-
</picture>
|
|
609
|
-
<picture>
|
|
610
|
-
<img class="uk-logo-inverse" src="images/dark.jpg" width="150" height="100" alt="">
|
|
611
|
-
</picture>
|
|
612
|
-
</a>
|
|
613
|
-
</div>
|
|
614
|
-
<div>
|
|
615
|
-
<p>Picture<br>Inverse SVG</p>
|
|
616
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
617
|
-
<picture>
|
|
618
|
-
<img src="images/photo.jpg" width="150" height="100" alt="">
|
|
619
|
-
</picture>
|
|
620
|
-
<img class="uk-logo-inverse" src="images/icons.svg#trash" alt="" uk-svg>
|
|
621
|
-
</a>
|
|
622
|
-
</div>
|
|
623
|
-
<div>
|
|
624
|
-
<p>SVG<br>Inverse Picture</p>
|
|
625
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
626
|
-
<img src="images/icons.svg#table" alt="" uk-svg>
|
|
627
|
-
<picture>
|
|
628
|
-
<img class="uk-logo-inverse" src="images/dark.jpg" width="150" height="100" alt="">
|
|
629
|
-
</picture>
|
|
630
|
-
</a>
|
|
631
|
-
</div>
|
|
632
|
-
<div>
|
|
633
|
-
<p>SVG<br>Inverse SVG</p>
|
|
634
|
-
<a class="uk-logo" href="#" aria-label="Back to Home">
|
|
635
|
-
<img src="images/icons.svg#table" alt="" uk-svg>
|
|
636
|
-
<img class="uk-logo-inverse" src="images/icons.svg#trash" alt="" uk-svg>
|
|
637
|
-
</a>
|
|
638
|
-
</div>
|
|
639
|
-
</div>
|
|
640
|
-
|
|
641
541
|
</div>
|
|
642
542
|
|
|
643
543
|
</body>
|