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

40
comment.css Normal file
View File

@@ -0,0 +1,40 @@
@charset "UTF-8";
i.icon.comment {
position: relative;
width: 20px;
height: 16px;
display: block;
box-sizing: border-box;
border: 2px solid;
border-bottom: 0;
box-shadow:
-6px 8px 0 -6px,
6px 8px 0 -6px;
}
i.icon.comment::after,
i.icon.comment::before {
content: "";
position: absolute;
width: 8px;
display: block;
box-sizing: border-box;
}
i.icon.comment::before {
right: 4px;
bottom: -6px;
height: 6px;
border: 2px solid;
border-top-color: transparent;
border-bottom-left-radius: 20px;
}
i.icon.comment::after {
left: 4px;
top: 4px;
height: 2px;
background-color: currentColor;
box-shadow: 0 4px 0 0;
}