40 lines
586 B
CSS
40 lines
586 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.enter {
|
|
position: relative;
|
|
width: 16px;
|
|
height: 18px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border: 2px solid;
|
|
border-left: 0;
|
|
box-shadow:
|
|
-8px -6px 0 -6px,
|
|
-8px 6px 0 -6px;
|
|
}
|
|
|
|
i.icon.enter::after,
|
|
i.icon.enter::before {
|
|
content: "";
|
|
position: absolute;
|
|
right: 4px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
i.icon.enter::before {
|
|
top: 6px;
|
|
width: 16px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
}
|
|
|
|
i.icon.enter::after {
|
|
top: 4px;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-right: 2px solid;
|
|
border-top: 2px solid;
|
|
transform: rotate(45deg);
|
|
}
|