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