moved from kodorvan/understyle

This commit is contained in:
2025-11-23 17:20:17 +07:00
commit 603ef15147
28 changed files with 1072 additions and 0 deletions

36
arrow_circle.css Normal file
View File

@@ -0,0 +1,36 @@
@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;
}