# easy-elements/1.5.3/widgets/scroll-to-top/css/scroll.css

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

- Page: https://pluginprobe.com/plugins/easy-elements/1.5.3/code/widgets/scroll-to-top/css/scroll.css
- Raw: https://pluginprobe.com/plugins/easy-elements/1.5.3/raw/widgets/scroll-to-top/css/scroll.css
- Modified: 2026-07-20T06:16:54+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.5.3/code/widgets/scroll-to-top/css/scroll.css#L10-L20`.

```css
: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;
}
#easyel-top-to-bottom svg {
  height: 1em;
  width: 1em;
}

#easyel-top-to-bottom.eel-scroll-visible {
  transform: translateY(-20px);
  opacity: 1;
  visibility: visible;
}
```
