28 lines
396 B
CSS
Executable File
28 lines
396 B
CSS
Executable File
@charset "UTF-8";
|
|
|
|
i.icon.work,
|
|
i.icon.work::after {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 0 0 2px;
|
|
}
|
|
|
|
i.icon.work {
|
|
position: relative;
|
|
width: 14px;
|
|
height: 10px;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
i.icon.work::after {
|
|
top: -3px;
|
|
left: 4px;
|
|
position: absolute;
|
|
content: '';
|
|
width: 6px;
|
|
height: 1px;
|
|
border-top-right-radius: 1px;
|
|
border-top-left-radius: 1px;
|
|
}
|
|
|