41 lines
637 B
CSS
41 lines
637 B
CSS
@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;
|
|
}
|