| 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 |
} |