Compare commits
10 Commits
1.2.0
...
c4dedad538
| Author | SHA1 | Date | |
|---|---|---|---|
| c4dedad538 | |||
| 3b3813315a | |||
| 8b80dae685 | |||
| c07dfeeed5 | |||
| a7308582a0 | |||
| 369271a9c3 | |||
| d6a92fc4bf | |||
| cdce71a3d7 | |||
| 9c4fbaeaa2 | |||
| 8a83e90369 |
0
assets/1.png
Normal file → Executable file
0
assets/1.png
Normal file → Executable file
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
0
assets/2.png
Normal file → Executable file
0
assets/2.png
Normal file → Executable file
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
0
assets/3.png
Normal file → Executable file
0
assets/3.png
Normal file → Executable file
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
0
css/arrow.css
Normal file → Executable file
0
css/arrow.css
Normal file → Executable file
0
css/arrow_circle.css
Normal file → Executable file
0
css/arrow_circle.css
Normal file → Executable file
44
css/award.css
Executable file
44
css/award.css
Executable file
@@ -0,0 +1,44 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.award {
|
||||||
|
position: relative;
|
||||||
|
width: 16px;
|
||||||
|
height: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 4px solid transparent;
|
||||||
|
border-top: 12px solid transparent;
|
||||||
|
border-bottom: 0;
|
||||||
|
box-shadow:
|
||||||
|
inset 4px 0 0 -2px,
|
||||||
|
inset -4px 0 0 -2px;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
top: -12px;
|
||||||
|
left: -3px;
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
border-radius: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
bottom: -3px;
|
||||||
|
left: 1px;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-bottom-left-radius: 1px;
|
||||||
|
border-top-right-radius: 1px;
|
||||||
|
border-right-color: transparent;
|
||||||
|
border-bottom-color: transparent;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/calculator.css
Normal file → Executable file
0
css/calculator.css
Normal file → Executable file
16
css/check.css
Normal file → Executable file
16
css/check.css
Normal file → Executable file
@@ -1,9 +1,13 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
|
||||||
i.icon.check {
|
i.icon.check {
|
||||||
|
--width: 2em;
|
||||||
|
--height: 1.5em;
|
||||||
|
--up: 10px;
|
||||||
|
--down: 6px;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 22px;
|
width: var(--width);
|
||||||
height: 22px;
|
height: var(--height);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
@@ -12,10 +16,10 @@ i.icon.check {
|
|||||||
&::after {
|
&::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
content: "";
|
content: "";
|
||||||
top: -1px;
|
top: -0.3em;
|
||||||
left: 3px;
|
left: 0.4em;
|
||||||
width: 6px;
|
width: var(--down);
|
||||||
height: 10px;
|
height: var(--up);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: block;
|
display: block;
|
||||||
border-width: 0 2px 2px 0;
|
border-width: 0 2px 2px 0;
|
||||||
|
|||||||
47
css/close.css
Normal file → Executable file
47
css/close.css
Normal file → Executable file
@@ -1,31 +1,36 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
|
||||||
i.icon.close {
|
i.icon.close {
|
||||||
--diameter: 22px;
|
--diameter: 2em;
|
||||||
box-sizing: border-box;
|
--size: 1.5em;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
|
||||||
width: var(--diameter);
|
width: var(--diameter);
|
||||||
height: var(--diameter);
|
height: var(--diameter);
|
||||||
border: 2px solid transparent;
|
|
||||||
border-radius: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
i.icon.close::after,
|
|
||||||
i.icon.close::before {
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: absolute;
|
display: block;
|
||||||
width: 16px;
|
border-radius: 40px;
|
||||||
height: 2px;
|
border: 0.2em solid transparent;
|
||||||
background: currentColor;
|
|
||||||
transform: rotate(45deg);
|
|
||||||
border-radius: 5px;
|
|
||||||
top: 8px;
|
|
||||||
left: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
i.icon.close::after {
|
&:is(.small) {
|
||||||
|
--size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
top: 0.7em;
|
||||||
|
left: 0.2em;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
width: var(--size, 1.5em);
|
||||||
|
height: 2px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: currentColor;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
transform: rotate(-45deg);
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
0
css/code_slash.css
Normal file → Executable file
0
css/code_slash.css
Normal file → Executable file
0
css/coffe.css
Normal file → Executable file
0
css/coffe.css
Normal file → Executable file
0
css/comment.css
Normal file → Executable file
0
css/comment.css
Normal file → Executable file
0
css/corner.css
Normal file → Executable file
0
css/corner.css
Normal file → Executable file
38
css/crown.css
Executable file
38
css/crown.css
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.crown {
|
||||||
|
position: relative;
|
||||||
|
width: 19px;
|
||||||
|
height: 12px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding-top: 4px;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-bottom-right-radius: 3px;
|
||||||
|
border-bottom-left-radius: 3px;
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: -4px;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
border-left: 2px solid;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
left: -1px;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
right: -1px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/display_grid.css
Normal file → Executable file
0
css/display_grid.css
Normal file → Executable file
0
css/enter.css
Normal file → Executable file
0
css/enter.css
Normal file → Executable file
34
css/ethernet.css
Executable file
34
css/ethernet.css
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.ethernet {
|
||||||
|
position: relative;
|
||||||
|
width: 16px;
|
||||||
|
height: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
box-shadow: 0 10px 0 -7px;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
top: 6px;
|
||||||
|
content: "";
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
&::before {
|
||||||
|
left: 2px;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
border: 2px solid;
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
left: -2px;
|
||||||
|
width: 16px;
|
||||||
|
height: 2px;
|
||||||
|
border-left: 6px solid;
|
||||||
|
border-right: 6px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
29
css/extension_add.css
Executable file
29
css/extension_add.css
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.extension.add {
|
||||||
|
position: relative;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
background:
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat 10px 2px/6px 2px,
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat 12px 0/2px 6px;
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
content: '';
|
||||||
|
width: 8px;
|
||||||
|
height: 14px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
width: 14px;
|
||||||
|
height: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
59
css/eye.css
Executable file
59
css/eye.css
Executable file
@@ -0,0 +1,59 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.eye {
|
||||||
|
position: relative;
|
||||||
|
width: 24px;
|
||||||
|
height: 18px;
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: hidden;
|
||||||
|
border-bottom-right-radius: 100px;
|
||||||
|
border-bottom-left-radius: 100px;
|
||||||
|
|
||||||
|
:is(.small) {
|
||||||
|
width: 21px;
|
||||||
|
height: 15px;
|
||||||
|
border-bottom-right-radius: 70px;
|
||||||
|
border-bottom-left-radius: 70px;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
left: var(--left, 7px);
|
||||||
|
bottom: var(--bottom, 3px);
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
width: 21px;
|
||||||
|
height: 21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-radius: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
left: var(--left, 8px);
|
||||||
|
bottom: var(--bottom, 4px);
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
border: 2px solid var(--text-color-active, #000);
|
||||||
|
transition: var(--transition, 0) ease-out;
|
||||||
|
transform: rotateX(var(--offset-x, 0)) rotateY(var(--offset-y, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
top: 2px;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
box-shadow:
|
||||||
|
inset 0 -8px 0 2px,
|
||||||
|
inset 0 0 0 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
44
css/file_document.css
Executable file
44
css/file_document.css
Executable 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
51
css/gift.css
Executable file
51
css/gift.css
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.gift {
|
||||||
|
position: relative;
|
||||||
|
margin-top: 8px;
|
||||||
|
width: 22px;
|
||||||
|
height: 14px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
background:
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0),
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0),
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0);
|
||||||
|
background-position:
|
||||||
|
8px 0,
|
||||||
|
18px -8px,
|
||||||
|
-2px -8px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size:
|
||||||
|
2px 10px,
|
||||||
|
2px 10px,
|
||||||
|
2px 10px;
|
||||||
|
box-shadow:
|
||||||
|
inset 2px 0 0,
|
||||||
|
inset -2px 0 0,
|
||||||
|
0 -2px 0,
|
||||||
|
inset 0 2px 0,
|
||||||
|
inset 0 -2px 0;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
top: -10px;
|
||||||
|
content: "";
|
||||||
|
width: 6px;
|
||||||
|
height: 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 2px solid;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
left: 3px;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
&::before {
|
||||||
|
right: 3px;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/hashtag.css
Normal file → Executable file
0
css/hashtag.css
Normal file → Executable file
0
css/house.css
Normal file → Executable file
0
css/house.css
Normal file → Executable file
0
css/house_panelka.css
Normal file → Executable file
0
css/house_panelka.css
Normal file → Executable file
41
css/import.css
vendored
Executable file
41
css/import.css
vendored
Executable file
@@ -0,0 +1,41 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.import {
|
||||||
|
position: relative;
|
||||||
|
width: 18px;
|
||||||
|
height: 14px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
border-top: 0;
|
||||||
|
box-shadow:
|
||||||
|
-6px -8px 0 -6px,
|
||||||
|
6px -8px 0 -6px;
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
bottom: 5px;
|
||||||
|
right: 6px;
|
||||||
|
width: 2px;
|
||||||
|
height: 14px;
|
||||||
|
background: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
bottom: 4px;
|
||||||
|
right: 4px;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
border-right: 2px solid;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
40
css/infinity.css
Executable file
40
css/infinity.css
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.infinity {
|
||||||
|
position: relative;
|
||||||
|
width: 10px;
|
||||||
|
height: 18px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 4px solid transparent;
|
||||||
|
background:
|
||||||
|
linear-gradient(to left, currentColor 5px, transparent 0) no-repeat -4px 4px/2px 2px,
|
||||||
|
linear-gradient(to left, currentColor 5px, transparent 0) no-repeat 4px 4px/2px 2px;
|
||||||
|
box-shadow: inset 0 0 0 2px;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-radius: 200px;
|
||||||
|
border: 2px solid;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
top: -4px;
|
||||||
|
left: -8px;
|
||||||
|
border-right-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
top: 4px;
|
||||||
|
right: -8px;
|
||||||
|
border-left-color: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/layout_grid.css
Normal file → Executable file
0
css/layout_grid.css
Normal file → Executable file
34
css/lightning.css
Executable file
34
css/lightning.css
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.lightning {
|
||||||
|
position: relative;
|
||||||
|
width: 6px;
|
||||||
|
height: 21px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-right: 3px solid transparent;
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
transform: rotate(30deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
border-bottom: 12px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
border-top: 12px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/list_add.css
Normal file → Executable file
0
css/list_add.css
Normal file → Executable file
34
css/list_tree.css
Executable file
34
css/list_tree.css
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.list.tree {
|
||||||
|
position: relative;
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
background:
|
||||||
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat left
|
||||||
|
top/8px 8px,
|
||||||
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat center
|
||||||
|
3px/8px 2px,
|
||||||
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat 10px
|
||||||
|
17px/6px 2px,
|
||||||
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat 10px
|
||||||
|
3px/2px 16px;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
content: '';
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border: 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/loading_spinner.css
Normal file → Executable file
0
css/loading_spinner.css
Normal file → Executable file
0
css/minus.css
Normal file → Executable file
0
css/minus.css
Normal file → Executable file
0
css/pen.css
Normal file → Executable file
0
css/pen.css
Normal file → Executable file
47
css/phone.css
Executable file
47
css/phone.css
Executable file
@@ -0,0 +1,47 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.phone {
|
||||||
|
position: relative;
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
bottom: 2px;
|
||||||
|
left: 2px;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-top-left-radius: 1px;
|
||||||
|
border-bottom-right-radius: 1px;
|
||||||
|
border-bottom-left-radius: 12px;
|
||||||
|
border-bottom: 4px solid;
|
||||||
|
border-left: 4px solid;
|
||||||
|
background:
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat right
|
||||||
|
11px/6px 4px,
|
||||||
|
linear-gradient(to left, currentColor 10px, transparent 0) no-repeat -1px
|
||||||
|
0/4px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
bottom: 2px;
|
||||||
|
left: 2px;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border: 6px double;
|
||||||
|
border-radius: 50%;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-bottom-color: transparent;
|
||||||
|
border-left-color: transparent;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/pin.css
Normal file → Executable file
0
css/pin.css
Normal file → Executable file
28
css/play_forwards.css
Normal file
28
css/play_forwards.css
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.play.forwards {
|
||||||
|
position: relative;
|
||||||
|
width: 3px;
|
||||||
|
height: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
background: currentColor;
|
||||||
|
|
||||||
|
&:after,
|
||||||
|
&:before {
|
||||||
|
position: absolute;
|
||||||
|
left: -7px;
|
||||||
|
content: '';
|
||||||
|
width: 0;
|
||||||
|
height: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-top: 5px solid transparent;
|
||||||
|
border-bottom: 5px solid transparent;
|
||||||
|
border-left: 6px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
left: -14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/plus.css
Normal file → Executable file
0
css/plus.css
Normal file → Executable file
0
css/search.css
Normal file → Executable file
0
css/search.css
Normal file → Executable file
36
css/server.css
Executable file
36
css/server.css
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.server {
|
||||||
|
position: relative;
|
||||||
|
width: 16px;
|
||||||
|
height: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 2px solid;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
height: 2px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
background-color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
top: 2px;
|
||||||
|
left: 2px;
|
||||||
|
width: 8px;
|
||||||
|
border-radius: 3px;
|
||||||
|
box-shadow: 0 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
bottom: 2px;
|
||||||
|
left: 5px;
|
||||||
|
width: 2px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/share.css
Normal file → Executable file
0
css/share.css
Normal file → Executable file
0
css/shopping_bag.css
Normal file → Executable file
0
css/shopping_bag.css
Normal file → Executable file
0
css/shopping_cart.css
Normal file → Executable file
0
css/shopping_cart.css
Normal file → Executable file
0
css/site.css
Normal file → Executable file
0
css/site.css
Normal file → Executable file
0
css/smile.css
Normal file → Executable file
0
css/smile.css
Normal file → Executable file
@@ -1,33 +0,0 @@
|
|||||||
@charset "UTF-8";
|
|
||||||
|
|
||||||
i.icon.telegram {
|
|
||||||
position: relative;
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
background-color: transparent;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
top: 2px;
|
|
||||||
left: 2px;
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
top: 7px;
|
|
||||||
left: 9px;
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-left: 5px solid transparent;
|
|
||||||
border-right: 5px solid transparent;
|
|
||||||
border-bottom: 8px solid currentColor;
|
|
||||||
color: #ffffff;
|
|
||||||
transform: rotate(-30deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
37
css/terminal.css
Executable file
37
css/terminal.css
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.terminal {
|
||||||
|
position: relative;
|
||||||
|
width: 24px;
|
||||||
|
height: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 2px solid;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
top: 5px;
|
||||||
|
left: 3px;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-right: 2px solid;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
top: 10px;
|
||||||
|
left: 11px;
|
||||||
|
width: 4px;
|
||||||
|
height: 2px;
|
||||||
|
background-color: currentColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/trash.css
Normal file → Executable file
0
css/trash.css
Normal file → Executable file
38
css/trend.css
Executable file
38
css/trend.css
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.trend {
|
||||||
|
position: relative;
|
||||||
|
width: 10px;
|
||||||
|
height: 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-top: 2px solid;
|
||||||
|
border-right: 2px solid;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
bottom: 0;
|
||||||
|
left: 8px;
|
||||||
|
width: 10px;
|
||||||
|
height: 2px;
|
||||||
|
background-color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
right: -14px;
|
||||||
|
bottom: -3px;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-top: 4px solid transparent;
|
||||||
|
border-bottom: 4px solid transparent;
|
||||||
|
border-left: 6px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
41
css/trophy.css
Executable file
41
css/trophy.css
Executable file
@@ -0,0 +1,41 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.trophy {
|
||||||
|
position: relative;
|
||||||
|
width: 10px;
|
||||||
|
height: 12px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
border-bottom-right-radius: 100px;
|
||||||
|
border-bottom-left-radius: 100px;
|
||||||
|
border: 2px solid;
|
||||||
|
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
bottom: -4px;
|
||||||
|
left: 0;
|
||||||
|
width: 6px;
|
||||||
|
height: 4px;
|
||||||
|
border-right: 2px solid transparent;
|
||||||
|
border-left: 2px solid transparent;
|
||||||
|
box-shadow:
|
||||||
|
inset 0 0 0 2px,
|
||||||
|
0 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
top: 0;
|
||||||
|
left: -5px;
|
||||||
|
width: 16px;
|
||||||
|
height: 6px;
|
||||||
|
border-right: 2px solid;
|
||||||
|
border-left: 2px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
css/user.css
Normal file → Executable file
0
css/user.css
Normal file → Executable file
27
css/work.css
Executable file
27
css/work.css
Executable file
@@ -0,0 +1,27 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
i.icon.work,
|
||||||
|
i.icon.work::after {
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
box-shadow: 0 0 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
i.icon.work {
|
||||||
|
position: relative;
|
||||||
|
width: 14px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
i.icon.work::after {
|
||||||
|
top: -3px;
|
||||||
|
left: 4px;
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
width: 6px;
|
||||||
|
height: 1px;
|
||||||
|
border-top-right-radius: 1px;
|
||||||
|
border-top-left-radius: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user