36 lines
448 B
CSS
36 lines
448 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.plus,
|
|
i.icon.plus::after {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
background: currentColor;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
i.icon.plus {
|
|
margin-top: -2px;
|
|
position: relative;
|
|
width: 16px;
|
|
height: 2px;
|
|
}
|
|
|
|
i.icon.plus.small {
|
|
width: 10px;
|
|
}
|
|
|
|
i.icon.plus::after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 16px;
|
|
top: -7px;
|
|
left: 7px;
|
|
}
|
|
|
|
i.icon.plus.small::after {
|
|
height: 10px;
|
|
top: -4px;
|
|
left: 4px;
|
|
}
|