38 lines
542 B
CSS
38 lines
542 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.terminal {
|
|
position: relative;
|
|
width: 24px;
|
|
height: 20px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 2px;
|
|
border: 2px solid;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: '';
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&::before {
|
|
top: 5px;
|
|
left: 3px;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-right: 2px solid;
|
|
border-bottom: 2px solid;
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
&::after {
|
|
top: 10px;
|
|
left: 11px;
|
|
width: 4px;
|
|
height: 2px;
|
|
background-color: currentColor;
|
|
}
|
|
}
|