# easy-elements/1.3.4/widgets/scroll-to-top/css/scroll.scss

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.3.4. 34 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.4/code/widgets/scroll-to-top/css/scroll.scss
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.4/raw/widgets/scroll-to-top/css/scroll.scss
- Modified: 2026-02-09T12:35:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-elements/1.3.4/code/widgets/scroll-to-top/css/scroll.scss#L10-L20`.

```scss
:root {    
    --e-global-color-primary: #EAA638;
}

#easyel-top-to-bottom{
    position: fixed;
    bottom: 0;
    cursor: pointer;    
    right: 28px;
    z-index: 9999;
    transform: translateY(120px);
    transition: all 0.5s ease 0s;
    opacity: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--e-global-color-primary);
    border-radius: 100px; 
    color: var(--e-global-color-secondary); 
    display: grid;
    place-content: center;
    opacity: 0;
    visibility: hidden;
    svg{
        height: 1em;
        width: 1em;
    }
}

#easyel-top-to-bottom.eel-scroll-visible{
    transform: translateY(-20px);
    opacity: 1;
    visibility: visible;
}
```
