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/file_document.css Executable file
View File

@@ -0,0 +1,44 @@
@charset "UTF-8";
i.icon.file.document {
position: relative;
width: 14px;
height: 16px;
box-sizing: border-box;
display: block;
overflow: hidden;
border-radius: 1px;
border: 2px solid transparent;
border-top: 0;
border-right: 0;
border-top-right-radius: 4px;
box-shadow: 0 0 0 2px;
&:after,
&:before {
position: absolute;
content: '';
box-sizing: border-box;
display: block;
}
&:before {
top: 8px;
left: 0;
width: 10px;
height: 2px;
background: currentColor;
box-shadow:
0 4px 0,
-6px -4px 0;
}
&:after {
top: -1px;
right: -1px;
width: 6px;
height: 6px;
border-bottom: 2px solid;
border-left: 2px solid;
}
}