# presentation/effects/walk.effect.css

> 10 lines of code and 0 definitions.

Tree: Site tree
Language: css
Layer: product
Canonical: https://banes-lab.com/anatomy/tree#file-presentation-effects-walk-effect-css
Source text: https://banes-lab.com/assets/sources/source.a36da3f53111b7f4cd5b79b0aeb2477b92ac67e962affae1367bf5c358e7b22b.generated.txt

## Source

```css
@keyframes hex-pulse {
    0% {
        stroke-opacity: var(--opacity-low);
        stroke-width: var(--hex-flag-width);
    }

    100% {
        stroke-opacity: 1;
        stroke-width: var(--hex-current-width);
    }
}
```
