may 2 update - new icons, html docs, yaml spec
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M424 160H24c-13.2 0-24-10.8-24-24V88c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v48c0 13.2-10.8 24-24 24zM424 448H24c-13.2 0-24-10.8-24-24v-48c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v48c0 13.2-10.8 24-24 24zM424 304H24c-13.2 0-24-10.8-24-24v-48c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v48c0 13.2-10.8 24-24 24z"/></svg>
|
||||
|
Before Width: | Height: | Size: 434 B |
1
icons/solid/css/embedded-woff.css
Executable file
1
icons/solid/css/embedded-woff2.css
Executable file
1
icons/solid/css/external-min.css
vendored
Executable file
593
icons/solid/css/external.css
Executable file
@@ -0,0 +1,593 @@
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Fa5Solid';
|
||||
src: url('../icons/icons.eot');
|
||||
src: url('../icons/icons.eot?#iefix') format('embedded-opentype'),
|
||||
url('../icons/icons.woff2') format('woff2'),
|
||||
url('../icons/icons.woff') format('woff'),
|
||||
url('../icons/icons.ttf') format('truetype'),
|
||||
url('../icons/icons.otf') format('opentype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.fas {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 'Fa5Solid';
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
|
||||
.fas-lg {
|
||||
font-size: 1.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%;
|
||||
}
|
||||
|
||||
.fas-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.fas-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.fas-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.fas-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-fw {
|
||||
width: 1.28571429em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-ul {
|
||||
padding-left: 0;
|
||||
margin-left: 2.14285714em;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.fas-ul> li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fas-li {
|
||||
position: absolute;
|
||||
left: -2.14285714em;
|
||||
width: 2.14285714em;
|
||||
top: 0.14285714em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fas-li.fas-lg {
|
||||
left: -1.85714286em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid 0.08em #eeeeee;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.pull-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.fas.pull-left {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.fas.pull-right {
|
||||
margin-left: .3em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-spin {
|
||||
-webkit-animation: fas-spin 2s infinite linear;
|
||||
animation: fas-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.fas-pulse {
|
||||
-webkit-animation: fas-spin 1s infinite steps(8);
|
||||
animation: fas-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fas-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fas-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-rotate-90 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.fas-rotate-180 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.fas-rotate-270 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.fas-flip-horizontal {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
.fas-flip-vertical {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(1, -1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
:root .fas-rotate-90,
|
||||
:root .fas-rotate-180,
|
||||
:root .fas-rotate-270,
|
||||
:root .fas-flip-horizontal,
|
||||
:root .fas-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.fas-stack-1x,
|
||||
.fas-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fas-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.fas-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.fas-inverse {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-jack-o-lantern:before {
|
||||
content: '\f004';
|
||||
}
|
||||
|
||||
.fas-envelope:before {
|
||||
content: '\2709';
|
||||
}
|
||||
|
||||
.fas-pen-square:before {
|
||||
content: '\f013';
|
||||
}
|
||||
|
||||
.fas-utensils-alt:before {
|
||||
content: '\f017';
|
||||
}
|
||||
|
||||
.fas-pencil-alt:before {
|
||||
content: '\f018';
|
||||
}
|
||||
|
||||
.fas-pen-alt:before {
|
||||
content: '\f019';
|
||||
}
|
||||
|
||||
.fas-paint-brush:before {
|
||||
content: '\f01a';
|
||||
}
|
||||
|
||||
.fas-paper-plane:before {
|
||||
content: '\f01c';
|
||||
}
|
||||
|
||||
.fas-poo:before {
|
||||
content: '\f01d';
|
||||
}
|
||||
|
||||
.fas-star-exclamation:before {
|
||||
content: '\f01e';
|
||||
}
|
||||
|
||||
.fas-coffee:before {
|
||||
content: '\f01f';
|
||||
}
|
||||
|
||||
.fas-trophy:before {
|
||||
content: '\f020';
|
||||
}
|
||||
|
||||
.fas-trophy-alt:before {
|
||||
content: '\f021';
|
||||
}
|
||||
|
||||
.fas-star:before {
|
||||
content: '\f023';
|
||||
}
|
||||
|
||||
.fas-times-circle:before {
|
||||
content: '\f024';
|
||||
}
|
||||
|
||||
.fas-smile:before {
|
||||
content: '\f025';
|
||||
}
|
||||
|
||||
.fas-magic:before {
|
||||
content: '\f026';
|
||||
}
|
||||
|
||||
.fas-camera-retro:before {
|
||||
content: '\f028';
|
||||
}
|
||||
|
||||
.fas-pencil:before {
|
||||
content: '\f029';
|
||||
}
|
||||
|
||||
.fas-bullhorn:before {
|
||||
content: '\f02b';
|
||||
}
|
||||
|
||||
.fas-code:before {
|
||||
content: '\f02c';
|
||||
}
|
||||
|
||||
.fas-bomb:before {
|
||||
content: '\f02d';
|
||||
}
|
||||
|
||||
.fas-utensils:before {
|
||||
content: '\f02e';
|
||||
}
|
||||
|
||||
.fas-utensil-fork:before {
|
||||
content: '\f02f';
|
||||
}
|
||||
|
||||
.fas-utensil-knife:before {
|
||||
content: '\f030';
|
||||
}
|
||||
|
||||
.fas-utensil-spoon:before {
|
||||
content: '\f031';
|
||||
}
|
||||
|
||||
.fas-thumbs-up:before {
|
||||
content: '\f032';
|
||||
}
|
||||
|
||||
.fas-lock-alt:before {
|
||||
content: '\f033';
|
||||
}
|
||||
|
||||
.fas-edit:before {
|
||||
content: '\f034';
|
||||
}
|
||||
|
||||
.fas-book:before {
|
||||
content: '\1F4D5';
|
||||
}
|
||||
|
||||
.fas-pen:before {
|
||||
content: '\f037';
|
||||
}
|
||||
|
||||
.fas-camera-alt:before {
|
||||
content: '\f038';
|
||||
}
|
||||
|
||||
.fas-camera:before {
|
||||
content: '\1F4F7';
|
||||
}
|
||||
|
||||
.fas-print:before {
|
||||
content: '\f03c';
|
||||
}
|
||||
|
||||
.fas-comment:before {
|
||||
content: '\f03d';
|
||||
}
|
||||
|
||||
.fas-comment-alt:before {
|
||||
content: '\f03e';
|
||||
}
|
||||
|
||||
.fas-gamepad:before {
|
||||
content: '\f03f';
|
||||
}
|
||||
|
||||
.fas-trash:before {
|
||||
content: '\f040';
|
||||
}
|
||||
|
||||
.fas-trash-alt:before {
|
||||
content: '\f041';
|
||||
}
|
||||
|
||||
.fas-leaf:before {
|
||||
content: '\f042';
|
||||
}
|
||||
|
||||
.fas-flask:before {
|
||||
content: '\f043';
|
||||
}
|
||||
|
||||
.fas-rocket:before {
|
||||
content: '\f044';
|
||||
}
|
||||
|
||||
.fas-lock:before {
|
||||
content: '\f045';
|
||||
}
|
||||
|
||||
.fas-home:before {
|
||||
content: '\f046';
|
||||
}
|
||||
|
||||
.fas-search:before {
|
||||
content: '\f047';
|
||||
}
|
||||
|
||||
.fas-bars:before {
|
||||
content: '\f048';
|
||||
}
|
||||
|
||||
.fas-plus-circle:before {
|
||||
content: '\f049';
|
||||
}
|
||||
|
||||
.fas-exclamation-triangle:before {
|
||||
content: '\f04a';
|
||||
}
|
||||
|
||||
.fas-thumbs-down:before {
|
||||
content: '\f04b';
|
||||
}
|
||||
|
||||
.fas-file:before {
|
||||
content: '\f04c';
|
||||
}
|
||||
|
||||
.fas-file-alt:before {
|
||||
content: '\f04d';
|
||||
}
|
||||
|
||||
.fas-search-plus:before {
|
||||
content: '\f04e';
|
||||
}
|
||||
|
||||
.fas-search-minus:before {
|
||||
content: '\f04f';
|
||||
}
|
||||
|
||||
.fas-martini-glass:before {
|
||||
content: '\f050';
|
||||
}
|
||||
|
||||
.fas-music:before {
|
||||
content: '\f051';
|
||||
}
|
||||
|
||||
.fas-user:before {
|
||||
content: '\f052';
|
||||
}
|
||||
|
||||
.fas-film:before {
|
||||
content: '\f053';
|
||||
}
|
||||
|
||||
.fas-th-large:before {
|
||||
content: '\f054';
|
||||
}
|
||||
|
||||
.fas-th:before {
|
||||
content: '\f055';
|
||||
}
|
||||
|
||||
.fas-th-list:before {
|
||||
content: '\f056';
|
||||
}
|
||||
|
||||
.fas-check:before {
|
||||
content: '\f057';
|
||||
}
|
||||
|
||||
.fas-check-square:before {
|
||||
content: '\f058';
|
||||
}
|
||||
|
||||
.fas-check-circle:before {
|
||||
content: '\f059';
|
||||
}
|
||||
|
||||
.fas-times:before {
|
||||
content: '\f05b';
|
||||
}
|
||||
|
||||
.fas-times-square:before {
|
||||
content: '\f05c';
|
||||
}
|
||||
|
||||
.fas-plus:before {
|
||||
content: '\f05d';
|
||||
}
|
||||
|
||||
.fas-plus-square:before {
|
||||
content: '\f05e';
|
||||
}
|
||||
|
||||
.fas-minus:before {
|
||||
content: '\f05f';
|
||||
}
|
||||
|
||||
.fas-minus-square:before {
|
||||
content: '\f060';
|
||||
}
|
||||
|
||||
.fas-minus-circle:before {
|
||||
content: '\f061';
|
||||
}
|
||||
|
||||
.fas-heart:before {
|
||||
content: '\f062';
|
||||
}
|
||||
|
||||
.fas-diamond:before {
|
||||
content: '\f063';
|
||||
}
|
||||
|
||||
.fas-spade:before {
|
||||
content: '\f064';
|
||||
}
|
||||
|
||||
.fas-club:before {
|
||||
content: '\f065';
|
||||
}
|
||||
|
||||
.fas-square:before {
|
||||
content: '\f066';
|
||||
}
|
||||
|
||||
.fas-circle:before {
|
||||
content: '\f067';
|
||||
}
|
||||
|
||||
.fas-octagon:before {
|
||||
content: '\f068';
|
||||
}
|
||||
|
||||
.fas-hexagon:before {
|
||||
content: '\f069';
|
||||
}
|
||||
|
||||
.fas-triangle:before {
|
||||
content: '\f06a';
|
||||
}
|
||||
|
||||
.fas-shield:before {
|
||||
content: '\f06b';
|
||||
}
|
||||
|
||||
.fas-badge:before {
|
||||
content: '\f06c';
|
||||
}
|
||||
|
||||
.fas-shield-check:before {
|
||||
content: '\f06d';
|
||||
}
|
||||
|
||||
.fas-badge-check:before {
|
||||
content: '\f06e';
|
||||
}
|
||||
|
||||
.fas-times-octagon:before {
|
||||
content: '\f06f';
|
||||
}
|
||||
|
||||
.fas-times-hexagon:before {
|
||||
content: '\f070';
|
||||
}
|
||||
|
||||
.fas-plus-octagon:before {
|
||||
content: '\f071';
|
||||
}
|
||||
|
||||
.fas-plus-hexagon:before {
|
||||
content: '\f072';
|
||||
}
|
||||
|
||||
.fas-minus-octagon:before {
|
||||
content: '\f073';
|
||||
}
|
||||
|
||||
.fas-minus-hexagon:before {
|
||||
content: '\f074';
|
||||
}
|
||||
|
||||
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
border: 0
|
||||
}
|
||||
|
||||
.sr-only-focusable:active,
|
||||
.sr-only-focusable:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto
|
||||
}
|
||||
1
icons/solid/css/ie-only-min.css
vendored
Executable file
587
icons/solid/css/ie-only.css
Executable file
@@ -0,0 +1,587 @@
|
||||
@font-face {
|
||||
font-family: 'Fa5Solid';
|
||||
src: url('../icons/icons.eot');
|
||||
src: url('../icons/icons.eot?#iefix') format('embedded-opentype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.fas {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 'Fa5Solid';
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
|
||||
.fas-lg {
|
||||
font-size: 1.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%;
|
||||
}
|
||||
|
||||
.fas-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.fas-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.fas-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.fas-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-fw {
|
||||
width: 1.28571429em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-ul {
|
||||
padding-left: 0;
|
||||
margin-left: 2.14285714em;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.fas-ul> li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fas-li {
|
||||
position: absolute;
|
||||
left: -2.14285714em;
|
||||
width: 2.14285714em;
|
||||
top: 0.14285714em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fas-li.fas-lg {
|
||||
left: -1.85714286em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid 0.08em #eeeeee;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.pull-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.fas.pull-left {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.fas.pull-right {
|
||||
margin-left: .3em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-spin {
|
||||
-webkit-animation: fas-spin 2s infinite linear;
|
||||
animation: fas-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.fas-pulse {
|
||||
-webkit-animation: fas-spin 1s infinite steps(8);
|
||||
animation: fas-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fas-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fas-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-rotate-90 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.fas-rotate-180 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.fas-rotate-270 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.fas-flip-horizontal {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
.fas-flip-vertical {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(1, -1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
:root .fas-rotate-90,
|
||||
:root .fas-rotate-180,
|
||||
:root .fas-rotate-270,
|
||||
:root .fas-flip-horizontal,
|
||||
:root .fas-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.fas-stack-1x,
|
||||
.fas-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fas-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.fas-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.fas-inverse {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fas-jack-o-lantern:before {
|
||||
content: '\f004';
|
||||
}
|
||||
|
||||
.fas-envelope:before {
|
||||
content: '\2709';
|
||||
}
|
||||
|
||||
.fas-pen-square:before {
|
||||
content: '\f013';
|
||||
}
|
||||
|
||||
.fas-utensils-alt:before {
|
||||
content: '\f017';
|
||||
}
|
||||
|
||||
.fas-pencil-alt:before {
|
||||
content: '\f018';
|
||||
}
|
||||
|
||||
.fas-pen-alt:before {
|
||||
content: '\f019';
|
||||
}
|
||||
|
||||
.fas-paint-brush:before {
|
||||
content: '\f01a';
|
||||
}
|
||||
|
||||
.fas-paper-plane:before {
|
||||
content: '\f01c';
|
||||
}
|
||||
|
||||
.fas-poo:before {
|
||||
content: '\f01d';
|
||||
}
|
||||
|
||||
.fas-star-exclamation:before {
|
||||
content: '\f01e';
|
||||
}
|
||||
|
||||
.fas-coffee:before {
|
||||
content: '\f01f';
|
||||
}
|
||||
|
||||
.fas-trophy:before {
|
||||
content: '\f020';
|
||||
}
|
||||
|
||||
.fas-trophy-alt:before {
|
||||
content: '\f021';
|
||||
}
|
||||
|
||||
.fas-star:before {
|
||||
content: '\f023';
|
||||
}
|
||||
|
||||
.fas-times-circle:before {
|
||||
content: '\f024';
|
||||
}
|
||||
|
||||
.fas-smile:before {
|
||||
content: '\f025';
|
||||
}
|
||||
|
||||
.fas-magic:before {
|
||||
content: '\f026';
|
||||
}
|
||||
|
||||
.fas-camera-retro:before {
|
||||
content: '\f028';
|
||||
}
|
||||
|
||||
.fas-pencil:before {
|
||||
content: '\f029';
|
||||
}
|
||||
|
||||
.fas-bullhorn:before {
|
||||
content: '\f02b';
|
||||
}
|
||||
|
||||
.fas-code:before {
|
||||
content: '\f02c';
|
||||
}
|
||||
|
||||
.fas-bomb:before {
|
||||
content: '\f02d';
|
||||
}
|
||||
|
||||
.fas-utensils:before {
|
||||
content: '\f02e';
|
||||
}
|
||||
|
||||
.fas-utensil-fork:before {
|
||||
content: '\f02f';
|
||||
}
|
||||
|
||||
.fas-utensil-knife:before {
|
||||
content: '\f030';
|
||||
}
|
||||
|
||||
.fas-utensil-spoon:before {
|
||||
content: '\f031';
|
||||
}
|
||||
|
||||
.fas-thumbs-up:before {
|
||||
content: '\f032';
|
||||
}
|
||||
|
||||
.fas-lock-alt:before {
|
||||
content: '\f033';
|
||||
}
|
||||
|
||||
.fas-edit:before {
|
||||
content: '\f034';
|
||||
}
|
||||
|
||||
.fas-book:before {
|
||||
content: '\1F4D5';
|
||||
}
|
||||
|
||||
.fas-pen:before {
|
||||
content: '\f037';
|
||||
}
|
||||
|
||||
.fas-camera-alt:before {
|
||||
content: '\f038';
|
||||
}
|
||||
|
||||
.fas-camera:before {
|
||||
content: '\1F4F7';
|
||||
}
|
||||
|
||||
.fas-print:before {
|
||||
content: '\f03c';
|
||||
}
|
||||
|
||||
.fas-comment:before {
|
||||
content: '\f03d';
|
||||
}
|
||||
|
||||
.fas-comment-alt:before {
|
||||
content: '\f03e';
|
||||
}
|
||||
|
||||
.fas-gamepad:before {
|
||||
content: '\f03f';
|
||||
}
|
||||
|
||||
.fas-trash:before {
|
||||
content: '\f040';
|
||||
}
|
||||
|
||||
.fas-trash-alt:before {
|
||||
content: '\f041';
|
||||
}
|
||||
|
||||
.fas-leaf:before {
|
||||
content: '\f042';
|
||||
}
|
||||
|
||||
.fas-flask:before {
|
||||
content: '\f043';
|
||||
}
|
||||
|
||||
.fas-rocket:before {
|
||||
content: '\f044';
|
||||
}
|
||||
|
||||
.fas-lock:before {
|
||||
content: '\f045';
|
||||
}
|
||||
|
||||
.fas-home:before {
|
||||
content: '\f046';
|
||||
}
|
||||
|
||||
.fas-search:before {
|
||||
content: '\f047';
|
||||
}
|
||||
|
||||
.fas-bars:before {
|
||||
content: '\f048';
|
||||
}
|
||||
|
||||
.fas-plus-circle:before {
|
||||
content: '\f049';
|
||||
}
|
||||
|
||||
.fas-exclamation-triangle:before {
|
||||
content: '\f04a';
|
||||
}
|
||||
|
||||
.fas-thumbs-down:before {
|
||||
content: '\f04b';
|
||||
}
|
||||
|
||||
.fas-file:before {
|
||||
content: '\f04c';
|
||||
}
|
||||
|
||||
.fas-file-alt:before {
|
||||
content: '\f04d';
|
||||
}
|
||||
|
||||
.fas-search-plus:before {
|
||||
content: '\f04e';
|
||||
}
|
||||
|
||||
.fas-search-minus:before {
|
||||
content: '\f04f';
|
||||
}
|
||||
|
||||
.fas-martini-glass:before {
|
||||
content: '\f050';
|
||||
}
|
||||
|
||||
.fas-music:before {
|
||||
content: '\f051';
|
||||
}
|
||||
|
||||
.fas-user:before {
|
||||
content: '\f052';
|
||||
}
|
||||
|
||||
.fas-film:before {
|
||||
content: '\f053';
|
||||
}
|
||||
|
||||
.fas-th-large:before {
|
||||
content: '\f054';
|
||||
}
|
||||
|
||||
.fas-th:before {
|
||||
content: '\f055';
|
||||
}
|
||||
|
||||
.fas-th-list:before {
|
||||
content: '\f056';
|
||||
}
|
||||
|
||||
.fas-check:before {
|
||||
content: '\f057';
|
||||
}
|
||||
|
||||
.fas-check-square:before {
|
||||
content: '\f058';
|
||||
}
|
||||
|
||||
.fas-check-circle:before {
|
||||
content: '\f059';
|
||||
}
|
||||
|
||||
.fas-times:before {
|
||||
content: '\f05b';
|
||||
}
|
||||
|
||||
.fas-times-square:before {
|
||||
content: '\f05c';
|
||||
}
|
||||
|
||||
.fas-plus:before {
|
||||
content: '\f05d';
|
||||
}
|
||||
|
||||
.fas-plus-square:before {
|
||||
content: '\f05e';
|
||||
}
|
||||
|
||||
.fas-minus:before {
|
||||
content: '\f05f';
|
||||
}
|
||||
|
||||
.fas-minus-square:before {
|
||||
content: '\f060';
|
||||
}
|
||||
|
||||
.fas-minus-circle:before {
|
||||
content: '\f061';
|
||||
}
|
||||
|
||||
.fas-heart:before {
|
||||
content: '\f062';
|
||||
}
|
||||
|
||||
.fas-diamond:before {
|
||||
content: '\f063';
|
||||
}
|
||||
|
||||
.fas-spade:before {
|
||||
content: '\f064';
|
||||
}
|
||||
|
||||
.fas-club:before {
|
||||
content: '\f065';
|
||||
}
|
||||
|
||||
.fas-square:before {
|
||||
content: '\f066';
|
||||
}
|
||||
|
||||
.fas-circle:before {
|
||||
content: '\f067';
|
||||
}
|
||||
|
||||
.fas-octagon:before {
|
||||
content: '\f068';
|
||||
}
|
||||
|
||||
.fas-hexagon:before {
|
||||
content: '\f069';
|
||||
}
|
||||
|
||||
.fas-triangle:before {
|
||||
content: '\f06a';
|
||||
}
|
||||
|
||||
.fas-shield:before {
|
||||
content: '\f06b';
|
||||
}
|
||||
|
||||
.fas-badge:before {
|
||||
content: '\f06c';
|
||||
}
|
||||
|
||||
.fas-shield-check:before {
|
||||
content: '\f06d';
|
||||
}
|
||||
|
||||
.fas-badge-check:before {
|
||||
content: '\f06e';
|
||||
}
|
||||
|
||||
.fas-times-octagon:before {
|
||||
content: '\f06f';
|
||||
}
|
||||
|
||||
.fas-times-hexagon:before {
|
||||
content: '\f070';
|
||||
}
|
||||
|
||||
.fas-plus-octagon:before {
|
||||
content: '\f071';
|
||||
}
|
||||
|
||||
.fas-plus-hexagon:before {
|
||||
content: '\f072';
|
||||
}
|
||||
|
||||
.fas-minus-octagon:before {
|
||||
content: '\f073';
|
||||
}
|
||||
|
||||
.fas-minus-hexagon:before {
|
||||
content: '\f074';
|
||||
}
|
||||
|
||||
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
border: 0
|
||||
}
|
||||
|
||||
.sr-only-focusable:active,
|
||||
.sr-only-focusable:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto
|
||||
}
|
||||
25
icons/solid/css/less/mixins.less
Executable file
@@ -0,0 +1,25 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
.fas-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fas-font-size-base/@fas-line-height-base "Fa5Solid";
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.fas-icon-rotate(@degrees, @rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
|
||||
-webkit-transform: rotate(@degrees);
|
||||
-ms-transform: rotate(@degrees);
|
||||
transform: rotate(@degrees);
|
||||
}
|
||||
|
||||
.fas-icon-flip(@horiz, @vert, @rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
|
||||
-webkit-transform: scale(@horiz, @vert);
|
||||
-ms-transform: scale(@horiz, @vert);
|
||||
transform: scale(@horiz, @vert);
|
||||
}
|
||||
185
icons/solid/css/less/variables.less
Executable file
@@ -0,0 +1,185 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
@fas-font-size-base: 14px;
|
||||
@fas-line-height-base: 1;
|
||||
|
||||
|
||||
@fas-var-jack-o-lantern: "\f004";
|
||||
|
||||
@fas-var-envelope: "\2709";
|
||||
|
||||
@fas-var-pen-square: "\f013";
|
||||
|
||||
@fas-var-utensils-alt: "\f017";
|
||||
|
||||
@fas-var-pencil-alt: "\f018";
|
||||
|
||||
@fas-var-pen-alt: "\f019";
|
||||
|
||||
@fas-var-paint-brush: "\f01a";
|
||||
|
||||
@fas-var-paper-plane: "\f01c";
|
||||
|
||||
@fas-var-poo: "\f01d";
|
||||
|
||||
@fas-var-star-exclamation: "\f01e";
|
||||
|
||||
@fas-var-coffee: "\f01f";
|
||||
|
||||
@fas-var-trophy: "\f020";
|
||||
|
||||
@fas-var-trophy-alt: "\f021";
|
||||
|
||||
@fas-var-star: "\f023";
|
||||
|
||||
@fas-var-times-circle: "\f024";
|
||||
|
||||
@fas-var-smile: "\f025";
|
||||
|
||||
@fas-var-magic: "\f026";
|
||||
|
||||
@fas-var-camera-retro: "\f028";
|
||||
|
||||
@fas-var-pencil: "\f029";
|
||||
|
||||
@fas-var-bullhorn: "\f02b";
|
||||
|
||||
@fas-var-code: "\f02c";
|
||||
|
||||
@fas-var-bomb: "\f02d";
|
||||
|
||||
@fas-var-utensils: "\f02e";
|
||||
|
||||
@fas-var-utensil-fork: "\f02f";
|
||||
|
||||
@fas-var-utensil-knife: "\f030";
|
||||
|
||||
@fas-var-utensil-spoon: "\f031";
|
||||
|
||||
@fas-var-thumbs-up: "\f032";
|
||||
|
||||
@fas-var-lock-alt: "\f033";
|
||||
|
||||
@fas-var-edit: "\f034";
|
||||
|
||||
@fas-var-book: "\1F4D5";
|
||||
|
||||
@fas-var-pen: "\f037";
|
||||
|
||||
@fas-var-camera-alt: "\f038";
|
||||
|
||||
@fas-var-camera: "\1F4F7";
|
||||
|
||||
@fas-var-print: "\f03c";
|
||||
|
||||
@fas-var-comment: "\f03d";
|
||||
|
||||
@fas-var-comment-alt: "\f03e";
|
||||
|
||||
@fas-var-gamepad: "\f03f";
|
||||
|
||||
@fas-var-trash: "\f040";
|
||||
|
||||
@fas-var-trash-alt: "\f041";
|
||||
|
||||
@fas-var-leaf: "\f042";
|
||||
|
||||
@fas-var-flask: "\f043";
|
||||
|
||||
@fas-var-rocket: "\f044";
|
||||
|
||||
@fas-var-lock: "\f045";
|
||||
|
||||
@fas-var-home: "\f046";
|
||||
|
||||
@fas-var-search: "\f047";
|
||||
|
||||
@fas-var-bars: "\f048";
|
||||
|
||||
@fas-var-plus-circle: "\f049";
|
||||
|
||||
@fas-var-exclamation-triangle: "\f04a";
|
||||
|
||||
@fas-var-thumbs-down: "\f04b";
|
||||
|
||||
@fas-var-file: "\f04c";
|
||||
|
||||
@fas-var-file-alt: "\f04d";
|
||||
|
||||
@fas-var-search-plus: "\f04e";
|
||||
|
||||
@fas-var-search-minus: "\f04f";
|
||||
|
||||
@fas-var-martini-glass: "\f050";
|
||||
|
||||
@fas-var-music: "\f051";
|
||||
|
||||
@fas-var-user: "\f052";
|
||||
|
||||
@fas-var-film: "\f053";
|
||||
|
||||
@fas-var-th-large: "\f054";
|
||||
|
||||
@fas-var-th: "\f055";
|
||||
|
||||
@fas-var-th-list: "\f056";
|
||||
|
||||
@fas-var-check: "\f057";
|
||||
|
||||
@fas-var-check-square: "\f058";
|
||||
|
||||
@fas-var-check-circle: "\f059";
|
||||
|
||||
@fas-var-times: "\f05b";
|
||||
|
||||
@fas-var-times-square: "\f05c";
|
||||
|
||||
@fas-var-plus: "\f05d";
|
||||
|
||||
@fas-var-plus-square: "\f05e";
|
||||
|
||||
@fas-var-minus: "\f05f";
|
||||
|
||||
@fas-var-minus-square: "\f060";
|
||||
|
||||
@fas-var-minus-circle: "\f061";
|
||||
|
||||
@fas-var-heart: "\f062";
|
||||
|
||||
@fas-var-diamond: "\f063";
|
||||
|
||||
@fas-var-spade: "\f064";
|
||||
|
||||
@fas-var-club: "\f065";
|
||||
|
||||
@fas-var-square: "\f066";
|
||||
|
||||
@fas-var-circle: "\f067";
|
||||
|
||||
@fas-var-octagon: "\f068";
|
||||
|
||||
@fas-var-hexagon: "\f069";
|
||||
|
||||
@fas-var-triangle: "\f06a";
|
||||
|
||||
@fas-var-shield: "\f06b";
|
||||
|
||||
@fas-var-badge: "\f06c";
|
||||
|
||||
@fas-var-shield-check: "\f06d";
|
||||
|
||||
@fas-var-badge-check: "\f06e";
|
||||
|
||||
@fas-var-times-octagon: "\f06f";
|
||||
|
||||
@fas-var-times-hexagon: "\f070";
|
||||
|
||||
@fas-var-plus-octagon: "\f071";
|
||||
|
||||
@fas-var-plus-hexagon: "\f072";
|
||||
|
||||
@fas-var-minus-octagon: "\f073";
|
||||
|
||||
@fas-var-minus-hexagon: "\f074";
|
||||
|
||||
25
icons/solid/css/scss/mixins.scss
Executable file
@@ -0,0 +1,25 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
@mixin fas-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$fas-font-size-base}/#{$fas-line-height-base} "Fa5Solid";
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
@mixin fas-icon-rotate($degrees, $rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
||||
-webkit-transform: rotate($degrees);
|
||||
-ms-transform: rotate($degrees);
|
||||
transform: rotate($degrees);
|
||||
}
|
||||
|
||||
@mixin fas-icon-flip($horiz, $vert, $rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
||||
-webkit-transform: scale($horiz, $vert);
|
||||
-ms-transform: scale($horiz, $vert);
|
||||
transform: scale($horiz, $vert);
|
||||
}
|
||||
185
icons/solid/css/scss/variables.scss
Executable file
@@ -0,0 +1,185 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
$fas-font-size-base: 14px !default;
|
||||
$fas-line-height-base: 1 !default;
|
||||
|
||||
|
||||
$fas-var-jack-o-lantern: "\f004";
|
||||
|
||||
$fas-var-envelope: "\2709";
|
||||
|
||||
$fas-var-pen-square: "\f013";
|
||||
|
||||
$fas-var-utensils-alt: "\f017";
|
||||
|
||||
$fas-var-pencil-alt: "\f018";
|
||||
|
||||
$fas-var-pen-alt: "\f019";
|
||||
|
||||
$fas-var-paint-brush: "\f01a";
|
||||
|
||||
$fas-var-paper-plane: "\f01c";
|
||||
|
||||
$fas-var-poo: "\f01d";
|
||||
|
||||
$fas-var-star-exclamation: "\f01e";
|
||||
|
||||
$fas-var-coffee: "\f01f";
|
||||
|
||||
$fas-var-trophy: "\f020";
|
||||
|
||||
$fas-var-trophy-alt: "\f021";
|
||||
|
||||
$fas-var-star: "\f023";
|
||||
|
||||
$fas-var-times-circle: "\f024";
|
||||
|
||||
$fas-var-smile: "\f025";
|
||||
|
||||
$fas-var-magic: "\f026";
|
||||
|
||||
$fas-var-camera-retro: "\f028";
|
||||
|
||||
$fas-var-pencil: "\f029";
|
||||
|
||||
$fas-var-bullhorn: "\f02b";
|
||||
|
||||
$fas-var-code: "\f02c";
|
||||
|
||||
$fas-var-bomb: "\f02d";
|
||||
|
||||
$fas-var-utensils: "\f02e";
|
||||
|
||||
$fas-var-utensil-fork: "\f02f";
|
||||
|
||||
$fas-var-utensil-knife: "\f030";
|
||||
|
||||
$fas-var-utensil-spoon: "\f031";
|
||||
|
||||
$fas-var-thumbs-up: "\f032";
|
||||
|
||||
$fas-var-lock-alt: "\f033";
|
||||
|
||||
$fas-var-edit: "\f034";
|
||||
|
||||
$fas-var-book: "\1F4D5";
|
||||
|
||||
$fas-var-pen: "\f037";
|
||||
|
||||
$fas-var-camera-alt: "\f038";
|
||||
|
||||
$fas-var-camera: "\1F4F7";
|
||||
|
||||
$fas-var-print: "\f03c";
|
||||
|
||||
$fas-var-comment: "\f03d";
|
||||
|
||||
$fas-var-comment-alt: "\f03e";
|
||||
|
||||
$fas-var-gamepad: "\f03f";
|
||||
|
||||
$fas-var-trash: "\f040";
|
||||
|
||||
$fas-var-trash-alt: "\f041";
|
||||
|
||||
$fas-var-leaf: "\f042";
|
||||
|
||||
$fas-var-flask: "\f043";
|
||||
|
||||
$fas-var-rocket: "\f044";
|
||||
|
||||
$fas-var-lock: "\f045";
|
||||
|
||||
$fas-var-home: "\f046";
|
||||
|
||||
$fas-var-search: "\f047";
|
||||
|
||||
$fas-var-bars: "\f048";
|
||||
|
||||
$fas-var-plus-circle: "\f049";
|
||||
|
||||
$fas-var-exclamation-triangle: "\f04a";
|
||||
|
||||
$fas-var-thumbs-down: "\f04b";
|
||||
|
||||
$fas-var-file: "\f04c";
|
||||
|
||||
$fas-var-file-alt: "\f04d";
|
||||
|
||||
$fas-var-search-plus: "\f04e";
|
||||
|
||||
$fas-var-search-minus: "\f04f";
|
||||
|
||||
$fas-var-martini-glass: "\f050";
|
||||
|
||||
$fas-var-music: "\f051";
|
||||
|
||||
$fas-var-user: "\f052";
|
||||
|
||||
$fas-var-film: "\f053";
|
||||
|
||||
$fas-var-th-large: "\f054";
|
||||
|
||||
$fas-var-th: "\f055";
|
||||
|
||||
$fas-var-th-list: "\f056";
|
||||
|
||||
$fas-var-check: "\f057";
|
||||
|
||||
$fas-var-check-square: "\f058";
|
||||
|
||||
$fas-var-check-circle: "\f059";
|
||||
|
||||
$fas-var-times: "\f05b";
|
||||
|
||||
$fas-var-times-square: "\f05c";
|
||||
|
||||
$fas-var-plus: "\f05d";
|
||||
|
||||
$fas-var-plus-square: "\f05e";
|
||||
|
||||
$fas-var-minus: "\f05f";
|
||||
|
||||
$fas-var-minus-square: "\f060";
|
||||
|
||||
$fas-var-minus-circle: "\f061";
|
||||
|
||||
$fas-var-heart: "\f062";
|
||||
|
||||
$fas-var-diamond: "\f063";
|
||||
|
||||
$fas-var-spade: "\f064";
|
||||
|
||||
$fas-var-club: "\f065";
|
||||
|
||||
$fas-var-square: "\f066";
|
||||
|
||||
$fas-var-circle: "\f067";
|
||||
|
||||
$fas-var-octagon: "\f068";
|
||||
|
||||
$fas-var-hexagon: "\f069";
|
||||
|
||||
$fas-var-triangle: "\f06a";
|
||||
|
||||
$fas-var-shield: "\f06b";
|
||||
|
||||
$fas-var-badge: "\f06c";
|
||||
|
||||
$fas-var-shield-check: "\f06d";
|
||||
|
||||
$fas-var-badge-check: "\f06e";
|
||||
|
||||
$fas-var-times-octagon: "\f06f";
|
||||
|
||||
$fas-var-times-hexagon: "\f070";
|
||||
|
||||
$fas-var-plus-octagon: "\f071";
|
||||
|
||||
$fas-var-plus-hexagon: "\f072";
|
||||
|
||||
$fas-var-minus-octagon: "\f073";
|
||||
|
||||
$fas-var-minus-hexagon: "\f074";
|
||||
|
||||
972
icons/solid/demo.html
Executable file
@@ -0,0 +1,972 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- basic page needs -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<!-- fort awesome styling/rendering support -->
|
||||
<link rel="stylesheet" media="all" href="http://kit-download-assets.fortawesome.com/application.css">
|
||||
|
||||
<!-- css -->
|
||||
<link href="css/external.css" rel="stylesheet">
|
||||
|
||||
<!-- older browser support -->
|
||||
<!--[if lt IE 9]> <link href="353d6a51-sd.css" rel="stylesheet"> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]-->
|
||||
</head>
|
||||
|
||||
<body class="v-kit-demo bg-gray-lightest bg-img bg-img-icons">
|
||||
<div class="wrapper-view">
|
||||
<div class="view-content">
|
||||
|
||||
<div class="bg-gray-dark p-xs-a-xl">
|
||||
<div class="container text-xs-center">
|
||||
<h2 class="text-3x font-weight-semibold">
|
||||
<span class="text-sm text-upper text-tracked m-xs-b-md block text-muted">Fort Awesome Kit Demo</span>
|
||||
FA5 Solid
|
||||
</h2>
|
||||
<p class="lead m-xs-b-0">Below you'll find an inventory and examples of
|
||||
|
||||
<a href="#demo-icons">icons</a>,
|
||||
|
||||
|
||||
and how to use them and the support styling.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dangle-up bg-gray-dark dashed dashed-bottom"></div>
|
||||
|
||||
<div class="container m-xs-b-lg">
|
||||
<div class="well bg-white br-b-0 p-xs-a-lg m-xs-b-0">
|
||||
<section class="demo-icons m-xs-b-xl" id="demo-icons">
|
||||
<h2 class="text-xl m-xs-b-0">Your Icons</h2>
|
||||
<hr class="hr-lg m-xs-y-md">
|
||||
|
||||
|
||||
<ul class="grid-assets grid-assets-animate grid-assets-xs-6 m-xs-b-lg">
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-jack-o-lantern</span>
|
||||
<span class="text-muted block">f004</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg">✉</i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-envelope</span>
|
||||
<span class="text-muted block">2709</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-pen-square</span>
|
||||
<span class="text-muted block">f013</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-utensils-alt</span>
|
||||
<span class="text-muted block">f017</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-pencil-alt</span>
|
||||
<span class="text-muted block">f018</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-pen-alt</span>
|
||||
<span class="text-muted block">f019</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-paint-brush</span>
|
||||
<span class="text-muted block">f01a</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-paper-plane</span>
|
||||
<span class="text-muted block">f01c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-poo</span>
|
||||
<span class="text-muted block">f01d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-star-exclamation</span>
|
||||
<span class="text-muted block">f01e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-coffee</span>
|
||||
<span class="text-muted block">f01f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-trophy</span>
|
||||
<span class="text-muted block">f020</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-trophy-alt</span>
|
||||
<span class="text-muted block">f021</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-star</span>
|
||||
<span class="text-muted block">f023</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-times-circle</span>
|
||||
<span class="text-muted block">f024</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-smile</span>
|
||||
<span class="text-muted block">f025</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-magic</span>
|
||||
<span class="text-muted block">f026</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-camera-retro</span>
|
||||
<span class="text-muted block">f028</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-pencil</span>
|
||||
<span class="text-muted block">f029</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-bullhorn</span>
|
||||
<span class="text-muted block">f02b</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-code</span>
|
||||
<span class="text-muted block">f02c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-bomb</span>
|
||||
<span class="text-muted block">f02d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-utensils</span>
|
||||
<span class="text-muted block">f02e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-utensil-fork</span>
|
||||
<span class="text-muted block">f02f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-utensil-knife</span>
|
||||
<span class="text-muted block">f030</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-utensil-spoon</span>
|
||||
<span class="text-muted block">f031</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-thumbs-up</span>
|
||||
<span class="text-muted block">f032</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-lock-alt</span>
|
||||
<span class="text-muted block">f033</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-edit</span>
|
||||
<span class="text-muted block">f034</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg">📕</i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-book</span>
|
||||
<span class="text-muted block">1F4D5</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-pen</span>
|
||||
<span class="text-muted block">f037</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-camera-alt</span>
|
||||
<span class="text-muted block">f038</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg">📷</i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-camera</span>
|
||||
<span class="text-muted block">1F4F7</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-print</span>
|
||||
<span class="text-muted block">f03c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-comment</span>
|
||||
<span class="text-muted block">f03d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-comment-alt</span>
|
||||
<span class="text-muted block">f03e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-gamepad</span>
|
||||
<span class="text-muted block">f03f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-trash</span>
|
||||
<span class="text-muted block">f040</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-trash-alt</span>
|
||||
<span class="text-muted block">f041</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-leaf</span>
|
||||
<span class="text-muted block">f042</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-flask</span>
|
||||
<span class="text-muted block">f043</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-rocket</span>
|
||||
<span class="text-muted block">f044</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-lock</span>
|
||||
<span class="text-muted block">f045</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-home</span>
|
||||
<span class="text-muted block">f046</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-search</span>
|
||||
<span class="text-muted block">f047</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-bars</span>
|
||||
<span class="text-muted block">f048</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-plus-circle</span>
|
||||
<span class="text-muted block">f049</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-exclamation-triangle</span>
|
||||
<span class="text-muted block">f04a</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-thumbs-down</span>
|
||||
<span class="text-muted block">f04b</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-file</span>
|
||||
<span class="text-muted block">f04c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-file-alt</span>
|
||||
<span class="text-muted block">f04d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-search-plus</span>
|
||||
<span class="text-muted block">f04e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-search-minus</span>
|
||||
<span class="text-muted block">f04f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-martini-glass</span>
|
||||
<span class="text-muted block">f050</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-music</span>
|
||||
<span class="text-muted block">f051</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-user</span>
|
||||
<span class="text-muted block">f052</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-film</span>
|
||||
<span class="text-muted block">f053</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-th-large</span>
|
||||
<span class="text-muted block">f054</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-th</span>
|
||||
<span class="text-muted block">f055</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-th-list</span>
|
||||
<span class="text-muted block">f056</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-check</span>
|
||||
<span class="text-muted block">f057</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-check-square</span>
|
||||
<span class="text-muted block">f058</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-check-circle</span>
|
||||
<span class="text-muted block">f059</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-times</span>
|
||||
<span class="text-muted block">f05b</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-times-square</span>
|
||||
<span class="text-muted block">f05c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-plus</span>
|
||||
<span class="text-muted block">f05d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-plus-square</span>
|
||||
<span class="text-muted block">f05e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-minus</span>
|
||||
<span class="text-muted block">f05f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-minus-square</span>
|
||||
<span class="text-muted block">f060</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-minus-circle</span>
|
||||
<span class="text-muted block">f061</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-heart</span>
|
||||
<span class="text-muted block">f062</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-diamond</span>
|
||||
<span class="text-muted block">f063</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-spade</span>
|
||||
<span class="text-muted block">f064</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-club</span>
|
||||
<span class="text-muted block">f065</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-square</span>
|
||||
<span class="text-muted block">f066</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-circle</span>
|
||||
<span class="text-muted block">f067</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-octagon</span>
|
||||
<span class="text-muted block">f068</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-hexagon</span>
|
||||
<span class="text-muted block">f069</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-triangle</span>
|
||||
<span class="text-muted block">f06a</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-shield</span>
|
||||
<span class="text-muted block">f06b</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-badge</span>
|
||||
<span class="text-muted block">f06c</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-shield-check</span>
|
||||
<span class="text-muted block">f06d</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-badge-check</span>
|
||||
<span class="text-muted block">f06e</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-times-octagon</span>
|
||||
<span class="text-muted block">f06f</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-times-hexagon</span>
|
||||
<span class="text-muted block">f070</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-plus-octagon</span>
|
||||
<span class="text-muted block">f071</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-plus-hexagon</span>
|
||||
<span class="text-muted block">f072</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-minus-octagon</span>
|
||||
<span class="text-muted block">f073</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="asset asset-icon">
|
||||
<div class="icon-preview">
|
||||
<i class="fas fas-lg"></i>
|
||||
</div>
|
||||
<div class="icon-label text-base">
|
||||
<span class="text-gray-darker font-weight-semibold block m-xs-b-xs">fas-minus-hexagon</span>
|
||||
<span class="text-muted block">f074</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="well br-t-0 bg-body p-xs-a-lg dashed dashed-top">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer-app m-xs-b-xl">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<p class="text-muted m-xs-b-0">
|
||||
This is a demonstration of a kit made using <a target="_blank" href="https://fortawesome.com">Fort Awesome</a>, the place to pick from the best icon sets and typefaces and to manage and use them easily as part of your web projects.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-xs-6 text-xs-right">
|
||||
<a class="m-xs-r-md inline-block" target="_blank" href="https://fortawesome.com">Fort Awesome</a>
|
||||
<a class="m-xs-r-md inline-block" target="_blank" href="https://fortawesome.com/help">Help</a>
|
||||
<a class="inline-block" target="_blank" href="https://articles.fortawesome.com/tagged/fort-awesome">Articles & How-To's</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M329.6 24l239.9 416c18.5 32-4.7 72-41.6 72H48.1c-36.9 0-60-40.1-41.6-72L246.4 24c18.6-32.2 64.8-31.8 83.2 0zM288 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-47.9-167.6l7.9 144c.2 4.2 3.7 7.6 8 7.6h64.1c4.2 0 7.8-3.3 8-7.6l7.9-144c.2-4.6-3.4-8.4-8-8.4h-79.8c-4.7 0-8.4 3.9-8.1 8.4z"/></svg>
|
||||
|
Before Width: | Height: | Size: 387 B |
BIN
icons/solid/icons/icons.eot
Executable file
BIN
icons/solid/icons/icons.otf
Executable file
BIN
icons/solid/icons/icons.ttf
Executable file
BIN
icons/solid/icons/icons.woff
Executable file
BIN
icons/solid/icons/icons.woff2
Executable file
1
icons/solid/icons/svg/badge-check.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M454.9 338.4c14.7 32.4 8.8 71.9-17.9 98.6-26.6 26.6-66 32.7-98.6 17.9-12.5 33.4-44.7 57.1-82.4 57.1s-69.9-23.7-82.4-57.1c-32.6 14.8-72 8.7-98.6-17.9-26.7-26.7-32.6-66.2-17.9-98.6C23.7 325.9 0 293.7 0 256s23.7-69.9 57.1-82.4c-14.7-32.4-8.8-72 17.9-98.6 26.7-26.7 66.2-32.6 98.6-17.9C186.1 23.7 218.3 0 256 0s69.9 23.7 82.4 57.1c32.4-14.7 71.9-8.8 98.6 17.9 26.7 26.7 32.6 66.2 17.9 98.6 33.3 12.5 57.1 44.7 57.1 82.4s-23.7 69.9-57.1 82.4zm-190.2 41.9l126.5-193c6.5-10 3.8-23.4-6.2-29.9l-30.1-19.7c-10-6.5-23.4-3.8-29.9 6.2l-95 144.8-59.6-39c-10-6.5-23.4-3.8-29.9 6.2L120.8 286c-6.5 10-3.8 23.4 6.2 29.9l107.8 70.6c10 6.6 23.4 3.8 29.9-6.2z"/></svg>
|
||||
|
After Width: | Height: | Size: 719 B |
1
icons/solid/icons/svg/badge.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 256c0-37.7-23.7-69.9-57.1-82.4 14.7-32.4 8.8-71.9-17.9-98.6-26.7-26.7-66.2-32.6-98.6-17.9C325.9 23.7 293.7 0 256 0s-69.9 23.7-82.4 57.1c-32.4-14.7-72-8.8-98.6 17.9-26.7 26.7-32.6 66.2-17.9 98.6C23.7 186.1 0 218.3 0 256s23.7 69.9 57.1 82.4c-14.7 32.4-8.8 72 17.9 98.6 26.6 26.6 66.1 32.7 98.6 17.9 12.5 33.3 44.7 57.1 82.4 57.1s69.9-23.7 82.4-57.1c32.6 14.8 72 8.7 98.6-17.9 26.7-26.7 32.6-66.2 17.9-98.6 33.4-12.5 57.1-44.7 57.1-82.4z"/></svg>
|
||||
|
After Width: | Height: | Size: 520 B |
1
icons/solid/icons/svg/bars.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M424 144H24c-13.2 0-24-10.8-24-24V88c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v32c0 13.2-10.8 24-24 24zM424 448H24c-13.2 0-24-10.8-24-24v-32c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v32c0 13.2-10.8 24-24 24zM424 296H24c-13.2 0-24-10.8-24-24v-32c0-13.2 10.8-24 24-24h400c13.2 0 24 10.8 24 24v32c0 13.2-10.8 24-24 24z"/></svg>
|
||||
|
After Width: | Height: | Size: 434 B |
|
Before Width: | Height: | Size: 923 B After Width: | Height: | Size: 923 B |
|
Before Width: | Height: | Size: 519 B After Width: | Height: | Size: 519 B |
|
Before Width: | Height: | Size: 632 B After Width: | Height: | Size: 632 B |
|
Before Width: | Height: | Size: 569 B After Width: | Height: | Size: 569 B |
|
Before Width: | Height: | Size: 706 B After Width: | Height: | Size: 706 B |
|
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 453 B |
1
icons/solid/icons/svg/check-circle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0,.st1{fill-rule:evenodd;clip-rule:evenodd}.st1{fill:none}</style><path class="st0" d="M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM265.7 387.3L406.1 173c7.3-11.1 4.2-26-6.9-33.2l-33.5-21.9c-11.1-7.3-26-4.2-33.2 6.9L227.2 285.5 161 242.2c-11.1-7.3-26-4.2-33.2 6.9l-21.9 33.5c-7.3 11.1-4.2 26 6.9 33.2l119.7 78.4c11.1 7.3 25.9 4.2 33.2-6.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 448 B |
1
icons/solid/icons/svg/check-square.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill-rule:evenodd;clip-rule:evenodd;fill:none}</style><path d="M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm-166.3-92.7L374.1 173c7.3-11.1 4.2-26-6.9-33.2l-33.5-21.9c-11.1-7.3-26-4.2-33.2 6.9L195.2 285.5 129 242.2c-11.1-7.3-26-4.2-33.2 6.9l-21.9 33.5c-7.3 11.1-4.2 26 6.9 33.2l119.7 78.4c11.1 7.3 25.9 4.2 33.2-6.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 463 B |
1
icons/solid/icons/svg/check.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill-rule:evenodd;clip-rule:evenodd;fill:none}</style><path d="M218.9 473.8L30.3 350.2c-17.5-11.4-22.4-34.9-10.9-52.4l34.5-52.7c11.4-17.5 34.9-22.4 52.4-10.9l104.3 68.3 166-253.4C388 31.6 411.5 26.7 429 38.2l52.7 34.5c17.5 11.4 22.4 34.9 10.9 52.4L271.3 462.9c-11.4 17.5-34.9 22.4-52.4 10.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 375 B |
1
icons/solid/icons/svg/circle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><circle cx="256" cy="256" r="248"/></svg>
|
||||
|
After Width: | Height: | Size: 134 B |
1
icons/solid/icons/svg/club.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M371.5 169.1C403.1 88.4 343.7 0 256 0c-87.8 0-147 88.5-115.5 169.1C65.7 159.2 0 217.3 0 292c0 68.5 55.5 124 124 124 36.5 0 69.3-15.8 92-40.9-.1 36.7-.8 52.4-53 75.6-13.8 6.1-21.4 21.1-18.3 35.9 3.1 14.8 16.2 25.4 31.3 25.4h160c15.1 0 28.2-10.6 31.3-25.4 3.1-14.8-4.5-29.7-18.3-35.9-51.6-23-52.8-38.1-53-75.6 22.7 25.1 55.5 40.9 92 40.9 68.5 0 124-55.5 124-124 0-74.8-65.8-132.8-140.5-122.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 471 B |
|
Before Width: | Height: | Size: 627 B After Width: | Height: | Size: 627 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><style>.st0{fill:none}</style><path d="M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zM596 416H12c-6.6 0-12 5.4-12 12v4c0 26.5 21.5 48 48 48h512c26.5 0 48-21.5 48-48v-4c0-6.6-5.4-12-12-12z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><style>.st0{fill:none}</style><path d="M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zM595.7 416H12.3c-25 0-11.6 64 36 64h511.3c47.8 0 61-64 36.1-64z"/></svg>
|
||||
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 348 B |
|
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B |
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
1
icons/solid/icons/svg/diamond.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M242.2 8.3c-9.6-11.1-26.8-11.1-36.4 0l-200 232c-7.8 9-7.8 22.3 0 31.3l200 232c9.6 11.1 26.8 11.1 36.4 0l200-232c7.8-9 7.8-22.3 0-31.3l-200-232z"/></svg>
|
||||
|
After Width: | Height: | Size: 224 B |
|
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 605 B |
|
Before Width: | Height: | Size: 588 B After Width: | Height: | Size: 588 B |
1
icons/solid/icons/svg/exclamation-triangle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M288 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-47.9-167.6l7.9 144c.2 4.2 3.7 7.6 8 7.6h64.1c4.2 0 7.8-3.3 8-7.6l7.9-144c.2-4.6-3.4-8.4-8-8.4h-79.8c-4.7 0-8.4 3.9-8.1 8.4zM569.5 440c18.5 32-4.7 72-41.6 72H48.1c-36.9 0-60-40.1-41.6-72L246.4 24c18.5-32 64.7-32 83.2 0l239.9 416z"/></svg>
|
||||
|
After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 540 B |
|
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 280 B |
1
icons/solid/icons/svg/film.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm384 192c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"/></svg>
|
||||
|
After Width: | Height: | Size: 1003 B |
|
Before Width: | Height: | Size: 379 B After Width: | Height: | Size: 379 B |
|
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 605 B |
1
icons/solid/icons/svg/heart.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M414.9 24C361.8 24 312 65.7 288 89.3 264 65.7 214.2 24 161.1 24 70.3 24 16 76.9 16 165.5c0 72.6 66.8 133.3 69.2 135.4l187 180.8c8.8 8.5 22.8 8.5 31.6 0l186.7-180.2c2.7-2.7 69.5-63.5 69.5-136C560 76.9 505.7 24 414.9 24z"/></svg>
|
||||
|
After Width: | Height: | Size: 329 B |
1
icons/solid/icons/svg/hexagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M441.5 39.8C432.9 25.1 417.1 16 400 16H176c-17.1 0-32.9 9.1-41.5 23.8l-112 192c-8.7 14.9-8.7 33.4 0 48.4l112 192c8.6 14.7 24.4 23.8 41.5 23.8h224c17.1 0 32.9-9.1 41.5-23.8l112-192c8.7-14.9 8.7-33.4 0-48.4l-112-192z"/></svg>
|
||||
|
After Width: | Height: | Size: 325 B |
|
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 664 B |
|
Before Width: | Height: | Size: 915 B After Width: | Height: | Size: 915 B |
|
Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 610 B |
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 293 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
1
icons/solid/icons/svg/martini-glass.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"/></svg>
|
||||
|
After Width: | Height: | Size: 269 B |
1
icons/solid/icons/svg/minus-circle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill-rule:evenodd;clip-rule:evenodd}.st1{fill:none}</style><path class="st0" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"/></svg>
|
||||
|
After Width: | Height: | Size: 334 B |
1
icons/solid/icons/svg/minus-hexagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M553.5 231.8c8.7 14.9 8.7 33.4 0 48.4l-112 192c-8.6 14.7-24.4 23.8-41.5 23.8H176c-17.1 0-32.9-9.1-41.5-23.8l-112-192c-8.7-14.9-8.7-33.4 0-48.4l112-192C143.1 25.1 158.9 16 176 16h224c17.1 0 32.9 9.1 41.5 23.8l112 192zM420 296c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12H156c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h264z"/></svg>
|
||||
|
After Width: | Height: | Size: 428 B |
1
icons/solid/icons/svg/minus-octagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M497.9 150.5c9 9 14.1 21.2 14.1 33.9v143.1c0 12.7-5.1 24.9-14.1 33.9L361.5 497.9c-9 9-21.2 14.1-33.9 14.1H184.5c-12.7 0-24.9-5.1-33.9-14.1L14.1 361.5c-9-9-14.1-21.2-14.1-33.9V184.5c0-12.7 5.1-24.9 14.1-33.9L150.5 14.1c9-9 21.2-14.1 33.9-14.1h143.1c12.7 0 24.9 5.1 33.9 14.1l136.5 136.4zM388 296c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12H124c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h264z"/></svg>
|
||||
|
After Width: | Height: | Size: 468 B |
1
icons/solid/icons/svg/minus-square.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"/></svg>
|
||||
|
After Width: | Height: | Size: 315 B |
1
icons/solid/icons/svg/minus.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M424 318.2c13.3 0 24-10.7 24-24v-76.4c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v76.4c0 13.3 10.7 24 24 24h400z"/></svg>
|
||||
|
After Width: | Height: | Size: 225 B |
1
icons/solid/icons/svg/music.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 323 B |
1
icons/solid/icons/svg/octagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M361.5 14.1c-9-9-21.2-14.1-33.9-14.1H184.5c-12.7 0-24.9 5.1-33.9 14.1L14.1 150.5c-9 9-14.1 21.2-14.1 33.9v143.1c0 12.7 5.1 24.9 14.1 33.9l136.5 136.5c9 9 21.2 14.1 33.9 14.1h143.1c12.7 0 24.9-5.1 33.9-14.1L498 361.4c9-9 14.1-21.2 14.1-33.9v-143c0-12.7-5.1-24.9-14.1-33.9L361.5 14.1z"/></svg>
|
||||
|
After Width: | Height: | Size: 363 B |
|
Before Width: | Height: | Size: 454 B After Width: | Height: | Size: 454 B |
|
Before Width: | Height: | Size: 445 B After Width: | Height: | Size: 445 B |
|
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 463 B |
|
Before Width: | Height: | Size: 500 B After Width: | Height: | Size: 500 B |
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 373 B |
1
icons/solid/icons/svg/pencil-alt.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M497.9 74.2l-60.1-60.1c-18.7-18.7-49.1-18.7-67.9 0l-46.1 46.1c-4.7 4.7-4.7 12.3 0 17l111 111c4.7 4.7 12.3 4.7 17 0l46.1-46.1c18.8-18.8 18.8-49.2 0-67.9zM301.2 99.8c-4.7-4.7-12.3-4.7-17 0L12.8 371.2.2 485.3c-1.7 15.3 11.2 28.2 26.5 26.5l114.2-12.7 271.4-271.4c4.7-4.7 4.7-12.3 0-17L301.2 99.8zM126.1 468.6L64 475.5V448H36.5l6.9-62.1L56 373.3l82.7 82.7-12.6 12.6zm-4.2-106.7c-5.5 5.5-14.3 5.5-19.8 0s-5.5-14.3 0-19.8l176-176c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-176 176zm224-128l-176 176c-5.5 5.5-14.3 5.5-19.8 0s-5.5-14.3 0-19.8l176-176c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8z"/></svg>
|
||||
|
After Width: | Height: | Size: 661 B |
1
icons/solid/icons/svg/pencil.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M497.9 74.2l-60.1-60.1c-18.7-18.7-49.1-18.7-67.9 0l-46.1 46.1c-4.7 4.7-4.7 12.3 0 17l111 111c4.7 4.7 12.3 4.7 17 0l46.1-46.1c18.8-18.8 18.8-49.2 0-67.9zM301.2 99.8c-4.7-4.7-12.3-4.7-17 0L12.8 371.2.2 485.3c-1.7 15.3 11.2 28.2 26.5 26.5l114.2-12.7 271.4-271.4c4.7-4.7 4.7-12.3 0-17L301.2 99.8zM126.1 468.6L64 475.5V448H36.5l6.9-62.1L56 373.3l82.7 82.7-12.6 12.6z"/></svg>
|
||||
|
After Width: | Height: | Size: 442 B |
1
icons/solid/icons/svg/plus-circle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill-rule:evenodd;clip-rule:evenodd}.st1{fill:none}</style><path class="st0" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"/></svg>
|
||||
|
After Width: | Height: | Size: 438 B |
1
icons/solid/icons/svg/plus-hexagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M553.5 231.8c8.7 14.9 8.7 33.4 0 48.4l-112 192c-8.6 14.7-24.4 23.8-41.5 23.8H176c-17.1 0-32.9-9.1-41.5-23.8l-112-192c-8.7-14.9-8.7-33.4 0-48.4l112-192C143.1 25.1 158.9 16 176 16h224c17.1 0 32.9 9.1 41.5 23.8l112 192zM432 228c0-6.6-5.4-12-12-12h-92v-92c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12v92h-92c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h92v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h92c6.6 0 12-5.4 12-12v-56z"/></svg>
|
||||
|
After Width: | Height: | Size: 532 B |
1
icons/solid/icons/svg/plus-octagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M497.9 150.5c9 9 14.1 21.2 14.1 33.9v143.1c0 12.7-5.1 24.9-14.1 33.9L361.5 497.9c-9 9-21.2 14.1-33.9 14.1H184.5c-12.7 0-24.9-5.1-33.9-14.1L14.1 361.5c-9-9-14.1-21.2-14.1-33.9V184.5c0-12.7 5.1-24.9 14.1-33.9L150.5 14.1c9-9 21.2-14.1 33.9-14.1h143.1c12.7 0 24.9 5.1 33.9 14.1l136.5 136.4zM400 228c0-6.6-5.4-12-12-12h-92v-92c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12v92h-92c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h92v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h92c6.6 0 12-5.4 12-12v-56z"/></svg>
|
||||
|
After Width: | Height: | Size: 572 B |
1
icons/solid/icons/svg/plus-square.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"/></svg>
|
||||
|
After Width: | Height: | Size: 420 B |
1
icons/solid/icons/svg/plus.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M448 294.2v-76.4c0-13.3-10.7-24-24-24H286.2V56c0-13.3-10.7-24-24-24h-76.4c-13.3 0-24 10.7-24 24v137.8H24c-13.3 0-24 10.7-24 24v76.4c0 13.3 10.7 24 24 24h137.8V456c0 13.3 10.7 24 24 24h76.4c13.3 0 24-10.7 24-24V318.2H424c13.3 0 24-10.7 24-24z"/></svg>
|
||||
|
After Width: | Height: | Size: 352 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 561 B |
1
icons/solid/icons/svg/search-minus.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12z"/><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 344c-75.2 0-136-60.8-136-136S132.8 72 208 72s136 60.8 136 136-60.8 136-136 136z"/></svg>
|
||||
|
After Width: | Height: | Size: 517 B |
1
icons/solid/icons/svg/search-plus.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M292 180h-56v-56c0-6.6-5.4-12-12-12h-32c-6.6 0-12 5.4-12 12v56h-56c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h56v56c0 6.6 5.4 12 12 12h32c6.6 0 12-5.4 12-12v-56h56c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12z"/><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 344c-75.2 0-136-60.8-136-136S132.8 72 208 72s136 60.8 136 136-60.8 136-136 136z"/></svg>
|
||||
|
After Width: | Height: | Size: 621 B |
1
icons/solid/icons/svg/search.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"/></svg>
|
||||
|
After Width: | Height: | Size: 426 B |
1
icons/solid/icons/svg/shield-check.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M496 128c0 221.3-135.9 344.6-221.5 380.3a48.15 48.15 0 0 1-36.9 0C130.5 463.7 16 326.5 16 128c0-19.4 11.7-36.9 29.5-44.3l192-80c11.8-4.9 25.1-4.9 36.9 0l192 80c17.9 7.4 29.6 24.9 29.6 44.3zM278.7 374.2l126.5-193c6.5-10 3.8-23.4-6.2-29.9l-30.1-19.7c-10-6.5-23.4-3.8-29.9 6.2l-95 144.8-59.6-39c-10-6.5-23.4-3.8-29.9 6.2l-19.7 30.1c-6.5 10-3.8 23.4 6.2 29.9l107.8 70.6c10 6.6 23.4 3.8 29.9-6.2z"/></svg>
|
||||
|
After Width: | Height: | Size: 502 B |
1
icons/solid/icons/svg/shield.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3z"/></svg>
|
||||
|
After Width: | Height: | Size: 304 B |
|
Before Width: | Height: | Size: 881 B After Width: | Height: | Size: 881 B |
1
icons/solid/icons/svg/spade.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M371.5 169.1C403.1 88.4 343.7 0 256 0c-87.8 0-147 88.5-115.5 169.1C65.7 159.2 0 217.3 0 292c0 68.5 55.5 124 124 124 36.5 0 69.3-15.8 92-40.9-.1 36.7-.8 52.4-53 75.6-13.8 6.1-21.4 21.1-18.3 35.9 3.1 14.8 16.2 25.4 31.3 25.4h160c15.1 0 28.2-10.6 31.3-25.4 3.1-14.8-4.5-29.7-18.3-35.9-51.6-23-52.8-38.1-53-75.6 22.7 25.1 55.5 40.9 92 40.9 68.5 0 124-55.5 124-124 0-74.8-65.8-132.8-140.5-122.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 471 B |
1
icons/solid/icons/svg/square.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"/></svg>
|
||||
|
After Width: | Height: | Size: 216 B |
|
Before Width: | Height: | Size: 554 B After Width: | Height: | Size: 554 B |
1
icons/solid/icons/svg/star.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"/></svg>
|
||||
|
After Width: | Height: | Size: 367 B |
1
icons/solid/icons/svg/th-large.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M216 240H24c-13.3 0-24-10.7-24-24V88c0-13.3 10.7-24 24-24h192c13.3 0 24 10.7 24 24v128c0 13.3-10.7 24-24 24zM216 448H24c-13.3 0-24-10.7-24-24V296c0-13.3 10.7-24 24-24h192c13.3 0 24 10.7 24 24v128c0 13.3-10.7 24-24 24zM488 240H296c-13.3 0-24-10.7-24-24V88c0-13.3 10.7-24 24-24h192c13.3 0 24 10.7 24 24v128c0 13.3-10.7 24-24 24zM488 448H296c-13.3 0-24-10.7-24-24V296c0-13.3 10.7-24 24-24h192c13.3 0 24 10.7 24 24v128c0 13.3-10.7 24-24 24z"/></svg>
|
||||
|
After Width: | Height: | Size: 547 B |
1
icons/solid/icons/svg/th-list.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M125.3 202.7H24c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24zM125.3 64H24C10.7 64 0 74.7 0 88v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM0 365.3V424c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.8-24 24zM205.3 448H488c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H205.3c-13.3 0-24 10.7-24 24V424c0 13.3 10.8 24 24 24zM205.3 309.3H488c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H205.3c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.8 24 24 24zM181.3 88v58.7c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24H205.3c-13.2 0-24 10.7-24 24z"/></svg>
|
||||
|
After Width: | Height: | Size: 800 B |
1
icons/solid/icons/svg/th.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill:none}</style><path d="M125.3 202.7H24c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24zM362.7 88v58.7c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24H386.7c-13.3 0-24 10.7-24 24zM125.3 64H24C10.7 64 0 74.7 0 88v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM330.7 146.7V88c0-13.3-10.7-24-24-24H205.3c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24.1-10.8 24.1-24zM306.7 202.7H205.3c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c.1-13.3-10.7-24-23.9-24zM386.7 309.3H488c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H386.7c-13.3 0-24 10.7-24 24v58.7c0 13.3 10.7 24 24 24zM386.7 448H488c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H386.7c-13.3 0-24 10.7-24 24V424c0 13.3 10.7 24 24 24zM0 365.3V424c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.8-24 24zM181.3 365.3V424c0 13.3 10.7 24 24 24h101.3c13.3 0 24-10.7 24-24v-58.7c0-13.3-10.7-24-24-24H205.3c-13.2 0-24 10.8-24 24z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 726 B After Width: | Height: | Size: 726 B |
|
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 735 B |
1
icons/solid/icons/svg/times-circle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><style>.st0{fill-rule:evenodd;clip-rule:evenodd}.st1{fill:none}</style><path class="st0" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"/></svg>
|
||||
|
After Width: | Height: | Size: 539 B |
1
icons/solid/icons/svg/times-hexagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><style>.st0{fill:none}</style><path d="M553.5 231.8c8.7 14.9 8.7 33.4 0 48.4l-112 192c-8.6 14.7-24.4 23.8-41.5 23.8H176c-17.1 0-32.9-9.1-41.5-23.8l-112-192c-8.7-14.9-8.7-33.4 0-48.4l112-192C143.1 25.1 158.9 16 176 16h224c17.1 0 32.9 9.1 41.5 23.8l112 192zM409.6 338c4.7-4.7 4.7-12.3 0-17l-65-65 65.1-65.1c4.7-4.7 4.7-12.3 0-17L370 134.4c-4.7-4.7-12.3-4.7-17 0l-65 65-65.1-65.1c-4.7-4.7-12.3-4.7-17 0L166.4 174c-4.7 4.7-4.7 12.3 0 17l65.1 65.1-65.1 65.1c-4.7 4.7-4.7 12.3 0 17l39.6 39.6c4.7 4.7 12.3 4.7 17 0l65.1-65.1 65.1 65.1c4.7 4.7 12.3 4.7 17 0l39.4-39.8z"/></svg>
|
||||
|
After Width: | Height: | Size: 632 B |
1
icons/solid/icons/svg/times-octagon.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M497.9 150.5c9 9 14.1 21.2 14.1 33.9v143.1c0 12.7-5.1 24.9-14.1 33.9L361.5 497.9c-9 9-21.2 14.1-33.9 14.1H184.5c-12.7 0-24.9-5.1-33.9-14.1L14.1 361.5c-9-9-14.1-21.2-14.1-33.9V184.5c0-12.7 5.1-24.9 14.1-33.9L150.5 14.1c9-9 21.2-14.1 33.9-14.1h143.1c12.7 0 24.9 5.1 33.9 14.1l136.5 136.4zM377.6 338c4.7-4.7 4.7-12.3 0-17l-65-65 65.1-65.1c4.7-4.7 4.7-12.3 0-17L338 134.4c-4.7-4.7-12.3-4.7-17 0l-65 65-65.1-65.1c-4.7-4.7-12.3-4.7-17 0L134.4 174c-4.7 4.7-4.7 12.3 0 17l65.1 65.1-65.1 65.1c-4.7 4.7-4.7 12.3 0 17l39.6 39.6c4.7 4.7 12.3 4.7 17 0l65.1-65.1 65.1 65.1c4.7 4.7 12.3 4.7 17 0l39.4-39.8z"/></svg>
|
||||
|
After Width: | Height: | Size: 672 B |
1
icons/solid/icons/svg/times-square.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><style>.st0{fill:none}</style><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-54.4 289.1c4.7 4.7 4.7 12.3 0 17L306 377.6c-4.7 4.7-12.3 4.7-17 0L224 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L102.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L280 256l65.6 65.1z"/></svg>
|
||||
|
After Width: | Height: | Size: 522 B |
1
icons/solid/icons/svg/times.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><style>.st0{fill:none}</style><path d="M323.1 441l53.9-53.9c9.4-9.4 9.4-24.5 0-33.9L279.8 256l97.2-97.2c9.4-9.4 9.4-24.5 0-33.9L323.1 71c-9.4-9.4-24.5-9.4-33.9 0L192 168.2 94.8 71c-9.4-9.4-24.5-9.4-33.9 0L7 124.9c-9.4 9.4-9.4 24.5 0 33.9l97.2 97.2L7 353.2c-9.4 9.4-9.4 24.5 0 33.9L60.9 441c9.4 9.4 24.5 9.4 33.9 0l97.2-97.2 97.2 97.2c9.3 9.3 24.5 9.3 33.9 0z"/></svg>
|
||||
|
After Width: | Height: | Size: 430 B |
|
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 602 B |
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
1
icons/solid/icons/svg/triangle.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M329.6 24c-18.4-32-64.7-32-83.2 0L6.5 440c-18.4 31.9 4.6 72 41.6 72H528c36.9 0 60-40 41.6-72l-240-416z"/></svg>
|
||||
|
After Width: | Height: | Size: 183 B |
|
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 777 B |