PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / handwriting-text / style.css

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

74 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* === Handwriting Text === */
2 .bkbg-hw-app {
3 display: block;
4 width: 100%;
5 overflow: visible;
6 }
7
8 .bkbg-hw-wrap {
9 display: block;
10 overflow: visible;
11 }
12
13 .bkbg-hw-wrap svg {
14 display: block;
15 overflow: visible;
16 }
17
18 /* The stroke-reveal text */
19 .bkbg-hw-text {
20 fill: none;
21 stroke-linecap: round;
22 stroke-linejoin: round;
23 font-family: var(--bkbg-hw-tt-font-family, 'Dancing Script', cursive);
24 font-size: var(--bkbg-hw-tt-font-size-d, 72px);
25 font-weight: var(--bkbg-hw-tt-font-weight, 700);
26 font-style: var(--bkbg-hw-tt-font-style, normal);
27 letter-spacing: var(--bkbg-hw-tt-letter-spacing-d, normal);
28 word-spacing: var(--bkbg-hw-tt-word-spacing-d, normal);
29 }
30
31 /* After animation: transition to fill */
32 .bkbg-hw-text.bkbg-hw-filled {
33 transition-property: fill;
34 transition-timing-function: ease-in-out;
35 }
36
37 /* Underline path */
38 .bkbg-hw-underline {
39 fill: none;
40 stroke-linecap: round;
41 stroke-linejoin: round;
42 }
43
44 /* Reduced motion: show text immediately */
45 @media (prefers-reduced-motion: reduce) {
46 .bkbg-hw-text {
47 stroke-dashoffset: 0 !important;
48 fill: currentColor !important;
49 transition: none !important;
50 }
51 .bkbg-hw-underline {
52 stroke-dashoffset: 0 !important;
53 transition: none !important;
54 }
55 }
56
57 /* Typography responsive – tablet */
58 @media (max-width: 1024px) {
59 .bkbg-hw-text {
60 font-size: var(--bkbg-hw-tt-font-size-t, var(--bkbg-hw-tt-font-size-d, 72px));
61 letter-spacing: var(--bkbg-hw-tt-letter-spacing-t, var(--bkbg-hw-tt-letter-spacing-d, normal));
62 word-spacing: var(--bkbg-hw-tt-word-spacing-t, var(--bkbg-hw-tt-word-spacing-d, normal));
63 }
64 }
65
66 /* Typography responsive – mobile */
67 @media (max-width: 767px) {
68 .bkbg-hw-text {
69 font-size: var(--bkbg-hw-tt-font-size-m, var(--bkbg-hw-tt-font-size-t, var(--bkbg-hw-tt-font-size-d, 72px)));
70 letter-spacing: var(--bkbg-hw-tt-letter-spacing-m, var(--bkbg-hw-tt-letter-spacing-t, var(--bkbg-hw-tt-letter-spacing-d, normal)));
71 word-spacing: var(--bkbg-hw-tt-word-spacing-m, var(--bkbg-hw-tt-word-spacing-t, var(--bkbg-hw-tt-word-spacing-d, normal)));
72 }
73 }
74