Files
icons/css/import.css

42 lines
584 B
CSS
Executable File

@charset "UTF-8";
i.icon.import {
position: relative;
width: 18px;
height: 14px;
box-sizing: border-box;
display: block;
border: 2px solid;
border-top: 0;
box-shadow:
-6px -8px 0 -6px,
6px -8px 0 -6px;
&:after,
&:before {
position: absolute;
content: '';
box-sizing: border-box;
display: block;
}
&:before {
bottom: 5px;
right: 6px;
width: 2px;
height: 14px;
background: currentColor;
}
&:after {
bottom: 4px;
right: 4px;
width: 6px;
height: 6px;
border-bottom: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
}
}