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 / values-circle / style.css

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

59 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* =====================================================
2 Values Circle — bkbg-vc-*
3 ===================================================== */
4
5 .bkbg-vc-app {
6 box-sizing: border-box;
7 padding: 24px 16px;
8 }
9
10 /* ── SVG wrapper ── */
11 .bkbg-vc-svg-wrap {
12 margin: 0 auto;
13 max-width: 100%;
14 overflow: visible;
15 }
16
17 /* ── Animate in ── */
18 .bkbg-vc-app.bkbg-vc-animate .bkbg-vc-node-g {
19 opacity: 0;
20 transform: scale(0.7);
21 transform-origin: var(--vc-cx) var(--vc-cy);
22 transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
23 }
24
25 .bkbg-vc-app.bkbg-vc-animate.bkbg-vc-visible .bkbg-vc-node-g {
26 opacity: 1;
27 transform: scale(1);
28 }
29
30 .bkbg-vc-app.bkbg-vc-animate .bkbg-vc-line {
31 stroke-dashoffset: 1;
32 stroke-dasharray: 1;
33 transition: stroke-dasharray .6s ease;
34 }
35
36 .bkbg-vc-app.bkbg-vc-animate.bkbg-vc-visible .bkbg-vc-line {
37 stroke-dasharray: 0 0;
38 }
39
40 /* ── Node hover ── */
41 .bkbg-vc-node-g {
42 cursor: default;
43 }
44
45 .bkbg-vc-node-g:hover .bkbg-vc-node-circle {
46 filter: brightness(1.15);
47 }
48
49 .bkbg-vc-node-g svg { width: 1em; height: 1em; fill: currentColor; }
50 .bkbg-vc-node-g .dashicons { font-size: inherit; width: 1em; height: 1em; line-height: 1; }
51 .bkbg-vc-node-g .bkbg-icon-img { width: 1em; height: 1em; object-fit: contain; }
52
53 /* ── Responsive ── */
54 @media (max-width: 500px) {
55 .bkbg-vc-app {
56 padding: 12px 4px;
57 }
58 }
59