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 / text-path / style.css

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

52 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* === Text Path === */
2 .bkbg-tp-app {
3 display: block;
4 width: 100%;
5 }
6
7 .bkbg-tp-wrap {
8 display: block;
9 width: 100%;
10 overflow: visible;
11 }
12
13 .bkbg-tp-wrap svg {
14 display: block;
15 overflow: visible;
16 }
17
18 .bkbg-tp-wrap text {
19 user-select: none;
20 font-family: var(--bktp-tt-font-family, inherit);
21 font-size: var(--bktp-tt-font-size-d, 28px);
22 font-weight: var(--bktp-tt-font-weight, 700);
23 font-style: var(--bktp-tt-font-style, normal);
24 letter-spacing: var(--bktp-tt-letter-spacing-d, 2px);
25 word-spacing: var(--bktp-tt-word-spacing-d, normal);
26 text-decoration: var(--bktp-tt-text-decoration, none);
27 text-transform: var(--bktp-tt-text-transform, none);
28 }
29
30 @media (max-width: 1024px) {
31 .bkbg-tp-wrap text {
32 font-size: var(--bktp-tt-font-size-t, var(--bktp-tt-font-size-d, 28px));
33 letter-spacing: var(--bktp-tt-letter-spacing-t, var(--bktp-tt-letter-spacing-d, 2px));
34 word-spacing: var(--bktp-tt-word-spacing-t, var(--bktp-tt-word-spacing-d, normal));
35 }
36 }
37
38 @media (max-width: 767px) {
39 .bkbg-tp-wrap text {
40 font-size: var(--bktp-tt-font-size-m, var(--bktp-tt-font-size-t, var(--bktp-tt-font-size-d, 28px)));
41 letter-spacing: var(--bktp-tt-letter-spacing-m, var(--bktp-tt-letter-spacing-t, var(--bktp-tt-letter-spacing-d, 2px)));
42 word-spacing: var(--bktp-tt-word-spacing-m, var(--bktp-tt-word-spacing-t, var(--bktp-tt-word-spacing-d, normal)));
43 }
44 }
45
46 /* Reduced motion */
47 @media (prefers-reduced-motion: reduce) {
48 .bkbg-tp-wrap animate {
49 display: none;
50 }
51 }
52