35 lines
508 B
CSS
35 lines
508 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.ethernet {
|
|
position: relative;
|
|
width: 16px;
|
|
height: 20px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border: 2px solid;
|
|
box-shadow: 0 10px 0 -7px;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
top: 6px;
|
|
content: "";
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
&::before {
|
|
left: 2px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border: 2px solid;
|
|
border-top: 0;
|
|
}
|
|
&::after {
|
|
left: -2px;
|
|
width: 16px;
|
|
height: 2px;
|
|
border-left: 6px solid;
|
|
border-right: 6px solid;
|
|
}
|
|
}
|