timer, play forwards, import, file document, extension add

This commit is contained in:
2026-01-01 18:05:14 +05:00
parent 3b3813315a
commit c4dedad538
5 changed files with 186 additions and 0 deletions

44
css/timer.css Normal file
View File

@@ -0,0 +1,44 @@
@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);
}
}