ローディング Type2のアイコン
<span class="dli-loading-2"></span>
.dli-loading-2 {
display: inline-block;
vertical-align: middle;
color: #666;
line-height: 1;
width: 1em;
height: 1em;
border: 0.12em solid rgba(102, 102, 102, 0.3);
border-top-color: currentColor;
border-radius: 50%;
box-sizing: border-box;
animation: rotate 1s linear infinite;
}
@keyframes rotate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}