PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / scroll-to-top / style.css

style.css in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/scroll-to-top/style.css

38 lines 866 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Scroll To Top — bkstt- */
2 .bkstt-wrap {
3 position: fixed;
4 z-index: 9990;
5 pointer-events: none;
6 opacity: 0;
7 transition: opacity 0.3s ease, transform 0.3s ease;
8 }
9 .bkstt-wrap.bkstt-visible {
10 opacity: 1 !important;
11 transform: translateY(0) !important;
12 pointer-events: auto;
13 }
14 .bkstt-btn {
15 cursor: pointer;
16 font-family: inherit;
17 position: relative;
18 z-index: 1;
19 transition: transform 0.2s ease, box-shadow 0.2s ease;
20 }
21 .bkstt-btn:hover {
22 transform: translateY(-3px);
23 box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
24 }
25 .bkstt-btn:active {
26 transform: translateY(0);
27 }
28 @keyframes bksttPulse {
29 0% { transform: scale(1); opacity: 0.6; }
30 70% { transform: scale(1.6); opacity: 0; }
31 100% { transform: scale(1.6); opacity: 0; }
32 }
33 .bkstt-pulse {
34 position: absolute;
35 inset: -6px;
36 animation: bksttPulse 1.8s ease-out infinite;
37 }
38