48 lines
921 B
CSS
48 lines
921 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.phone {
|
|
position: relative;
|
|
width: 22px;
|
|
height: 22px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: '';
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&::after {
|
|
bottom: 2px;
|
|
left: 2px;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-top-left-radius: 1px;
|
|
border-bottom-right-radius: 1px;
|
|
border-bottom-left-radius: 12px;
|
|
border-bottom: 4px solid;
|
|
border-left: 4px solid;
|
|
background:
|
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat right
|
|
11px/6px 4px,
|
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat -1px
|
|
0/4px 6px;
|
|
}
|
|
|
|
&::before {
|
|
bottom: 2px;
|
|
left: 2px;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 6px double;
|
|
border-radius: 50%;
|
|
border-top-color: transparent;
|
|
border-bottom-color: transparent;
|
|
border-left-color: transparent;
|
|
transform: rotate(-45deg);
|
|
}
|
|
}
|