鼓動するセンタードットPulsing Center
.cg-dv-pulse {
display: flex;
align-items: center;
gap: 16px;
width: 240px;
}
.cg-dv-pulse::before,
.cg-dv-pulse::after {
content: "";
flex: 1;
height: 2px;
background: #C9C5BA;
}
.cg-dv-pulse i {
width: 10px;
height: 10px;
border-radius: 50%;
background: #E8590C;
animation: cg-dv-pulse-beat 1.6s ease-out infinite;
}
@keyframes cg-dv-pulse-beat {
0% { box-shadow: 0 0 0 0 rgba(232, 89, 12, .5); }
70%, 100% { box-shadow: 0 0 0 10px rgba(232, 89, 12, 0); }
}
<div class="cg-dv-pulse" role="separator"><i></i></div>