42 lines
650 B
CSS
42 lines
650 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.trophy {
|
|
position: relative;
|
|
width: 10px;
|
|
height: 12px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-bottom-right-radius: 100px;
|
|
border-bottom-left-radius: 100px;
|
|
border: 2px solid;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: '';
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&::before {
|
|
bottom: -4px;
|
|
left: 0;
|
|
width: 6px;
|
|
height: 4px;
|
|
border-right: 2px solid transparent;
|
|
border-left: 2px solid transparent;
|
|
box-shadow:
|
|
inset 0 0 0 2px,
|
|
0 2px 0 0;
|
|
}
|
|
|
|
&::after {
|
|
top: 0;
|
|
left: -5px;
|
|
width: 16px;
|
|
height: 6px;
|
|
border-right: 2px solid;
|
|
border-left: 2px solid;
|
|
}
|
|
}
|