may 2 update - new icons, html docs, yaml spec
This commit is contained in:
1
icons/regular/css/embedded-woff.css
Executable file
1
icons/regular/css/embedded-woff.css
Executable file
File diff suppressed because one or more lines are too long
1
icons/regular/css/embedded-woff2.css
Executable file
1
icons/regular/css/embedded-woff2.css
Executable file
File diff suppressed because one or more lines are too long
1
icons/regular/css/external-min.css
vendored
Executable file
1
icons/regular/css/external-min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
593
icons/regular/css/external.css
Executable file
593
icons/regular/css/external.css
Executable file
@@ -0,0 +1,593 @@
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Fa5Regular';
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.far {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 'Fa5Regular';
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
|
||||
.far-lg {
|
||||
font-size: 1.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%;
|
||||
}
|
||||
|
||||
.far-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.far-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.far-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.far-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-fw {
|
||||
width: 1.28571429em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-ul {
|
||||
padding-left: 0;
|
||||
margin-left: 2.14285714em;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.far-ul> li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.far-li {
|
||||
position: absolute;
|
||||
left: -2.14285714em;
|
||||
width: 2.14285714em;
|
||||
top: 0.14285714em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.far-li.far-lg {
|
||||
left: -1.85714286em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid 0.08em #eeeeee;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.pull-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.far.pull-left {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.far.pull-right {
|
||||
margin-left: .3em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-spin {
|
||||
-webkit-animation: far-spin 2s infinite linear;
|
||||
animation: far-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.far-pulse {
|
||||
-webkit-animation: far-spin 1s infinite steps(8);
|
||||
animation: far-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes far-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes far-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-rotate-90 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.far-rotate-180 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.far-rotate-270 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.far-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);
|
||||
}
|
||||
|
||||
.far-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 .far-rotate-90,
|
||||
:root .far-rotate-180,
|
||||
:root .far-rotate-270,
|
||||
:root .far-flip-horizontal,
|
||||
:root .far-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.far-stack-1x,
|
||||
.far-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.far-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.far-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.far-inverse {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-book:before {
|
||||
content: '\f000';
|
||||
}
|
||||
|
||||
.far-envelope:before {
|
||||
content: '\f001';
|
||||
}
|
||||
|
||||
.far-times-circle:before {
|
||||
content: '\f002';
|
||||
}
|
||||
|
||||
.far-plus-circle:before {
|
||||
content: '\f003';
|
||||
}
|
||||
|
||||
.far-exclamation-triangle:before {
|
||||
content: '\f004';
|
||||
}
|
||||
|
||||
.far-pen:before {
|
||||
content: '\f005';
|
||||
}
|
||||
|
||||
.far-pen-alt:before {
|
||||
content: '\f006';
|
||||
}
|
||||
|
||||
.far-pen-square:before {
|
||||
content: '\f007';
|
||||
}
|
||||
|
||||
.far-trash-alt:before {
|
||||
content: '\f00a';
|
||||
}
|
||||
|
||||
.far-trash:before {
|
||||
content: '\f00b';
|
||||
}
|
||||
|
||||
.far-rocket:before {
|
||||
content: '\f00c';
|
||||
}
|
||||
|
||||
.far-trophy-alt:before {
|
||||
content: '\f00d';
|
||||
}
|
||||
|
||||
.far-trophy:before {
|
||||
content: '\f00e';
|
||||
}
|
||||
|
||||
.far-coffee:before {
|
||||
content: '\f00f';
|
||||
}
|
||||
|
||||
.far-paint-brush:before {
|
||||
content: '\f010';
|
||||
}
|
||||
|
||||
.far-poo:before {
|
||||
content: '\f011';
|
||||
}
|
||||
|
||||
.far-paper-plane:before {
|
||||
content: '\f012';
|
||||
}
|
||||
|
||||
.far-smile:before {
|
||||
content: '\f013';
|
||||
}
|
||||
|
||||
.far-bomb:before {
|
||||
content: '\f014';
|
||||
}
|
||||
|
||||
.far-thumbs-up:before {
|
||||
content: '\f015';
|
||||
}
|
||||
|
||||
.far-thumbs-down:before {
|
||||
content: '\f016';
|
||||
}
|
||||
|
||||
.far-star-exclamation:before {
|
||||
content: '\f018';
|
||||
}
|
||||
|
||||
.far-star:before {
|
||||
content: '\f019';
|
||||
}
|
||||
|
||||
.far-camera-retro:before {
|
||||
content: '\f01a';
|
||||
}
|
||||
|
||||
.far-camera-alt:before {
|
||||
content: '\f01b';
|
||||
}
|
||||
|
||||
.far-camera:before {
|
||||
content: '\1F4F7';
|
||||
}
|
||||
|
||||
.far-bullhorn:before {
|
||||
content: '\f01d';
|
||||
}
|
||||
|
||||
.far-lock-alt:before {
|
||||
content: '\f01e';
|
||||
}
|
||||
|
||||
.far-lock:before {
|
||||
content: '\f01f';
|
||||
}
|
||||
|
||||
.far-file-alt:before {
|
||||
content: '\f020';
|
||||
}
|
||||
|
||||
.far-file:before {
|
||||
content: '\f021';
|
||||
}
|
||||
|
||||
.far-leaf:before {
|
||||
content: '\f022';
|
||||
}
|
||||
|
||||
.far-flask:before {
|
||||
content: '\f023';
|
||||
}
|
||||
|
||||
.far-comment-alt:before {
|
||||
content: '\f024';
|
||||
}
|
||||
|
||||
.far-comment:before {
|
||||
content: '\f025';
|
||||
}
|
||||
|
||||
.far-code:before {
|
||||
content: '\f026';
|
||||
}
|
||||
|
||||
.far-edit:before {
|
||||
content: '\f027';
|
||||
}
|
||||
|
||||
.far-gamepad:before {
|
||||
content: '\f028';
|
||||
}
|
||||
|
||||
.far-print:before {
|
||||
content: '\f029';
|
||||
}
|
||||
|
||||
.far-bars:before {
|
||||
content: '\f02a';
|
||||
}
|
||||
|
||||
.far-home:before {
|
||||
content: '\f02b';
|
||||
}
|
||||
|
||||
.far-magic:before {
|
||||
content: '\f02c';
|
||||
}
|
||||
|
||||
.far-jack-o-lantern:before {
|
||||
content: '\f02d';
|
||||
}
|
||||
|
||||
.far-pencil:before {
|
||||
content: '\f02e';
|
||||
}
|
||||
|
||||
.far-pencil-alt:before {
|
||||
content: '\f02f';
|
||||
}
|
||||
|
||||
.far-search:before {
|
||||
content: '\f030';
|
||||
}
|
||||
|
||||
.far-search-plus:before {
|
||||
content: '\f031';
|
||||
}
|
||||
|
||||
.far-search-minus:before {
|
||||
content: '\f032';
|
||||
}
|
||||
|
||||
.far-martini-glass:before {
|
||||
content: '\f033';
|
||||
}
|
||||
|
||||
.far-music:before {
|
||||
content: '\f034';
|
||||
}
|
||||
|
||||
.far-user:before {
|
||||
content: '\f035';
|
||||
}
|
||||
|
||||
.far-film:before {
|
||||
content: '\f036';
|
||||
}
|
||||
|
||||
.far-th-large:before {
|
||||
content: '\f037';
|
||||
}
|
||||
|
||||
.far-th:before {
|
||||
content: '\f038';
|
||||
}
|
||||
|
||||
.far-th-list:before {
|
||||
content: '\f039';
|
||||
}
|
||||
|
||||
.far-utensils:before {
|
||||
content: '\f03a';
|
||||
}
|
||||
|
||||
.far-utensil-fork:before {
|
||||
content: '\f03b';
|
||||
}
|
||||
|
||||
.far-utensil-knife:before {
|
||||
content: '\f03c';
|
||||
}
|
||||
|
||||
.far-utensil-spoon:before {
|
||||
content: '\f03d';
|
||||
}
|
||||
|
||||
.far-utensils-alt:before {
|
||||
content: '\f03e';
|
||||
}
|
||||
|
||||
.far-check:before {
|
||||
content: '\f03f';
|
||||
}
|
||||
|
||||
.far-check-square:before {
|
||||
content: '\f040';
|
||||
}
|
||||
|
||||
.far-check-circle:before {
|
||||
content: '\f041';
|
||||
}
|
||||
|
||||
.far-times:before {
|
||||
content: '\f042';
|
||||
}
|
||||
|
||||
.far-times-square:before {
|
||||
content: '\f043';
|
||||
}
|
||||
|
||||
.far-plus:before {
|
||||
content: '\f044';
|
||||
}
|
||||
|
||||
.far-plus-square:before {
|
||||
content: '\f045';
|
||||
}
|
||||
|
||||
.far-minus:before {
|
||||
content: '\f046';
|
||||
}
|
||||
|
||||
.far-minus-square:before {
|
||||
content: '\f047';
|
||||
}
|
||||
|
||||
.far-minus-circle:before {
|
||||
content: '\f048';
|
||||
}
|
||||
|
||||
.far-heart:before {
|
||||
content: '\f049';
|
||||
}
|
||||
|
||||
.far-diamond:before {
|
||||
content: '\f04a';
|
||||
}
|
||||
|
||||
.far-spade:before {
|
||||
content: '\f04b';
|
||||
}
|
||||
|
||||
.far-club:before {
|
||||
content: '\f04c';
|
||||
}
|
||||
|
||||
.far-square:before {
|
||||
content: '\f04d';
|
||||
}
|
||||
|
||||
.far-circle:before {
|
||||
content: '\f04e';
|
||||
}
|
||||
|
||||
.far-octagon:before {
|
||||
content: '\f04f';
|
||||
}
|
||||
|
||||
.far-hexagon:before {
|
||||
content: '\f050';
|
||||
}
|
||||
|
||||
.far-triangle:before {
|
||||
content: '\f051';
|
||||
}
|
||||
|
||||
.far-shield:before {
|
||||
content: '\f052';
|
||||
}
|
||||
|
||||
.far-badge:before {
|
||||
content: '\f053';
|
||||
}
|
||||
|
||||
.far-shield-check:before {
|
||||
content: '\f054';
|
||||
}
|
||||
|
||||
.far-badge-check:before {
|
||||
content: '\f055';
|
||||
}
|
||||
|
||||
.far-times-octagon:before {
|
||||
content: '\f056';
|
||||
}
|
||||
|
||||
.far-times-hexagon:before {
|
||||
content: '\f057';
|
||||
}
|
||||
|
||||
.far-plus-octagon:before {
|
||||
content: '\f058';
|
||||
}
|
||||
|
||||
.far-plus-hexagon:before {
|
||||
content: '\f059';
|
||||
}
|
||||
|
||||
.far-minus-octagon:before {
|
||||
content: '\f05a';
|
||||
}
|
||||
|
||||
.far-minus-hexagon:before {
|
||||
content: '\f05b';
|
||||
}
|
||||
|
||||
|
||||
.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/regular/css/ie-only-min.css
vendored
Executable file
1
icons/regular/css/ie-only-min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
587
icons/regular/css/ie-only.css
Executable file
587
icons/regular/css/ie-only.css
Executable file
@@ -0,0 +1,587 @@
|
||||
@font-face {
|
||||
font-family: 'Fa5Regular';
|
||||
src: url('../icons/icons.eot');
|
||||
src: url('../icons/icons.eot?#iefix') format('embedded-opentype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.far {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 'Fa5Regular';
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
|
||||
.far-lg {
|
||||
font-size: 1.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%;
|
||||
}
|
||||
|
||||
.far-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.far-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.far-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.far-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-fw {
|
||||
width: 1.28571429em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-ul {
|
||||
padding-left: 0;
|
||||
margin-left: 2.14285714em;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.far-ul> li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.far-li {
|
||||
position: absolute;
|
||||
left: -2.14285714em;
|
||||
width: 2.14285714em;
|
||||
top: 0.14285714em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.far-li.far-lg {
|
||||
left: -1.85714286em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid 0.08em #eeeeee;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.pull-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.far.pull-left {
|
||||
margin-right: .3em;
|
||||
}
|
||||
|
||||
.far.pull-right {
|
||||
margin-left: .3em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-spin {
|
||||
-webkit-animation: far-spin 2s infinite linear;
|
||||
animation: far-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.far-pulse {
|
||||
-webkit-animation: far-spin 1s infinite steps(8);
|
||||
animation: far-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes far-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes far-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-rotate-90 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.far-rotate-180 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.far-rotate-270 {
|
||||
filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.far-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);
|
||||
}
|
||||
|
||||
.far-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 .far-rotate-90,
|
||||
:root .far-rotate-180,
|
||||
:root .far-rotate-270,
|
||||
:root .far-flip-horizontal,
|
||||
:root .far-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.far-stack-1x,
|
||||
.far-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.far-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.far-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.far-inverse {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.far-book:before {
|
||||
content: '\f000';
|
||||
}
|
||||
|
||||
.far-envelope:before {
|
||||
content: '\f001';
|
||||
}
|
||||
|
||||
.far-times-circle:before {
|
||||
content: '\f002';
|
||||
}
|
||||
|
||||
.far-plus-circle:before {
|
||||
content: '\f003';
|
||||
}
|
||||
|
||||
.far-exclamation-triangle:before {
|
||||
content: '\f004';
|
||||
}
|
||||
|
||||
.far-pen:before {
|
||||
content: '\f005';
|
||||
}
|
||||
|
||||
.far-pen-alt:before {
|
||||
content: '\f006';
|
||||
}
|
||||
|
||||
.far-pen-square:before {
|
||||
content: '\f007';
|
||||
}
|
||||
|
||||
.far-trash-alt:before {
|
||||
content: '\f00a';
|
||||
}
|
||||
|
||||
.far-trash:before {
|
||||
content: '\f00b';
|
||||
}
|
||||
|
||||
.far-rocket:before {
|
||||
content: '\f00c';
|
||||
}
|
||||
|
||||
.far-trophy-alt:before {
|
||||
content: '\f00d';
|
||||
}
|
||||
|
||||
.far-trophy:before {
|
||||
content: '\f00e';
|
||||
}
|
||||
|
||||
.far-coffee:before {
|
||||
content: '\f00f';
|
||||
}
|
||||
|
||||
.far-paint-brush:before {
|
||||
content: '\f010';
|
||||
}
|
||||
|
||||
.far-poo:before {
|
||||
content: '\f011';
|
||||
}
|
||||
|
||||
.far-paper-plane:before {
|
||||
content: '\f012';
|
||||
}
|
||||
|
||||
.far-smile:before {
|
||||
content: '\f013';
|
||||
}
|
||||
|
||||
.far-bomb:before {
|
||||
content: '\f014';
|
||||
}
|
||||
|
||||
.far-thumbs-up:before {
|
||||
content: '\f015';
|
||||
}
|
||||
|
||||
.far-thumbs-down:before {
|
||||
content: '\f016';
|
||||
}
|
||||
|
||||
.far-star-exclamation:before {
|
||||
content: '\f018';
|
||||
}
|
||||
|
||||
.far-star:before {
|
||||
content: '\f019';
|
||||
}
|
||||
|
||||
.far-camera-retro:before {
|
||||
content: '\f01a';
|
||||
}
|
||||
|
||||
.far-camera-alt:before {
|
||||
content: '\f01b';
|
||||
}
|
||||
|
||||
.far-camera:before {
|
||||
content: '\1F4F7';
|
||||
}
|
||||
|
||||
.far-bullhorn:before {
|
||||
content: '\f01d';
|
||||
}
|
||||
|
||||
.far-lock-alt:before {
|
||||
content: '\f01e';
|
||||
}
|
||||
|
||||
.far-lock:before {
|
||||
content: '\f01f';
|
||||
}
|
||||
|
||||
.far-file-alt:before {
|
||||
content: '\f020';
|
||||
}
|
||||
|
||||
.far-file:before {
|
||||
content: '\f021';
|
||||
}
|
||||
|
||||
.far-leaf:before {
|
||||
content: '\f022';
|
||||
}
|
||||
|
||||
.far-flask:before {
|
||||
content: '\f023';
|
||||
}
|
||||
|
||||
.far-comment-alt:before {
|
||||
content: '\f024';
|
||||
}
|
||||
|
||||
.far-comment:before {
|
||||
content: '\f025';
|
||||
}
|
||||
|
||||
.far-code:before {
|
||||
content: '\f026';
|
||||
}
|
||||
|
||||
.far-edit:before {
|
||||
content: '\f027';
|
||||
}
|
||||
|
||||
.far-gamepad:before {
|
||||
content: '\f028';
|
||||
}
|
||||
|
||||
.far-print:before {
|
||||
content: '\f029';
|
||||
}
|
||||
|
||||
.far-bars:before {
|
||||
content: '\f02a';
|
||||
}
|
||||
|
||||
.far-home:before {
|
||||
content: '\f02b';
|
||||
}
|
||||
|
||||
.far-magic:before {
|
||||
content: '\f02c';
|
||||
}
|
||||
|
||||
.far-jack-o-lantern:before {
|
||||
content: '\f02d';
|
||||
}
|
||||
|
||||
.far-pencil:before {
|
||||
content: '\f02e';
|
||||
}
|
||||
|
||||
.far-pencil-alt:before {
|
||||
content: '\f02f';
|
||||
}
|
||||
|
||||
.far-search:before {
|
||||
content: '\f030';
|
||||
}
|
||||
|
||||
.far-search-plus:before {
|
||||
content: '\f031';
|
||||
}
|
||||
|
||||
.far-search-minus:before {
|
||||
content: '\f032';
|
||||
}
|
||||
|
||||
.far-martini-glass:before {
|
||||
content: '\f033';
|
||||
}
|
||||
|
||||
.far-music:before {
|
||||
content: '\f034';
|
||||
}
|
||||
|
||||
.far-user:before {
|
||||
content: '\f035';
|
||||
}
|
||||
|
||||
.far-film:before {
|
||||
content: '\f036';
|
||||
}
|
||||
|
||||
.far-th-large:before {
|
||||
content: '\f037';
|
||||
}
|
||||
|
||||
.far-th:before {
|
||||
content: '\f038';
|
||||
}
|
||||
|
||||
.far-th-list:before {
|
||||
content: '\f039';
|
||||
}
|
||||
|
||||
.far-utensils:before {
|
||||
content: '\f03a';
|
||||
}
|
||||
|
||||
.far-utensil-fork:before {
|
||||
content: '\f03b';
|
||||
}
|
||||
|
||||
.far-utensil-knife:before {
|
||||
content: '\f03c';
|
||||
}
|
||||
|
||||
.far-utensil-spoon:before {
|
||||
content: '\f03d';
|
||||
}
|
||||
|
||||
.far-utensils-alt:before {
|
||||
content: '\f03e';
|
||||
}
|
||||
|
||||
.far-check:before {
|
||||
content: '\f03f';
|
||||
}
|
||||
|
||||
.far-check-square:before {
|
||||
content: '\f040';
|
||||
}
|
||||
|
||||
.far-check-circle:before {
|
||||
content: '\f041';
|
||||
}
|
||||
|
||||
.far-times:before {
|
||||
content: '\f042';
|
||||
}
|
||||
|
||||
.far-times-square:before {
|
||||
content: '\f043';
|
||||
}
|
||||
|
||||
.far-plus:before {
|
||||
content: '\f044';
|
||||
}
|
||||
|
||||
.far-plus-square:before {
|
||||
content: '\f045';
|
||||
}
|
||||
|
||||
.far-minus:before {
|
||||
content: '\f046';
|
||||
}
|
||||
|
||||
.far-minus-square:before {
|
||||
content: '\f047';
|
||||
}
|
||||
|
||||
.far-minus-circle:before {
|
||||
content: '\f048';
|
||||
}
|
||||
|
||||
.far-heart:before {
|
||||
content: '\f049';
|
||||
}
|
||||
|
||||
.far-diamond:before {
|
||||
content: '\f04a';
|
||||
}
|
||||
|
||||
.far-spade:before {
|
||||
content: '\f04b';
|
||||
}
|
||||
|
||||
.far-club:before {
|
||||
content: '\f04c';
|
||||
}
|
||||
|
||||
.far-square:before {
|
||||
content: '\f04d';
|
||||
}
|
||||
|
||||
.far-circle:before {
|
||||
content: '\f04e';
|
||||
}
|
||||
|
||||
.far-octagon:before {
|
||||
content: '\f04f';
|
||||
}
|
||||
|
||||
.far-hexagon:before {
|
||||
content: '\f050';
|
||||
}
|
||||
|
||||
.far-triangle:before {
|
||||
content: '\f051';
|
||||
}
|
||||
|
||||
.far-shield:before {
|
||||
content: '\f052';
|
||||
}
|
||||
|
||||
.far-badge:before {
|
||||
content: '\f053';
|
||||
}
|
||||
|
||||
.far-shield-check:before {
|
||||
content: '\f054';
|
||||
}
|
||||
|
||||
.far-badge-check:before {
|
||||
content: '\f055';
|
||||
}
|
||||
|
||||
.far-times-octagon:before {
|
||||
content: '\f056';
|
||||
}
|
||||
|
||||
.far-times-hexagon:before {
|
||||
content: '\f057';
|
||||
}
|
||||
|
||||
.far-plus-octagon:before {
|
||||
content: '\f058';
|
||||
}
|
||||
|
||||
.far-plus-hexagon:before {
|
||||
content: '\f059';
|
||||
}
|
||||
|
||||
.far-minus-octagon:before {
|
||||
content: '\f05a';
|
||||
}
|
||||
|
||||
.far-minus-hexagon:before {
|
||||
content: '\f05b';
|
||||
}
|
||||
|
||||
|
||||
.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/regular/css/less/mixins.less
Executable file
25
icons/regular/css/less/mixins.less
Executable file
@@ -0,0 +1,25 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
.far-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal @far-font-size-base/@far-line-height-base "Fa5Regular";
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.far-icon-rotate(@degrees, @rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
|
||||
-webkit-transform: rotate(@degrees);
|
||||
-ms-transform: rotate(@degrees);
|
||||
transform: rotate(@degrees);
|
||||
}
|
||||
|
||||
.far-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/regular/css/less/variables.less
Executable file
185
icons/regular/css/less/variables.less
Executable file
@@ -0,0 +1,185 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
@far-font-size-base: 14px;
|
||||
@far-line-height-base: 1;
|
||||
|
||||
|
||||
@far-var-book: "\f000";
|
||||
|
||||
@far-var-envelope: "\f001";
|
||||
|
||||
@far-var-times-circle: "\f002";
|
||||
|
||||
@far-var-plus-circle: "\f003";
|
||||
|
||||
@far-var-exclamation-triangle: "\f004";
|
||||
|
||||
@far-var-pen: "\f005";
|
||||
|
||||
@far-var-pen-alt: "\f006";
|
||||
|
||||
@far-var-pen-square: "\f007";
|
||||
|
||||
@far-var-trash-alt: "\f00a";
|
||||
|
||||
@far-var-trash: "\f00b";
|
||||
|
||||
@far-var-rocket: "\f00c";
|
||||
|
||||
@far-var-trophy-alt: "\f00d";
|
||||
|
||||
@far-var-trophy: "\f00e";
|
||||
|
||||
@far-var-coffee: "\f00f";
|
||||
|
||||
@far-var-paint-brush: "\f010";
|
||||
|
||||
@far-var-poo: "\f011";
|
||||
|
||||
@far-var-paper-plane: "\f012";
|
||||
|
||||
@far-var-smile: "\f013";
|
||||
|
||||
@far-var-bomb: "\f014";
|
||||
|
||||
@far-var-thumbs-up: "\f015";
|
||||
|
||||
@far-var-thumbs-down: "\f016";
|
||||
|
||||
@far-var-star-exclamation: "\f018";
|
||||
|
||||
@far-var-star: "\f019";
|
||||
|
||||
@far-var-camera-retro: "\f01a";
|
||||
|
||||
@far-var-camera-alt: "\f01b";
|
||||
|
||||
@far-var-camera: "\1F4F7";
|
||||
|
||||
@far-var-bullhorn: "\f01d";
|
||||
|
||||
@far-var-lock-alt: "\f01e";
|
||||
|
||||
@far-var-lock: "\f01f";
|
||||
|
||||
@far-var-file-alt: "\f020";
|
||||
|
||||
@far-var-file: "\f021";
|
||||
|
||||
@far-var-leaf: "\f022";
|
||||
|
||||
@far-var-flask: "\f023";
|
||||
|
||||
@far-var-comment-alt: "\f024";
|
||||
|
||||
@far-var-comment: "\f025";
|
||||
|
||||
@far-var-code: "\f026";
|
||||
|
||||
@far-var-edit: "\f027";
|
||||
|
||||
@far-var-gamepad: "\f028";
|
||||
|
||||
@far-var-print: "\f029";
|
||||
|
||||
@far-var-bars: "\f02a";
|
||||
|
||||
@far-var-home: "\f02b";
|
||||
|
||||
@far-var-magic: "\f02c";
|
||||
|
||||
@far-var-jack-o-lantern: "\f02d";
|
||||
|
||||
@far-var-pencil: "\f02e";
|
||||
|
||||
@far-var-pencil-alt: "\f02f";
|
||||
|
||||
@far-var-search: "\f030";
|
||||
|
||||
@far-var-search-plus: "\f031";
|
||||
|
||||
@far-var-search-minus: "\f032";
|
||||
|
||||
@far-var-martini-glass: "\f033";
|
||||
|
||||
@far-var-music: "\f034";
|
||||
|
||||
@far-var-user: "\f035";
|
||||
|
||||
@far-var-film: "\f036";
|
||||
|
||||
@far-var-th-large: "\f037";
|
||||
|
||||
@far-var-th: "\f038";
|
||||
|
||||
@far-var-th-list: "\f039";
|
||||
|
||||
@far-var-utensils: "\f03a";
|
||||
|
||||
@far-var-utensil-fork: "\f03b";
|
||||
|
||||
@far-var-utensil-knife: "\f03c";
|
||||
|
||||
@far-var-utensil-spoon: "\f03d";
|
||||
|
||||
@far-var-utensils-alt: "\f03e";
|
||||
|
||||
@far-var-check: "\f03f";
|
||||
|
||||
@far-var-check-square: "\f040";
|
||||
|
||||
@far-var-check-circle: "\f041";
|
||||
|
||||
@far-var-times: "\f042";
|
||||
|
||||
@far-var-times-square: "\f043";
|
||||
|
||||
@far-var-plus: "\f044";
|
||||
|
||||
@far-var-plus-square: "\f045";
|
||||
|
||||
@far-var-minus: "\f046";
|
||||
|
||||
@far-var-minus-square: "\f047";
|
||||
|
||||
@far-var-minus-circle: "\f048";
|
||||
|
||||
@far-var-heart: "\f049";
|
||||
|
||||
@far-var-diamond: "\f04a";
|
||||
|
||||
@far-var-spade: "\f04b";
|
||||
|
||||
@far-var-club: "\f04c";
|
||||
|
||||
@far-var-square: "\f04d";
|
||||
|
||||
@far-var-circle: "\f04e";
|
||||
|
||||
@far-var-octagon: "\f04f";
|
||||
|
||||
@far-var-hexagon: "\f050";
|
||||
|
||||
@far-var-triangle: "\f051";
|
||||
|
||||
@far-var-shield: "\f052";
|
||||
|
||||
@far-var-badge: "\f053";
|
||||
|
||||
@far-var-shield-check: "\f054";
|
||||
|
||||
@far-var-badge-check: "\f055";
|
||||
|
||||
@far-var-times-octagon: "\f056";
|
||||
|
||||
@far-var-times-hexagon: "\f057";
|
||||
|
||||
@far-var-plus-octagon: "\f058";
|
||||
|
||||
@far-var-plus-hexagon: "\f059";
|
||||
|
||||
@far-var-minus-octagon: "\f05a";
|
||||
|
||||
@far-var-minus-hexagon: "\f05b";
|
||||
|
||||
25
icons/regular/css/scss/mixins.scss
Executable file
25
icons/regular/css/scss/mixins.scss
Executable file
@@ -0,0 +1,25 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
@mixin far-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$far-font-size-base}/#{$far-line-height-base} "Fa5Regular";
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
@mixin far-icon-rotate($degrees, $rotation) {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
||||
-webkit-transform: rotate($degrees);
|
||||
-ms-transform: rotate($degrees);
|
||||
transform: rotate($degrees);
|
||||
}
|
||||
|
||||
@mixin far-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/regular/css/scss/variables.scss
Executable file
185
icons/regular/css/scss/variables.scss
Executable file
@@ -0,0 +1,185 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
$far-font-size-base: 14px !default;
|
||||
$far-line-height-base: 1 !default;
|
||||
|
||||
|
||||
$far-var-book: "\f000";
|
||||
|
||||
$far-var-envelope: "\f001";
|
||||
|
||||
$far-var-times-circle: "\f002";
|
||||
|
||||
$far-var-plus-circle: "\f003";
|
||||
|
||||
$far-var-exclamation-triangle: "\f004";
|
||||
|
||||
$far-var-pen: "\f005";
|
||||
|
||||
$far-var-pen-alt: "\f006";
|
||||
|
||||
$far-var-pen-square: "\f007";
|
||||
|
||||
$far-var-trash-alt: "\f00a";
|
||||
|
||||
$far-var-trash: "\f00b";
|
||||
|
||||
$far-var-rocket: "\f00c";
|
||||
|
||||
$far-var-trophy-alt: "\f00d";
|
||||
|
||||
$far-var-trophy: "\f00e";
|
||||
|
||||
$far-var-coffee: "\f00f";
|
||||
|
||||
$far-var-paint-brush: "\f010";
|
||||
|
||||
$far-var-poo: "\f011";
|
||||
|
||||
$far-var-paper-plane: "\f012";
|
||||
|
||||
$far-var-smile: "\f013";
|
||||
|
||||
$far-var-bomb: "\f014";
|
||||
|
||||
$far-var-thumbs-up: "\f015";
|
||||
|
||||
$far-var-thumbs-down: "\f016";
|
||||
|
||||
$far-var-star-exclamation: "\f018";
|
||||
|
||||
$far-var-star: "\f019";
|
||||
|
||||
$far-var-camera-retro: "\f01a";
|
||||
|
||||
$far-var-camera-alt: "\f01b";
|
||||
|
||||
$far-var-camera: "\1F4F7";
|
||||
|
||||
$far-var-bullhorn: "\f01d";
|
||||
|
||||
$far-var-lock-alt: "\f01e";
|
||||
|
||||
$far-var-lock: "\f01f";
|
||||
|
||||
$far-var-file-alt: "\f020";
|
||||
|
||||
$far-var-file: "\f021";
|
||||
|
||||
$far-var-leaf: "\f022";
|
||||
|
||||
$far-var-flask: "\f023";
|
||||
|
||||
$far-var-comment-alt: "\f024";
|
||||
|
||||
$far-var-comment: "\f025";
|
||||
|
||||
$far-var-code: "\f026";
|
||||
|
||||
$far-var-edit: "\f027";
|
||||
|
||||
$far-var-gamepad: "\f028";
|
||||
|
||||
$far-var-print: "\f029";
|
||||
|
||||
$far-var-bars: "\f02a";
|
||||
|
||||
$far-var-home: "\f02b";
|
||||
|
||||
$far-var-magic: "\f02c";
|
||||
|
||||
$far-var-jack-o-lantern: "\f02d";
|
||||
|
||||
$far-var-pencil: "\f02e";
|
||||
|
||||
$far-var-pencil-alt: "\f02f";
|
||||
|
||||
$far-var-search: "\f030";
|
||||
|
||||
$far-var-search-plus: "\f031";
|
||||
|
||||
$far-var-search-minus: "\f032";
|
||||
|
||||
$far-var-martini-glass: "\f033";
|
||||
|
||||
$far-var-music: "\f034";
|
||||
|
||||
$far-var-user: "\f035";
|
||||
|
||||
$far-var-film: "\f036";
|
||||
|
||||
$far-var-th-large: "\f037";
|
||||
|
||||
$far-var-th: "\f038";
|
||||
|
||||
$far-var-th-list: "\f039";
|
||||
|
||||
$far-var-utensils: "\f03a";
|
||||
|
||||
$far-var-utensil-fork: "\f03b";
|
||||
|
||||
$far-var-utensil-knife: "\f03c";
|
||||
|
||||
$far-var-utensil-spoon: "\f03d";
|
||||
|
||||
$far-var-utensils-alt: "\f03e";
|
||||
|
||||
$far-var-check: "\f03f";
|
||||
|
||||
$far-var-check-square: "\f040";
|
||||
|
||||
$far-var-check-circle: "\f041";
|
||||
|
||||
$far-var-times: "\f042";
|
||||
|
||||
$far-var-times-square: "\f043";
|
||||
|
||||
$far-var-plus: "\f044";
|
||||
|
||||
$far-var-plus-square: "\f045";
|
||||
|
||||
$far-var-minus: "\f046";
|
||||
|
||||
$far-var-minus-square: "\f047";
|
||||
|
||||
$far-var-minus-circle: "\f048";
|
||||
|
||||
$far-var-heart: "\f049";
|
||||
|
||||
$far-var-diamond: "\f04a";
|
||||
|
||||
$far-var-spade: "\f04b";
|
||||
|
||||
$far-var-club: "\f04c";
|
||||
|
||||
$far-var-square: "\f04d";
|
||||
|
||||
$far-var-circle: "\f04e";
|
||||
|
||||
$far-var-octagon: "\f04f";
|
||||
|
||||
$far-var-hexagon: "\f050";
|
||||
|
||||
$far-var-triangle: "\f051";
|
||||
|
||||
$far-var-shield: "\f052";
|
||||
|
||||
$far-var-badge: "\f053";
|
||||
|
||||
$far-var-shield-check: "\f054";
|
||||
|
||||
$far-var-badge-check: "\f055";
|
||||
|
||||
$far-var-times-octagon: "\f056";
|
||||
|
||||
$far-var-times-hexagon: "\f057";
|
||||
|
||||
$far-var-plus-octagon: "\f058";
|
||||
|
||||
$far-var-plus-hexagon: "\f059";
|
||||
|
||||
$far-var-minus-octagon: "\f05a";
|
||||
|
||||
$far-var-minus-hexagon: "\f05b";
|
||||
|
||||
Reference in New Issue
Block a user