Compare commits
3 Commits
cdce71a3d7
...
stable
| Author | SHA1 | Date | |
|---|---|---|---|
| a7308582a0 | |||
| 369271a9c3 | |||
| d6a92fc4bf |
44
css/award.css
Normal file
44
css/award.css
Normal 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);
|
||||
}
|
||||
}
|
||||
34
css/ethernet.css
Normal file
34
css/ethernet.css
Normal 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;
|
||||
}
|
||||
}
|
||||
59
css/eye.css
Normal file
59
css/eye.css
Normal 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;
|
||||
}
|
||||
}
|
||||
51
css/gift.css
Normal file
51
css/gift.css
Normal 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);
|
||||
}
|
||||
}
|
||||
34
css/list_tree.css
Normal file
34
css/list_tree.css
Normal 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;
|
||||
}
|
||||
}
|
||||
47
css/phone.css
Normal file
47
css/phone.css
Normal 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);
|
||||
}
|
||||
}
|
||||
36
css/server.css
Normal file
36
css/server.css
Normal 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;
|
||||
}
|
||||
}
|
||||
@@ -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
Normal file
37
css/terminal.css
Normal 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;
|
||||
}
|
||||
}
|
||||
38
css/trend.css
Normal file
38
css/trend.css
Normal 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
Normal file
41
css/trophy.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user