45 lines
742 B
CSS
45 lines
742 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.award {
|
|
position: relative;
|
|
width: 16px;
|
|
height: 20px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border: 4px solid transparent;
|
|
border-top: 12px solid transparent;
|
|
border-bottom: 0;
|
|
box-shadow:
|
|
inset 4px 0 0 -2px,
|
|
inset -4px 0 0 -2px;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border: 2px solid;
|
|
}
|
|
|
|
&::before {
|
|
top: -12px;
|
|
left: -3px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 22px;
|
|
}
|
|
|
|
&::after {
|
|
bottom: -3px;
|
|
left: 1px;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-bottom-left-radius: 1px;
|
|
border-top-right-radius: 1px;
|
|
border-right-color: transparent;
|
|
border-bottom-color: transparent;
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|