| 1 |
:root { |
| 2 |
--e-global-color-primary: #EAA638; |
| 3 |
} |
| 4 |
|
| 5 |
#easyel-top-to-bottom { |
| 6 |
position: fixed; |
| 7 |
bottom: 0; |
| 8 |
cursor: pointer; |
| 9 |
right: 28px; |
| 10 |
z-index: 9999; |
| 11 |
transform: translateY(120px); |
| 12 |
transition: all 0.5s ease 0s; |
| 13 |
opacity: 1; |
| 14 |
width: 40px; |
| 15 |
height: 40px; |
| 16 |
line-height: 40px; |
| 17 |
background: var(--e-global-color-primary); |
| 18 |
border-radius: 100px; |
| 19 |
color: var(--e-global-color-secondary); |
| 20 |
display: grid; |
| 21 |
place-content: center; |
| 22 |
opacity: 0; |
| 23 |
visibility: hidden; |
| 24 |
} |
| 25 |
#easyel-top-to-bottom svg { |
| 26 |
height: 1em; |
| 27 |
width: 1em; |
| 28 |
} |
| 29 |
|
| 30 |
#easyel-top-to-bottom.eel-scroll-visible { |
| 31 |
transform: translateY(-20px); |
| 32 |
opacity: 1; |
| 33 |
visibility: visible; |
| 34 |
} |