Project

General

Profile

1
/*
2
 * Version 1.3.9
3
 */
4

    
5
.tm-header-transparent {
6
    position: absolute;
7
    z-index: 980;
8
    width: 100%;
9
}
10

    
11
.uk-sticky-fixed {
12
    z-index: 980;
13
    box-sizing: border-box;
14
    margin: 0 !important;
15
    -webkit-backface-visibility: hidden;
16
    backface-visibility: hidden;
17
}
18

    
19
/*
20
 * Version 1.5.0
21
 */
22

    
23
.uk-offcanvas-reveal {
24
    position: absolute;
25
    top: 0;
26
    bottom: 0;
27
    left: 0;
28
    width: 0;
29
    overflow: hidden;
30
    clip: auto;
31
    -webkit-transform: none;
32
    transform: none;
33
    -webkit-transition: width .3s ease-out;
34
    transition: width .3s ease-out;
35
}
36

    
37
.uk-offcanvas-reveal .uk-offcanvas-bar {
38
    -webkit-transform: translateX(0);
39
    transform: translateX(0);
40
}
41

    
42
.uk-open > .uk-offcanvas-reveal {
43
    clip: auto;
44
    width: 270px;
45
}
46

    
47
.uk-offcanvas-flip .uk-offcanvas-reveal {
48
    right: 0;
49
    left: auto;
50
}
51

    
52
.uk-offcanvas-close {
53
    position: absolute;
54
    z-index: 1000;
55
    top: 20px;
56
    right: 20px;
57
    padding: 5px;
58
}
59

    
60
.uk-offcanvas-container, .uk-offcanvas-page { overflow-x: hidden; }
61

    
62
.uk-offcanvas-container-overlay { overflow: hidden; }
63

    
64
.uk-offcanvas-container .uk-offcanvas-content {
65
    position: relative;
66
    left: 0;
67
    -webkit-transition: left .3s ease-out;
68
    transition: left .3s ease-out;
69
    -webkit-overflow-scrolling: touch;
70
}
71

    
72
.uk-offcanvas-overlay .uk-offcanvas-content { overflow-y: hidden; }
73

    
74
:not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation { left: 270px; }
75
.uk-offcanvas-flip > .uk-offcanvas-content-animation { left: -270px; }
76

    
77
.uk-margin-auto-top { margin-top: auto !important; }
78
.uk-margin-auto-bottom { margin-bottom: auto !important; }
(6-6/6)