37 lines
509 B
CSS
37 lines
509 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.server {
|
|
position: relative;
|
|
width: 16px;
|
|
height: 20px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 3px;
|
|
border: 2px solid;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 2px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
background-color: currentColor;
|
|
}
|
|
|
|
&:before {
|
|
top: 2px;
|
|
left: 2px;
|
|
width: 8px;
|
|
border-radius: 3px;
|
|
box-shadow: 0 4px 0;
|
|
}
|
|
|
|
&::after {
|
|
bottom: 2px;
|
|
left: 5px;
|
|
width: 2px;
|
|
border-radius: 10px;
|
|
}
|
|
}
|