35 lines
500 B
CSS
Executable File
35 lines
500 B
CSS
Executable File
@charset "UTF-8";
|
|
|
|
i.icon.lightning {
|
|
position: relative;
|
|
width: 6px;
|
|
height: 21px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
|
|
&:after,
|
|
&:before {
|
|
position: absolute;
|
|
content: '';
|
|
width: 0;
|
|
height: 0;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-right: 3px solid transparent;
|
|
border-left: 3px solid transparent;
|
|
transform: rotate(30deg);
|
|
}
|
|
|
|
&:before {
|
|
top: 0;
|
|
left: 0;
|
|
border-bottom: 12px solid;
|
|
}
|
|
|
|
&:after {
|
|
right: 0;
|
|
bottom: 0;
|
|
border-top: 12px solid;
|
|
}
|
|
}
|