# blockenberg/2.0.7/blocks/values-circle/style.css

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 59 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/values-circle/style.css
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/values-circle/style.css
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/values-circle/style.css#L10-L20`.

```css
/* =====================================================
   Values Circle — bkbg-vc-*
   ===================================================== */

.bkbg-vc-app {
    box-sizing: border-box;
    padding: 24px 16px;
}

/* ── SVG wrapper ── */
.bkbg-vc-svg-wrap {
    margin: 0 auto;
    max-width: 100%;
    overflow: visible;
}

/* ── Animate in ── */
.bkbg-vc-app.bkbg-vc-animate .bkbg-vc-node-g {
    opacity: 0;
    transform: scale(0.7);
    transform-origin: var(--vc-cx) var(--vc-cy);
    transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
}

.bkbg-vc-app.bkbg-vc-animate.bkbg-vc-visible .bkbg-vc-node-g {
    opacity: 1;
    transform: scale(1);
}

.bkbg-vc-app.bkbg-vc-animate .bkbg-vc-line {
    stroke-dashoffset: 1;
    stroke-dasharray: 1;
    transition: stroke-dasharray .6s ease;
}

.bkbg-vc-app.bkbg-vc-animate.bkbg-vc-visible .bkbg-vc-line {
    stroke-dasharray: 0 0;
}

/* ── Node hover ── */
.bkbg-vc-node-g {
    cursor: default;
}

.bkbg-vc-node-g:hover .bkbg-vc-node-circle {
    filter: brightness(1.15);
}

.bkbg-vc-node-g svg { width: 1em; height: 1em; fill: currentColor; }
.bkbg-vc-node-g .dashicons { font-size: inherit; width: 1em; height: 1em; line-height: 1; }
.bkbg-vc-node-g .bkbg-icon-img { width: 1em; height: 1em; object-fit: contain; }

/* ── Responsive ── */
@media (max-width: 500px) {
    .bkbg-vc-app {
        padding: 12px 4px;
    }
}

```
