63 lines
943 B
CSS
63 lines
943 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.corner {
|
|
position: relative;
|
|
width: 22px;
|
|
height: 22px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
i.icon.corner::after,
|
|
i.icon.corner::before {
|
|
content: "";
|
|
position: absolute;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
i.icon.corner.left::after,
|
|
i.icon.corner.left::before {
|
|
left: 3px;
|
|
}
|
|
|
|
i.icon.corner.right::after,
|
|
i.icon.corner.right::before {
|
|
right: 3px;
|
|
}
|
|
|
|
i.icon.corner::after {
|
|
bottom: 3px;
|
|
width: 8px;
|
|
height: 8px;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
i.icon.corner.left::after {
|
|
border-left: 2px solid;
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
i.icon.corner.right::after {
|
|
border-top: 2px solid;
|
|
border-right: 2px solid;
|
|
}
|
|
|
|
i.icon.corner::before {
|
|
bottom: 6px;
|
|
width: 16px;
|
|
height: 12px;
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
i.icon.corner.left::before {
|
|
border-bottom-right-radius: 4px;
|
|
border-right: 2px solid;
|
|
}
|
|
|
|
i.icon.corner.right::before {
|
|
border-bottom-left-radius: 4px;
|
|
border-left: 2px solid;
|
|
}
|
|
|