Browse
For agents
About
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
Switch version
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
Overview
Code
blockenberg
/
blocks
/
shape-divider
/
style.css
style.css
in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/shape-divider/style.css
21 lines
554 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/*
── Shape Divider ────────────────────────────────────────────────────────
*/
2
.
bksvd-wrap
{
3
line-height
:
0
;
4
overflow
:
hidden
;
5
}
6
7
.
bksvd-svg
{
8
display
:
block
;
9
}
10
11
@
keyframes
bksvdWave
{
12
0%
{
transform
:
translateX
(
0
)
;
}
13
50%
{
transform
:
translateX
(
-25
%
)
;
}
14
100%
{
transform
:
translateX
(
0
)
;
}
15
}
16
17
.
bksvd-animate
{
18
animation
:
bksvdWave
var
(
--bksvd-speed
,
8
s
)
ease-in-out
infinite
;
19
width
:
200
%
!important
;
20
}
21