38 lines
569 B
CSS
38 lines
569 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.share {
|
|
position: relative;
|
|
width: 6px;
|
|
height: 6px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border-radius: 100px;
|
|
background-color: currentColor;
|
|
box-shadow:
|
|
10px -6px 0,
|
|
10px 6px 0;
|
|
}
|
|
|
|
i.icon.share::after,
|
|
i.icon.share::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 2px;
|
|
width: 10px;
|
|
height: 2px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
background-color: currentColor;
|
|
}
|
|
|
|
i.icon.share::before {
|
|
top: 0;
|
|
transform: rotate(-35deg);
|
|
}
|
|
|
|
i.icon.share::after {
|
|
bottom: 0;
|
|
transform: rotate(35deg);
|
|
}
|