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