added icons and moved to the css directory
This commit is contained in:
37
css/share.css
Normal file
37
css/share.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@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);
|
||||
}
|
||||
Reference in New Issue
Block a user