timer, play forwards, import, file document, extension add
This commit is contained in:
44
css/timer.css
Normal file
44
css/timer.css
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user