37 lines
580 B
CSS
37 lines
580 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.arrow.circle {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 22px;
|
|
height: 22px;
|
|
border: 2px solid;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
i.icon.arrow.circle::after,
|
|
i.icon.arrow.circle::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
right: 4px;
|
|
}
|
|
|
|
i.icon.arrow.circle::after {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-top: 2px solid;
|
|
border-right: 2px solid;
|
|
transform: rotate(45deg);
|
|
bottom: 6px;
|
|
}
|
|
|
|
i.icon.arrow.circle::before {
|
|
width: 10px;
|
|
height: 2px;
|
|
bottom: 8px;
|
|
background: currentColor;
|
|
}
|