35 lines
564 B
CSS
35 lines
564 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.user {
|
|
width: 12px;
|
|
height: 18px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
i.icon.user::after,
|
|
i.icon.user::before {
|
|
content: "";
|
|
position: absolute;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border: 2px solid;
|
|
}
|
|
|
|
i.icon.user::before {
|
|
left: 2px;
|
|
top: calc(0px - var(--grow, 0px));
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
i.icon.user::after {
|
|
top: calc(9px - var(--grow, -0px));
|
|
width: 12px;
|
|
height: calc(9px + var(--grow, 0px));
|
|
border-bottom: 0;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
}
|