Updated to font awesome 6.6.0 (#2581)
Updated to [FontAwesome 6.6.0](https://github.com/FortAwesome/Font-Awesome/releases/tag/6.6.0) --------- Signed-off-by: George Araujo <george.gcac@gmail.com>
This commit is contained in:
parent
aef552f043
commit
d9ea1b3dd3
@ -8,3 +8,4 @@ assets/js/search/*.js
|
|||||||
assets/plotly/demo.html
|
assets/plotly/demo.html
|
||||||
lighthouse_results/**
|
lighthouse_results/**
|
||||||
_posts/2015-10-20-math.md
|
_posts/2015-10-20-math.md
|
||||||
|
_sass/font-awesome/*.scss
|
||||||
|
|||||||
105
_sass/font-awesome/_animated.scss
vendored
105
_sass/font-awesome/_animated.scss
vendored
@ -16,7 +16,7 @@
|
|||||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
|
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-fade {
|
.#{$fa-css-prefix}-fade {
|
||||||
@ -25,7 +25,7 @@
|
|||||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
|
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-beat-fade {
|
.#{$fa-css-prefix}-beat-fade {
|
||||||
@ -34,7 +34,7 @@
|
|||||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
|
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-flip {
|
.#{$fa-css-prefix}-flip {
|
||||||
@ -99,49 +99,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-beat {
|
@keyframes #{$fa-css-prefix}-beat {
|
||||||
0%,
|
0%, 90% { transform: scale(1); }
|
||||||
90% {
|
45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); }
|
||||||
transform: scale(1);
|
|
||||||
}
|
|
||||||
45% {
|
|
||||||
transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-bounce {
|
@keyframes #{$fa-css-prefix}-bounce {
|
||||||
0% {
|
0% { transform: scale(1,1) translateY(0); }
|
||||||
transform: scale(1, 1) translateY(0);
|
10% { transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0); }
|
||||||
}
|
30% { transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1)) translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em)); }
|
||||||
10% {
|
50% { transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0); }
|
||||||
transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1), var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0);
|
57% { transform: scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em)); }
|
||||||
}
|
64% { transform: scale(1,1) translateY(0); }
|
||||||
30% {
|
100% { transform: scale(1,1) translateY(0); }
|
||||||
transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9), var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1))
|
|
||||||
translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em));
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05), var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0);
|
|
||||||
}
|
|
||||||
57% {
|
|
||||||
transform: scale(1, 1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em));
|
|
||||||
}
|
|
||||||
64% {
|
|
||||||
transform: scale(1, 1) translateY(0);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: scale(1, 1) translateY(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-fade {
|
@keyframes #{$fa-css-prefix}-fade {
|
||||||
50% {
|
50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); }
|
||||||
opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-beat-fade {
|
@keyframes #{$fa-css-prefix}-beat-fade {
|
||||||
0%,
|
0%, 100% {
|
||||||
100% {
|
|
||||||
opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4);
|
opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4);
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
@ -153,53 +130,23 @@
|
|||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-flip {
|
@keyframes #{$fa-css-prefix}-flip {
|
||||||
50% {
|
50% {
|
||||||
transform: rotate3d(
|
transform: rotate3d(var(--#{$fa-css-prefix}-flip-x, 0), var(--#{$fa-css-prefix}-flip-y, 1), var(--#{$fa-css-prefix}-flip-z, 0), var(--#{$fa-css-prefix}-flip-angle, -180deg));
|
||||||
var(--#{$fa-css-prefix}-flip-x, 0),
|
|
||||||
var(--#{$fa-css-prefix}-flip-y, 1),
|
|
||||||
var(--#{$fa-css-prefix}-flip-z, 0),
|
|
||||||
var(--#{$fa-css-prefix}-flip-angle, -180deg)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-shake {
|
@keyframes #{$fa-css-prefix}-shake {
|
||||||
0% {
|
0% { transform: rotate(-15deg); }
|
||||||
transform: rotate(-15deg);
|
4% { transform: rotate(15deg); }
|
||||||
}
|
8%, 24% { transform: rotate(-18deg); }
|
||||||
4% {
|
12%, 28% { transform: rotate(18deg); }
|
||||||
transform: rotate(15deg);
|
16% { transform: rotate(-22deg); }
|
||||||
}
|
20% { transform: rotate(22deg); }
|
||||||
8%,
|
32% { transform: rotate(-12deg); }
|
||||||
24% {
|
36% { transform: rotate(12deg); }
|
||||||
transform: rotate(-18deg);
|
40%, 100% { transform: rotate(0deg); }
|
||||||
}
|
|
||||||
12%,
|
|
||||||
28% {
|
|
||||||
transform: rotate(18deg);
|
|
||||||
}
|
|
||||||
16% {
|
|
||||||
transform: rotate(-22deg);
|
|
||||||
}
|
|
||||||
20% {
|
|
||||||
transform: rotate(22deg);
|
|
||||||
}
|
|
||||||
32% {
|
|
||||||
transform: rotate(-12deg);
|
|
||||||
}
|
|
||||||
36% {
|
|
||||||
transform: rotate(12deg);
|
|
||||||
}
|
|
||||||
40%,
|
|
||||||
100% {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes #{$fa-css-prefix}-spin {
|
@keyframes #{$fa-css-prefix}-spin {
|
||||||
0% {
|
0% { transform: rotate(0deg); }
|
||||||
transform: rotate(0deg);
|
100% { transform: rotate(360deg); }
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
4
_sass/font-awesome/_bordered-pulled.scss
vendored
4
_sass/font-awesome/_bordered-pulled.scss
vendored
@ -11,10 +11,10 @@
|
|||||||
|
|
||||||
.#{$fa-css-prefix}-pull-left {
|
.#{$fa-css-prefix}-pull-left {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-pull-right {
|
.#{$fa-css-prefix}-pull-right {
|
||||||
float: right;
|
float: right;
|
||||||
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
||||||
}
|
}
|
||||||
|
|||||||
19
_sass/font-awesome/_core.scss
vendored
19
_sass/font-awesome/_core.scss
vendored
@ -2,19 +2,19 @@
|
|||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
.#{$fa-css-prefix} {
|
.#{$fa-css-prefix} {
|
||||||
font-family: var(--#{$fa-css-prefix}-style-family, "#{$fa-style-family}");
|
font-family: var(--#{$fa-css-prefix}-style-family, '#{$fa-style-family}');
|
||||||
font-weight: var(--#{$fa-css-prefix}-style, #{$fa-style});
|
font-weight: var(--#{$fa-css-prefix}-style, #{$fa-style});
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix},
|
|
||||||
.#{$fa-css-prefix}-classic,
|
|
||||||
.#{$fa-css-prefix}-sharp,
|
|
||||||
.fas,
|
|
||||||
.#{$fa-css-prefix}-solid,
|
.#{$fa-css-prefix}-solid,
|
||||||
.far,
|
|
||||||
.#{$fa-css-prefix}-regular,
|
.#{$fa-css-prefix}-regular,
|
||||||
|
.#{$fa-css-prefix}-brands,
|
||||||
|
.fas,
|
||||||
|
.far,
|
||||||
.fab,
|
.fab,
|
||||||
.#{$fa-css-prefix}-brands {
|
.#{$fa-css-prefix}-sharp-solid,
|
||||||
|
.#{$fa-css-prefix}-classic,
|
||||||
|
.#{$fa-css-prefix} {
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
display: var(--#{$fa-css-prefix}-display, #{$fa-display});
|
display: var(--#{$fa-css-prefix}-display, #{$fa-display});
|
||||||
@ -29,14 +29,15 @@
|
|||||||
.#{$fa-css-prefix}-solid,
|
.#{$fa-css-prefix}-solid,
|
||||||
.far,
|
.far,
|
||||||
.#{$fa-css-prefix}-regular {
|
.#{$fa-css-prefix}-regular {
|
||||||
font-family: "Font Awesome 6 Free";
|
font-family: 'Font Awesome 6 Free';
|
||||||
}
|
}
|
||||||
|
|
||||||
.fab,
|
.fab,
|
||||||
.#{$fa-css-prefix}-brands {
|
.#{$fa-css-prefix}-brands {
|
||||||
font-family: "Font Awesome 6 Brands";
|
font-family: 'Font Awesome 6 Brands';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
%fa-icon {
|
%fa-icon {
|
||||||
@include fa-icon;
|
@include fa-icon;
|
||||||
}
|
}
|
||||||
|
|||||||
4
_sass/font-awesome/_functions.scss
vendored
4
_sass/font-awesome/_functions.scss
vendored
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
// fa-content: convenience function used to set content property
|
// fa-content: convenience function used to set content property
|
||||||
@function fa-content($fa-var) {
|
@function fa-content($fa-var) {
|
||||||
@return unquote('"#{ $fa-var }"');
|
@return unquote("\"#{ $fa-var }\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap
|
// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap
|
||||||
@ -51,7 +51,7 @@
|
|||||||
$remainder: $remainder - $divisor;
|
$remainder: $remainder - $divisor;
|
||||||
}
|
}
|
||||||
@if $remainder > 0 and $precision > 0 {
|
@if $remainder > 0 and $precision > 0 {
|
||||||
$remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * 0.1;
|
$remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * .1;
|
||||||
}
|
}
|
||||||
@return ($quotient + $remainder) * $sign;
|
@return ($quotient + $remainder) * $sign;
|
||||||
}
|
}
|
||||||
|
|||||||
5
_sass/font-awesome/_icons.scss
vendored
5
_sass/font-awesome/_icons.scss
vendored
@ -5,7 +5,6 @@
|
|||||||
readers do not read off random characters that represent icons */
|
readers do not read off random characters that represent icons */
|
||||||
|
|
||||||
@each $name, $icon in $fa-icons {
|
@each $name, $icon in $fa-icons {
|
||||||
.#{$fa-css-prefix}-#{$name}::before {
|
.#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
|
||||||
content: unquote('"#{ $icon }"');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
6
_sass/font-awesome/_list.scss
vendored
6
_sass/font-awesome/_list.scss
vendored
@ -6,13 +6,11 @@
|
|||||||
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
|
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
> li {
|
> li { position: relative; }
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-li {
|
.#{$fa-css-prefix}-li {
|
||||||
left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1);
|
left: calc(-1 * var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}));
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
|
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
|
||||||
|
|||||||
8
_sass/font-awesome/_mixins.scss
vendored
8
_sass/font-awesome/_mixins.scss
vendored
@ -13,7 +13,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// sets relative font-sizing and alignment (in _sizing)
|
// sets relative font-sizing and alignment (in _sizing)
|
||||||
@mixin fa-size($font-size) {
|
@mixin fa-size ($font-size) {
|
||||||
font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
|
font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
|
||||||
line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent
|
line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent
|
||||||
vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
|
vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
|
||||||
@ -51,7 +51,7 @@
|
|||||||
@extend .fa-solid;
|
@extend .fa-solid;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: unquote('"#{ $fa-var }"');
|
content: unquote("\"#{ $fa-var }\"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@mixin fa-icon-regular($fa-var) {
|
@mixin fa-icon-regular($fa-var) {
|
||||||
@ -59,7 +59,7 @@
|
|||||||
@extend .fa-regular;
|
@extend .fa-regular;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: unquote('"#{ $fa-var }"');
|
content: unquote("\"#{ $fa-var }\"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@mixin fa-icon-brands($fa-var) {
|
@mixin fa-icon-brands($fa-var) {
|
||||||
@ -67,6 +67,6 @@
|
|||||||
@extend .fa-brands;
|
@extend .fa-brands;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: unquote('"#{ $fa-var }"');
|
content: unquote("\"#{ $fa-var }\"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1860
_sass/font-awesome/_shims.scss
vendored
1860
_sass/font-awesome/_shims.scss
vendored
File diff suppressed because it is too large
Load Diff
2
_sass/font-awesome/_sizing.scss
vendored
2
_sass/font-awesome/_sizing.scss
vendored
@ -11,6 +11,6 @@
|
|||||||
// step-based scale (with alignment)
|
// step-based scale (with alignment)
|
||||||
@each $size, $value in $fa-sizes {
|
@each $size, $value in $fa-sizes {
|
||||||
.#{$fa-css-prefix}-#{$size} {
|
.#{$fa-css-prefix}-#{$size} {
|
||||||
@include fa-size($value);
|
@include fa-size($value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
76
_sass/font-awesome/_variables.scss
vendored
76
_sass/font-awesome/_variables.scss
vendored
@ -1,52 +1,52 @@
|
|||||||
// variables
|
// variables
|
||||||
// --------------------------
|
// --------------------------
|
||||||
|
|
||||||
$fa-css-prefix: fa !default;
|
$fa-css-prefix : fa !default;
|
||||||
$fa-style: 900 !default;
|
$fa-style : 900 !default;
|
||||||
$fa-style-family: "Font Awesome 6 Free" !default;
|
$fa-style-family : "Font Awesome 6 Free" !default;
|
||||||
|
|
||||||
$fa-display: inline-block !default;
|
$fa-display : inline-block !default;
|
||||||
|
|
||||||
$fa-fw-width: fa-divide(20em, 16) !default;
|
$fa-fw-width : fa-divide(20em, 16) !default;
|
||||||
$fa-inverse: #fff !default;
|
$fa-inverse : #fff !default;
|
||||||
|
|
||||||
$fa-border-color: #eee !default;
|
$fa-border-color : #eee !default;
|
||||||
$fa-border-padding: 0.2em 0.25em 0.15em !default;
|
$fa-border-padding : .2em .25em .15em !default;
|
||||||
$fa-border-radius: 0.1em !default;
|
$fa-border-radius : .1em !default;
|
||||||
$fa-border-style: solid !default;
|
$fa-border-style : solid !default;
|
||||||
$fa-border-width: 0.08em !default;
|
$fa-border-width : .08em !default;
|
||||||
|
|
||||||
$fa-size-scale-2xs: 10 !default;
|
$fa-size-scale-2xs : 10 !default;
|
||||||
$fa-size-scale-xs: 12 !default;
|
$fa-size-scale-xs : 12 !default;
|
||||||
$fa-size-scale-sm: 14 !default;
|
$fa-size-scale-sm : 14 !default;
|
||||||
$fa-size-scale-base: 16 !default;
|
$fa-size-scale-base : 16 !default;
|
||||||
$fa-size-scale-lg: 20 !default;
|
$fa-size-scale-lg : 20 !default;
|
||||||
$fa-size-scale-xl: 24 !default;
|
$fa-size-scale-xl : 24 !default;
|
||||||
$fa-size-scale-2xl: 32 !default;
|
$fa-size-scale-2xl : 32 !default;
|
||||||
|
|
||||||
$fa-sizes: (
|
$fa-sizes: (
|
||||||
"2xs": $fa-size-scale-2xs,
|
"2xs" : $fa-size-scale-2xs,
|
||||||
"xs": $fa-size-scale-xs,
|
"xs" : $fa-size-scale-xs,
|
||||||
"sm": $fa-size-scale-sm,
|
"sm" : $fa-size-scale-sm,
|
||||||
"lg": $fa-size-scale-lg,
|
"lg" : $fa-size-scale-lg,
|
||||||
"xl": $fa-size-scale-xl,
|
"xl" : $fa-size-scale-xl,
|
||||||
"2xl": $fa-size-scale-2xl,
|
"2xl" : $fa-size-scale-2xl
|
||||||
) !default;
|
) !default;
|
||||||
|
|
||||||
$fa-li-width: 2em !default;
|
$fa-li-width : 2em !default;
|
||||||
$fa-li-margin: $fa-li-width * fa-divide(5, 4) !default;
|
$fa-li-margin : $fa-li-width * fa-divide(5, 4) !default;
|
||||||
|
|
||||||
$fa-pull-margin: 0.3em !default;
|
$fa-pull-margin : .3em !default;
|
||||||
|
|
||||||
$fa-primary-opacity: 1 !default;
|
$fa-primary-opacity : 1 !default;
|
||||||
$fa-secondary-opacity: 0.4 !default;
|
$fa-secondary-opacity : .4 !default;
|
||||||
|
|
||||||
$fa-stack-vertical-align: middle !default;
|
$fa-stack-vertical-align: middle !default;
|
||||||
$fa-stack-width: ($fa-fw-width * 2) !default;
|
$fa-stack-width : ($fa-fw-width * 2) !default;
|
||||||
$fa-stack-z-index: auto !default;
|
$fa-stack-z-index : auto !default;
|
||||||
|
|
||||||
$fa-font-display: block !default;
|
$fa-font-display : block !default;
|
||||||
$fa-font-path: "../webfonts" !default;
|
$fa-font-path : "../webfonts" !default;
|
||||||
|
|
||||||
$fa-var-0: \30;
|
$fa-var-0: \30;
|
||||||
$fa-var-1: \31;
|
$fa-var-1: \31;
|
||||||
@ -514,6 +514,8 @@ $fa-var-right-to-bracket: \f2f6;
|
|||||||
$fa-var-sign-in-alt: \f2f6;
|
$fa-var-sign-in-alt: \f2f6;
|
||||||
$fa-var-venus: \f221;
|
$fa-var-venus: \f221;
|
||||||
$fa-var-passport: \f5ab;
|
$fa-var-passport: \f5ab;
|
||||||
|
$fa-var-thumbtack-slash: \e68f;
|
||||||
|
$fa-var-thumb-tack-slash: \e68f;
|
||||||
$fa-var-heart-pulse: \f21e;
|
$fa-var-heart-pulse: \f21e;
|
||||||
$fa-var-heartbeat: \f21e;
|
$fa-var-heartbeat: \f21e;
|
||||||
$fa-var-people-carry-box: \f4ce;
|
$fa-var-people-carry-box: \f4ce;
|
||||||
@ -1951,6 +1953,7 @@ $fa-var-sticky-note: \f249;
|
|||||||
$fa-var-bug-slash: \e490;
|
$fa-var-bug-slash: \e490;
|
||||||
$fa-var-arrow-up-from-water-pump: \e4b6;
|
$fa-var-arrow-up-from-water-pump: \e4b6;
|
||||||
$fa-var-bone: \f5d7;
|
$fa-var-bone: \f5d7;
|
||||||
|
$fa-var-table-cells-row-unlock: \e691;
|
||||||
$fa-var-user-injured: \f728;
|
$fa-var-user-injured: \f728;
|
||||||
$fa-var-face-sad-tear: \f5b4;
|
$fa-var-face-sad-tear: \f5b4;
|
||||||
$fa-var-sad-tear: \f5b4;
|
$fa-var-sad-tear: \f5b4;
|
||||||
@ -2035,6 +2038,7 @@ $fa-var-centercode: \f380;
|
|||||||
$fa-var-glide-g: \f2a6;
|
$fa-var-glide-g: \f2a6;
|
||||||
$fa-var-drupal: \f1a9;
|
$fa-var-drupal: \f1a9;
|
||||||
$fa-var-jxl: \e67b;
|
$fa-var-jxl: \e67b;
|
||||||
|
$fa-var-dart-lang: \e693;
|
||||||
$fa-var-hire-a-helper: \f3b0;
|
$fa-var-hire-a-helper: \f3b0;
|
||||||
$fa-var-creative-commons-by: \f4e7;
|
$fa-var-creative-commons-by: \f4e7;
|
||||||
$fa-var-unity: \e049;
|
$fa-var-unity: \e049;
|
||||||
@ -2348,6 +2352,7 @@ $fa-var-linkedin: \f08c;
|
|||||||
$fa-var-hubspot: \f3b2;
|
$fa-var-hubspot: \f3b2;
|
||||||
$fa-var-deploydog: \f38e;
|
$fa-var-deploydog: \f38e;
|
||||||
$fa-var-twitch: \f1e8;
|
$fa-var-twitch: \f1e8;
|
||||||
|
$fa-var-flutter: \e694;
|
||||||
$fa-var-ravelry: \f2d9;
|
$fa-var-ravelry: \f2d9;
|
||||||
$fa-var-mixer: \e056;
|
$fa-var-mixer: \e056;
|
||||||
$fa-var-square-lastfm: \f203;
|
$fa-var-square-lastfm: \f203;
|
||||||
@ -2994,6 +2999,8 @@ $fa-icons: (
|
|||||||
"sign-in-alt": $fa-var-sign-in-alt,
|
"sign-in-alt": $fa-var-sign-in-alt,
|
||||||
"venus": $fa-var-venus,
|
"venus": $fa-var-venus,
|
||||||
"passport": $fa-var-passport,
|
"passport": $fa-var-passport,
|
||||||
|
"thumbtack-slash": $fa-var-thumbtack-slash,
|
||||||
|
"thumb-tack-slash": $fa-var-thumb-tack-slash,
|
||||||
"heart-pulse": $fa-var-heart-pulse,
|
"heart-pulse": $fa-var-heart-pulse,
|
||||||
"heartbeat": $fa-var-heartbeat,
|
"heartbeat": $fa-var-heartbeat,
|
||||||
"people-carry-box": $fa-var-people-carry-box,
|
"people-carry-box": $fa-var-people-carry-box,
|
||||||
@ -4431,6 +4438,7 @@ $fa-icons: (
|
|||||||
"bug-slash": $fa-var-bug-slash,
|
"bug-slash": $fa-var-bug-slash,
|
||||||
"arrow-up-from-water-pump": $fa-var-arrow-up-from-water-pump,
|
"arrow-up-from-water-pump": $fa-var-arrow-up-from-water-pump,
|
||||||
"bone": $fa-var-bone,
|
"bone": $fa-var-bone,
|
||||||
|
"table-cells-row-unlock": $fa-var-table-cells-row-unlock,
|
||||||
"user-injured": $fa-var-user-injured,
|
"user-injured": $fa-var-user-injured,
|
||||||
"face-sad-tear": $fa-var-face-sad-tear,
|
"face-sad-tear": $fa-var-face-sad-tear,
|
||||||
"sad-tear": $fa-var-sad-tear,
|
"sad-tear": $fa-var-sad-tear,
|
||||||
@ -4517,6 +4525,7 @@ $fa-brand-icons: (
|
|||||||
"glide-g": $fa-var-glide-g,
|
"glide-g": $fa-var-glide-g,
|
||||||
"drupal": $fa-var-drupal,
|
"drupal": $fa-var-drupal,
|
||||||
"jxl": $fa-var-jxl,
|
"jxl": $fa-var-jxl,
|
||||||
|
"dart-lang": $fa-var-dart-lang,
|
||||||
"hire-a-helper": $fa-var-hire-a-helper,
|
"hire-a-helper": $fa-var-hire-a-helper,
|
||||||
"creative-commons-by": $fa-var-creative-commons-by,
|
"creative-commons-by": $fa-var-creative-commons-by,
|
||||||
"unity": $fa-var-unity,
|
"unity": $fa-var-unity,
|
||||||
@ -4830,6 +4839,7 @@ $fa-brand-icons: (
|
|||||||
"hubspot": $fa-var-hubspot,
|
"hubspot": $fa-var-hubspot,
|
||||||
"deploydog": $fa-var-deploydog,
|
"deploydog": $fa-var-deploydog,
|
||||||
"twitch": $fa-var-twitch,
|
"twitch": $fa-var-twitch,
|
||||||
|
"flutter": $fa-var-flutter,
|
||||||
"ravelry": $fa-var-ravelry,
|
"ravelry": $fa-var-ravelry,
|
||||||
"mixer": $fa-var-mixer,
|
"mixer": $fa-var-mixer,
|
||||||
"square-lastfm": $fa-var-square-lastfm,
|
"square-lastfm": $fa-var-square-lastfm,
|
||||||
|
|||||||
24
_sass/font-awesome/brands.scss
vendored
24
_sass/font-awesome/brands.scss
vendored
@ -1,25 +1,23 @@
|
|||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||||
* Copyright 2024 Fonticons, Inc.
|
* Copyright 2024 Fonticons, Inc.
|
||||||
*/
|
*/
|
||||||
@import "functions";
|
@import 'functions';
|
||||||
@import "variables";
|
@import 'variables';
|
||||||
|
|
||||||
:root,
|
:root, :host {
|
||||||
:host {
|
--#{$fa-css-prefix}-style-family-brands: 'Font Awesome 6 Brands';
|
||||||
--#{$fa-css-prefix}-style-family-brands: "Font Awesome 6 Brands";
|
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
|
||||||
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Font Awesome 6 Brands";
|
font-family: 'Font Awesome 6 Brands';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-display: $fa-font-display;
|
font-display: $fa-font-display;
|
||||||
src:
|
src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
|
||||||
url("#{$fa-font-path}/fa-brands-400.woff2") format("woff2"),
|
url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
|
||||||
url("#{$fa-font-path}/fa-brands-400.ttf") format("truetype");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.fab,
|
.fab,
|
||||||
@ -28,7 +26,5 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@each $name, $icon in $fa-brand-icons {
|
@each $name, $icon in $fa-brand-icons {
|
||||||
.#{$fa-css-prefix}-#{$name}:before {
|
.#{$fa-css-prefix}-#{$name}:before { content: unquote("\"#{ $icon }\""); }
|
||||||
content: unquote('"#{ $icon }"');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
28
_sass/font-awesome/fontawesome.scss
vendored
28
_sass/font-awesome/fontawesome.scss
vendored
@ -1,21 +1,21 @@
|
|||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||||
* Copyright 2024 Fonticons, Inc.
|
* Copyright 2024 Fonticons, Inc.
|
||||||
*/
|
*/
|
||||||
// Font Awesome core compile (Web Fonts-based)
|
// Font Awesome core compile (Web Fonts-based)
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@import "functions";
|
@import 'functions';
|
||||||
@import "variables";
|
@import 'variables';
|
||||||
@import "mixins";
|
@import 'mixins';
|
||||||
@import "core";
|
@import 'core';
|
||||||
@import "sizing";
|
@import 'sizing';
|
||||||
@import "fixed-width";
|
@import 'fixed-width';
|
||||||
@import "list";
|
@import 'list';
|
||||||
@import "bordered-pulled";
|
@import 'bordered-pulled';
|
||||||
@import "animated";
|
@import 'animated';
|
||||||
@import "rotated-flipped";
|
@import 'rotated-flipped';
|
||||||
@import "stacked";
|
@import 'stacked';
|
||||||
@import "icons";
|
@import 'icons';
|
||||||
@import "screen-reader";
|
@import 'screen-reader';
|
||||||
|
|||||||
21
_sass/font-awesome/regular.scss
vendored
21
_sass/font-awesome/regular.scss
vendored
@ -1,25 +1,24 @@
|
|||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||||
* Copyright 2024 Fonticons, Inc.
|
* Copyright 2024 Fonticons, Inc.
|
||||||
*/
|
*/
|
||||||
@import "functions";
|
@import 'functions';
|
||||||
@import "variables";
|
@import 'variables';
|
||||||
|
|
||||||
:root,
|
:root, :host {
|
||||||
:host {
|
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
||||||
--#{$fa-css-prefix}-style-family-classic: "#{ $fa-style-family }";
|
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family }';
|
||||||
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 "#{ $fa-style-family }";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Font Awesome 6 Free";
|
font-family: 'Font Awesome 6 Free';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-display: $fa-font-display;
|
font-display: $fa-font-display;
|
||||||
src:
|
src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
|
||||||
url("#{$fa-font-path}/fa-regular-400.woff2") format("woff2"),
|
url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
|
||||||
url("#{$fa-font-path}/fa-regular-400.ttf") format("truetype");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.far,
|
.far,
|
||||||
|
|||||||
21
_sass/font-awesome/solid.scss
vendored
21
_sass/font-awesome/solid.scss
vendored
@ -1,25 +1,24 @@
|
|||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||||
* Copyright 2024 Fonticons, Inc.
|
* Copyright 2024 Fonticons, Inc.
|
||||||
*/
|
*/
|
||||||
@import "functions";
|
@import 'functions';
|
||||||
@import "variables";
|
@import 'variables';
|
||||||
|
|
||||||
:root,
|
:root, :host {
|
||||||
:host {
|
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
||||||
--#{$fa-css-prefix}-style-family-classic: "#{ $fa-style-family }";
|
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family }';
|
||||||
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 "#{ $fa-style-family }";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Font Awesome 6 Free";
|
font-family: 'Font Awesome 6 Free';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
font-display: $fa-font-display;
|
font-display: $fa-font-display;
|
||||||
src:
|
src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
||||||
url("#{$fa-font-path}/fa-solid-900.woff2") format("woff2"),
|
url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
|
||||||
url("#{$fa-font-path}/fa-solid-900.ttf") format("truetype");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.fas,
|
.fas,
|
||||||
|
|||||||
8
_sass/font-awesome/v4-shims.scss
vendored
8
_sass/font-awesome/v4-shims.scss
vendored
@ -1,11 +1,11 @@
|
|||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||||
* Copyright 2024 Fonticons, Inc.
|
* Copyright 2024 Fonticons, Inc.
|
||||||
*/
|
*/
|
||||||
// V4 shims compile (Web Fonts-based)
|
// V4 shims compile (Web Fonts-based)
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@import "functions";
|
@import 'functions';
|
||||||
@import "variables";
|
@import 'variables';
|
||||||
@import "shims";
|
@import 'shims';
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user