PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
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 / reading-progress / style.css

style.css in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/reading-progress/style.css

59 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-rp-anchor {
2 display: none; /* invisible anchor in content — bar is inserted into body */
3 }
4 .bkbg-rp-bar-wrap {
5 position: fixed;
6 left: 0;
7 right: 0;
8 z-index: var(--bkbg-rp-z, 9999);
9 height: var(--bkbg-rp-h, 4px);
10 background: var(--bkbg-rp-bg, #e5e7eb);
11 pointer-events: none;
12 }
13 .bkbg-rp-bar-wrap.bkbg-rp-top { top: 0; }
14 .bkbg-rp-bar-wrap.bkbg-rp-bottom { bottom: 0; }
15
16 .bkbg-rp-bar {
17 height: 100%;
18 width: 0%;
19 background: var(--bkbg-rp-color, #2563eb);
20 }
21 .bkbg-rp-bar.bkbg-rp-smooth {
22 transition: width 0.1s linear;
23 }
24
25 .bkbg-rp-pct {
26 position: absolute;
27 right: 8px;
28 top: 50%;
29 transform: translateY(-50%);
30 font-family: var(--bkrp-lt-font-family, inherit);
31 font-size: var(--bkrp-lt-font-size-d, 10px);
32 font-weight: var(--bkrp-lt-font-weight, 700);
33 font-style: var(--bkrp-lt-font-style, normal);
34 text-decoration: var(--bkrp-lt-text-decoration, none);
35 text-transform: var(--bkrp-lt-text-transform, none);
36 line-height: var(--bkrp-lt-line-height-d, 1);
37 letter-spacing: var(--bkrp-lt-letter-spacing-d, normal);
38 word-spacing: var(--bkrp-lt-word-spacing-d, normal);
39 color: #374151;
40 pointer-events: none;
41 }
42
43 @media (max-width: 1024px) {
44 .bkbg-rp-pct {
45 font-size: var(--bkrp-lt-font-size-t, var(--bkrp-lt-font-size-d, 10px));
46 line-height: var(--bkrp-lt-line-height-t, var(--bkrp-lt-line-height-d, 1));
47 letter-spacing: var(--bkrp-lt-letter-spacing-t, var(--bkrp-lt-letter-spacing-d, normal));
48 word-spacing: var(--bkrp-lt-word-spacing-t, var(--bkrp-lt-word-spacing-d, normal));
49 }
50 }
51 @media (max-width: 767px) {
52 .bkbg-rp-pct {
53 font-size: var(--bkrp-lt-font-size-m, var(--bkrp-lt-font-size-t, var(--bkrp-lt-font-size-d, 10px)));
54 line-height: var(--bkrp-lt-line-height-m, var(--bkrp-lt-line-height-t, var(--bkrp-lt-line-height-d, 1)));
55 letter-spacing: var(--bkrp-lt-letter-spacing-m, var(--bkrp-lt-letter-spacing-t, var(--bkrp-lt-letter-spacing-d, normal)));
56 word-spacing: var(--bkrp-lt-word-spacing-m, var(--bkrp-lt-word-spacing-t, var(--bkrp-lt-word-spacing-d, normal)));
57 }
58 }
59