40 lines
554 B
CSS
40 lines
554 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.site {
|
|
position: relative;
|
|
width: 22px;
|
|
height: 18px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 3px;
|
|
border: 2px solid;
|
|
box-shadow: 0 -1px 0;
|
|
|
|
&::after,
|
|
&::before {
|
|
top: 2px;
|
|
position: absolute;
|
|
content: "";
|
|
width: 6px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&::before {
|
|
left: 2px;
|
|
height: 2px;
|
|
border-radius: 3px;
|
|
background-color: currentColor;
|
|
box-shadow:
|
|
0 4px 0,
|
|
0 8px 0;
|
|
}
|
|
|
|
&::after {
|
|
right: 2px;
|
|
height: 10px;
|
|
border-radius: 1px;
|
|
border: 2px solid;
|
|
}
|
|
}
|