39 lines
624 B
CSS
39 lines
624 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.crown {
|
|
position: relative;
|
|
width: 19px;
|
|
height: 12px;
|
|
box-sizing: border-box;
|
|
padding-top: 4px;
|
|
display: block;
|
|
border: 2px solid;
|
|
border-top-color: transparent;
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
|
|
&:after,
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -4px;
|
|
width: 8px;
|
|
height: 8px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-bottom: 2px solid;
|
|
border-left: 2px solid;
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
&:before {
|
|
left: -1px;
|
|
border-top-left-radius: 2px;
|
|
}
|
|
|
|
&:after {
|
|
right: -1px;
|
|
border-bottom-right-radius: 2px;
|
|
}
|
|
}
|