47 lines
712 B
CSS
47 lines
712 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.coffe {
|
|
position: relative;
|
|
margin-top: 3px;
|
|
margin-left: -4px;
|
|
width: 18px;
|
|
height: 14px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 6px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border: 2px solid;
|
|
|
|
&::after,
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&::before {
|
|
top: -7px;
|
|
left: 2px;
|
|
width: 2px;
|
|
height: 4px;
|
|
border-radius: 3px;
|
|
background: currentColor;
|
|
box-shadow:
|
|
4px 0 0,
|
|
8px 0 0;
|
|
}
|
|
|
|
&::after {
|
|
top: -1px;
|
|
right: -6px;
|
|
width: 6px;
|
|
height: 8px;
|
|
border-radius: 100px;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border: 2px solid;
|
|
}
|
|
}
|