45 lines
669 B
CSS
Executable File
45 lines
669 B
CSS
Executable File
@charset "UTF-8";
|
|
|
|
i.icon.file.document {
|
|
position: relative;
|
|
width: 14px;
|
|
height: 16px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
overflow: hidden;
|
|
border-radius: 1px;
|
|
border: 2px solid transparent;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
border-top-right-radius: 4px;
|
|
box-shadow: 0 0 0 2px;
|
|
|
|
&:after,
|
|
&:before {
|
|
position: absolute;
|
|
content: '';
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&:before {
|
|
top: 8px;
|
|
left: 0;
|
|
width: 10px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
box-shadow:
|
|
0 4px 0,
|
|
-6px -4px 0;
|
|
}
|
|
|
|
&:after {
|
|
top: -1px;
|
|
right: -1px;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-bottom: 2px solid;
|
|
border-left: 2px solid;
|
|
}
|
|
}
|