PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.0
Easy Elements for Elementor – Addons & Website Templates v1.3.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / single-nav / css / single-nav.scss

single-nav.scss in Easy Elements for Elementor – Addons & Website Templates 1.3.0, at widgets/single-nav/css/single-nav.scss

79 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .eel-single-nav-list {
2 list-style: none;
3 margin: 0;
4 padding: 0;
5 display: flex;
6 flex-wrap: wrap;
7 }
8
9 .eel-single-nav-list .eel-nav-item{
10 margin:4px;
11 }
12
13 .eel-single-nav-list li a {
14 text-decoration: none;
15 color: #121212;
16 padding: 12px 20px;
17 display: block;
18 }
19
20 .eel-single-nav-list li:hover a,
21 .eel-single-nav-list li.active a {
22 color: #c30645;
23 }
24
25 .eel-sticky-header-on.eel--fixed-top-sticky,
26 .eel-sticky-header-on.eel-up-scroll{
27 .eel-sticky-logo{
28 display: inline-block !important;
29 }
30 .eel-main-logo:not(.eel-no-sticky){
31 display: none !important;
32 }
33 }
34
35 @media (min-width: 992px) {
36 body.logged-in:not(.elementor-editor-active) header.eel-sticky-header-on {
37 top: 32px;
38 }
39 }
40
41
42 header.eel-sticky-header-on{
43 position: fixed !important;
44 top: 0;
45 z-index: 9999 !important;
46 width: 100% !important;
47 transition: all 0.3s ease !important;
48 margin: 0 auto;
49 left: 0;
50 right: 0;
51 will-change: transform, top;
52 }
53
54 header.eel-sticky-header {
55 position: fixed;
56 top: 0;
57 left: 0;
58 right: 0;
59 z-index: 999;
60 transition: transform 0.4s ease, top 0.4s ease;
61 }
62
63
64 body.admin-bar header.eel-sticky-header {
65 top: 32px;
66 }
67 @media screen and (max-width: 782px) {
68 body.admin-bar header.eel-sticky-header {
69 top: 46px;
70 }
71 }
72
73 header.eel-down-scroll {
74 transform: translateY(-100%);
75 }
76
77 header.eel-up-scroll {
78 transform: translateY(0);
79 }