mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 14:59:45 +00:00
updated fonts and css (#296)
* updated fonts and css * updated assets * set fa-font-path to previous value
This commit is contained in:
parent
36496df615
commit
73ce55996e
30 changed files with 10233 additions and 3967 deletions
6
assets/vendor/fontawesome-free/LICENSE.txt
generated
vendored
6
assets/vendor/fontawesome-free/LICENSE.txt
generated
vendored
|
@ -3,14 +3,14 @@ Font Awesome Free License
|
||||||
|
|
||||||
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
||||||
commercial projects, open source projects, or really almost whatever you want.
|
commercial projects, open source projects, or really almost whatever you want.
|
||||||
Full Font Awesome Free license: https://fontawesome.com/license.
|
Full Font Awesome Free license: https://fontawesome.com/license/free.
|
||||||
|
|
||||||
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
||||||
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
|
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
|
||||||
packaged as SVG and JS file types.
|
packaged as SVG and JS file types.
|
||||||
|
|
||||||
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
|
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
|
||||||
In the Font Awesome Free download, the SIL OLF license applies to all icons
|
In the Font Awesome Free download, the SIL OFL license applies to all icons
|
||||||
packaged as web and desktop font files.
|
packaged as web and desktop font files.
|
||||||
|
|
||||||
# Code: MIT License (https://opensource.org/licenses/MIT)
|
# Code: MIT License (https://opensource.org/licenses/MIT)
|
||||||
|
@ -18,7 +18,7 @@ In the Font Awesome Free download, the MIT license applies to all non-font and
|
||||||
non-icon files.
|
non-icon files.
|
||||||
|
|
||||||
# Attribution
|
# Attribution
|
||||||
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font
|
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
|
||||||
Awesome Free files already contain embedded comments with sufficient
|
Awesome Free files already contain embedded comments with sufficient
|
||||||
attribution, so you shouldn't need to do anything additional when using these
|
attribution, so you shouldn't need to do anything additional when using these
|
||||||
files normally.
|
files normally.
|
||||||
|
|
5
assets/vendor/fontawesome-free/scss/_core.scss
generated
vendored
5
assets/vendor/fontawesome-free/scss/_core.scss
generated
vendored
|
@ -5,6 +5,7 @@
|
||||||
.fas,
|
.fas,
|
||||||
.far,
|
.far,
|
||||||
.fal,
|
.fal,
|
||||||
|
.fad,
|
||||||
.fab {
|
.fab {
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
@ -14,3 +15,7 @@
|
||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
%fa-icon {
|
||||||
|
@include fa-icon;
|
||||||
|
}
|
||||||
|
|
2
assets/vendor/fontawesome-free/scss/_fixed-width.scss
generated
vendored
2
assets/vendor/fontawesome-free/scss/_fixed-width.scss
generated
vendored
|
@ -2,5 +2,5 @@
|
||||||
// -------------------------
|
// -------------------------
|
||||||
.#{$fa-css-prefix}-fw {
|
.#{$fa-css-prefix}-fw {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: (20em / 16);
|
width: $fa-fw-width;
|
||||||
}
|
}
|
||||||
|
|
318
assets/vendor/fontawesome-free/scss/_icons.scss
generated
vendored
318
assets/vendor/fontawesome-free/scss/_icons.scss
generated
vendored
File diff suppressed because it is too large
Load diff
1
assets/vendor/fontawesome-free/scss/_mixins.scss
generated
vendored
1
assets/vendor/fontawesome-free/scss/_mixins.scss
generated
vendored
|
@ -9,7 +9,6 @@
|
||||||
font-variant: normal;
|
font-variant: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
vertical-align: -.125em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin fa-icon-rotate($degrees, $rotation) {
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
||||||
|
|
5
assets/vendor/fontawesome-free/scss/_rotated-flipped.scss
generated
vendored
5
assets/vendor/fontawesome-free/scss/_rotated-flipped.scss
generated
vendored
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
||||||
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
||||||
.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
|
.#{$fa-css-prefix}-flip-both, .#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
|
||||||
|
|
||||||
// Hook for IE8-9
|
// Hook for IE8-9
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
@ -17,7 +17,8 @@
|
||||||
.#{$fa-css-prefix}-rotate-180,
|
.#{$fa-css-prefix}-rotate-180,
|
||||||
.#{$fa-css-prefix}-rotate-270,
|
.#{$fa-css-prefix}-rotate-270,
|
||||||
.#{$fa-css-prefix}-flip-horizontal,
|
.#{$fa-css-prefix}-flip-horizontal,
|
||||||
.#{$fa-css-prefix}-flip-vertical {
|
.#{$fa-css-prefix}-flip-vertical,
|
||||||
|
.#{$fa-css-prefix}-flip-both {
|
||||||
filter: none;
|
filter: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
26
assets/vendor/fontawesome-free/scss/_shims.scss
generated
vendored
26
assets/vendor/fontawesome-free/scss/_shims.scss
generated
vendored
|
@ -124,6 +124,10 @@
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand-alt); }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress-alt); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
@ -626,15 +630,15 @@
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-up); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-down-alt); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-up); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-down-alt); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-up); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-down-alt); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
|
@ -954,14 +958,17 @@
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); }
|
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
|
||||||
|
font-family: 'Font Awesome 5 Brands';
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
@ -1667,10 +1674,6 @@
|
||||||
}
|
}
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting {
|
|
||||||
font-family: 'Font Awesome 5 Free';
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); }
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); }
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
|
||||||
|
@ -2059,8 +2062,5 @@
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); }
|
||||||
font-family: 'Font Awesome 5 Brands';
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
2
assets/vendor/fontawesome-free/scss/_stacked.scss
generated
vendored
2
assets/vendor/fontawesome-free/scss/_stacked.scss
generated
vendored
|
@ -7,7 +7,7 @@
|
||||||
line-height: 2em;
|
line-height: 2em;
|
||||||
position: relative;
|
position: relative;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 2em;
|
width: ($fa-fw-width*2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.#{$fa-css-prefix}-stack-1x,
|
.#{$fa-css-prefix}-stack-1x,
|
||||||
|
|
324
assets/vendor/fontawesome-free/scss/_variables.scss
generated
vendored
324
assets/vendor/fontawesome-free/scss/_variables.scss
generated
vendored
File diff suppressed because it is too large
Load diff
8
assets/vendor/fontawesome-free/scss/brands.scss
generated
vendored
8
assets/vendor/fontawesome-free/scss/brands.scss
generated
vendored
|
@ -1,13 +1,14 @@
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (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)
|
||||||
*/
|
*/
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
|
font-display: $fa-font-display;
|
||||||
src: url('#{$fa-font-path}/fa-brands-400.eot');
|
src: url('#{$fa-font-path}/fa-brands-400.eot');
|
||||||
src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'),
|
src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'),
|
||||||
url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
|
url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
|
||||||
|
@ -18,4 +19,5 @@
|
||||||
|
|
||||||
.fab {
|
.fab {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
4
assets/vendor/fontawesome-free/scss/fontawesome.scss
generated
vendored
4
assets/vendor/fontawesome-free/scss/fontawesome.scss
generated
vendored
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (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)
|
||||||
*/
|
*/
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
@import 'mixins';
|
@import 'mixins';
|
||||||
|
|
5
assets/vendor/fontawesome-free/scss/regular.scss
generated
vendored
5
assets/vendor/fontawesome-free/scss/regular.scss
generated
vendored
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (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)
|
||||||
*/
|
*/
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
font-display: $fa-font-display;
|
||||||
src: url('#{$fa-font-path}/fa-regular-400.eot');
|
src: url('#{$fa-font-path}/fa-regular-400.eot');
|
||||||
src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'),
|
src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'),
|
||||||
url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
|
url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
|
||||||
|
|
5
assets/vendor/fontawesome-free/scss/solid.scss
generated
vendored
5
assets/vendor/fontawesome-free/scss/solid.scss
generated
vendored
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (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)
|
||||||
*/
|
*/
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
|
font-display: $fa-font-display;
|
||||||
src: url('#{$fa-font-path}/fa-solid-900.eot');
|
src: url('#{$fa-font-path}/fa-solid-900.eot');
|
||||||
src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'),
|
src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'),
|
||||||
url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
||||||
|
|
4
assets/vendor/fontawesome-free/scss/v4-shims.scss
generated
vendored
4
assets/vendor/fontawesome-free/scss/v4-shims.scss
generated
vendored
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome Free 5.2.0 by @fontawesome - https://fontawesome.com
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (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)
|
||||||
*/
|
*/
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
@import 'shims';
|
@import 'shims';
|
||||||
|
|
6
static/css/font-awesome.min.css
vendored
6
static/css/font-awesome.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
static/fonts/fontawesome-free/webfonts/fa-brands-400.eot
generated
BIN
static/fonts/fontawesome-free/webfonts/fa-brands-400.eot
generated
Binary file not shown.
4857
static/fonts/fontawesome-free/webfonts/fa-brands-400.svg
generated
4857
static/fonts/fontawesome-free/webfonts/fa-brands-400.svg
generated
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 614 KiB After Width: | Height: | Size: 730 KiB |
BIN
static/fonts/fontawesome-free/webfonts/fa-brands-400.ttf
generated
BIN
static/fonts/fontawesome-free/webfonts/fa-brands-400.ttf
generated
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1260
static/fonts/fontawesome-free/webfonts/fa-regular-400.svg
generated
1260
static/fonts/fontawesome-free/webfonts/fa-regular-400.svg
generated
File diff suppressed because it is too large
Load diff
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 141 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.eot
generated
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.eot
generated
Binary file not shown.
7338
static/fonts/fontawesome-free/webfonts/fa-solid-900.svg
generated
7338
static/fonts/fontawesome-free/webfonts/fa-solid-900.svg
generated
File diff suppressed because it is too large
Load diff
Before Width: | Height: | Size: 610 KiB After Width: | Height: | Size: 898 KiB |
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.ttf
generated
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.ttf
generated
Binary file not shown.
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.woff
generated
BIN
static/fonts/fontawesome-free/webfonts/fa-solid-900.woff
generated
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue