first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
+117
View File
@@ -0,0 +1,117 @@
/* ------------------------------------------------------------------------------
*
* # Font Awesome icons base
*
* Base styles for Font Awesome. Include font import, class definition and other options
*
* ---------------------------------------------------------------------------- */
// Font definition
// -------------------------
// Solid icons
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
src: url('#{$fa-font-path}/fa-solid-900.eot');
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.woff') format('woff'),
url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'),
url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg');
}
// Normal icons
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
src: url('#{$fa-font-path}/fa-regular-400.eot');
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.woff') format('woff'),
url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'),
url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg');
}
// Brand icons
@font-face {
font-family: 'Font Awesome 5 Brands';
font-style: normal;
font-weight: normal;
src: url('#{$fa-font-path}/fa-brands-400.eot');
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.woff') format('woff'),
url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'),
url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg');
}
// Base Class Definition
// -------------------------
// Base
.#{$fa-css-prefix},
.fas,
.far,
.fal,
.fab {
display: inline-block;
font-size: $icon-font-size;
font-style: normal;
font-variant: normal;
min-width: 1em;
vertical-align: middle;
position: relative;
top: -1px;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
// Solid icons
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
}
// Regular icons
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400;
}
// Brand icons
.fab {
font-family: 'Font Awesome 5 Brands';
}
// Icon Sizes
// -------------------------
// 4 additional sizes: .fa-2x -> .fa-5x
@for $i from 1 through 5 {
.#{$fa-css-prefix}-#{$i}x {
font-size: $i * $icon-font-size;
}
}
// Rotated & Flipped Icons
// -------------------------
// Rotation
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
// Flip
.#{$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-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,19 @@
/* ------------------------------------------------------------------------------
*
* # Font Awesome mixins
*
* Custom mixins for Font Awesome icon set only.
*
* ---------------------------------------------------------------------------- */
// Rotate icon
@mixin fa-icon-rotate($degrees, $rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
transform: rotate($degrees);
}
// Flip icon
@mixin fa-icon-flip($horiz, $vert, $rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
transform: scale($horiz, $vert);
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,17 @@
/* ------------------------------------------------------------------------------
*
* # Font Awesome icons base
*
* Main file to compile. Do not change file order. Default output file: styles.min.css
*
* ---------------------------------------------------------------------------- */
// Import custom template config
@import "../../../../config";
// Import icon set
@import '../variables';
@import '../mixins';
@import '../base';
@import '../icons';