may 2 update - new icons, html docs, yaml spec
This commit is contained in:
1
icons/solid/css/embedded-woff.css
Executable file
1
icons/solid/css/embedded-woff.css
Executable file
File diff suppressed because one or more lines are too long
1
icons/solid/css/embedded-woff2.css
Executable file
1
icons/solid/css/embedded-woff2.css
Executable file
File diff suppressed because one or more lines are too long
1
icons/solid/css/external-min.css
vendored
Executable file
1
icons/solid/css/external-min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
593
icons/solid/css/external.css
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
1
icons/solid/css/ie-only-min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
587
icons/solid/css/ie-only.css
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
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
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
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
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";
|
||||
|
||||
Reference in New Issue
Block a user