blob: b44a6847d560f19c899d915f8cb3623a49751e25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Name: Cover
// Description: Utilities to let embedded content cover their container in a centered position
//
// Component: `uk-cover`
//
// Sub-object: `uk-cover-container`
//
// ========================================================================
/* ========================================================================
Component: Cover
========================================================================== */
/*
* Works with iframes and embedded content
* 1. Reset responsiveness for embedded content
* 2. Center object
* Note: Percent values on the `top` property only works if this element
* is absolute positioned or if the container has a height
*/
.uk-cover {
/* 1 */
max-width: none;
/* 2 */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
iframe.uk-cover { pointer-events: none; }
/* Container
========================================================================== */
/*
* 1. Parent container which clips resized object
* 2. Needed if the child is positioned absolute. See note above
*/
.uk-cover-container {
/* 1 */
overflow: hidden;
/* 2 */
position: relative;
}
// Hooks
// ========================================================================
@if(mixin-exists(hook-cover-misc)) {@include hook-cover-misc();}
// @mixin hook-cover-misc(){}
|