-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update site * fix template name * fixing twitter shortcodes
- Loading branch information
Showing
162 changed files
with
6,402 additions
and
15,775 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1 @@ | ||
/* hanken-grotesk-regular - latin */ | ||
@font-face { | ||
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ | ||
font-family: 'Hanken Grotesk'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('fonts/hanken-grotesk-v7-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ | ||
url('fonts/hanken-grotesk-v7-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
} | ||
/* hanken-grotesk-italic - latin */ | ||
@font-face { | ||
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ | ||
font-family: 'Hanken Grotesk'; | ||
font-style: italic; | ||
font-weight: 400; | ||
src: url('fonts/hanken-grotesk-v7-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ | ||
url('fonts/hanken-grotesk-v7-latin-italic.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
} | ||
/* hanken-grotesk-600 - latin */ | ||
@font-face { | ||
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ | ||
font-family: 'Hanken Grotesk'; | ||
font-style: bold; | ||
font-weight: 600; | ||
src: url('fonts/hanken-grotesk-v7-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ | ||
url('fonts/hanken-grotesk-v7-latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
} | ||
|
||
:root { | ||
--decorator-outer-offset-top: .3rem; | ||
--decorator-outer-offset-left: -.475rem; | ||
--decorator-border-width: 1px; | ||
--decorator-outer-dim: 12px; | ||
--decorator-border: 4px solid #F3E0E1; | ||
} | ||
|
||
.decorator { | ||
flex:0 0 0; | ||
position:relative; | ||
width:2pt; | ||
min-height:100%; | ||
border-left:var(--decorator-border); | ||
} | ||
.decorator::before { | ||
position:absolute; | ||
top:var(--decorator-outer-offset-top); | ||
left:var(--decorator-outer-offset-left); | ||
content:' '; | ||
display:block; | ||
width:var(--decorator-outer-dim); | ||
height:var(--decorator-outer-dim); | ||
border-radius:calc(var(--decorator-outer-dim) / 2); | ||
background-color:#e8987f | ||
} | ||
.decorator::after { | ||
position:absolute; | ||
top:calc(var(--decorator-outer-offset-top) + var(--decorator-border-width)); | ||
left:calc(var(--decorator-outer-offset-left) + var(--decorator-border-width)); | ||
content:' '; | ||
display:block; | ||
width:calc(var(--decorator-outer-dim) - (var(--decorator-border-width) * 2)); | ||
height:calc(var(--decorator-outer-dim) - (var(--decorator-border-width) * 2)); | ||
border-radius:calc((var(--decorator-outer-dim) - (var(--decorator-border-width) * 2)) / 2); | ||
background-color:#e8987f | ||
} | ||
.blocks:last-child .decorator { | ||
margin-bottom:0.25in | ||
} | ||
// Override this file to add your own SCSS styling. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
// animating icons | ||
// -------------------------- | ||
|
||
.#{$fa-css-prefix}-beat { | ||
animation-name: #{$fa-css-prefix}-beat; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out); | ||
} | ||
|
||
.#{$fa-css-prefix}-bounce { | ||
animation-name: #{$fa-css-prefix}-bounce; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1)); | ||
} | ||
|
||
.#{$fa-css-prefix}-fade { | ||
animation-name: #{$fa-css-prefix}-fade; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1)); | ||
} | ||
|
||
.#{$fa-css-prefix}-beat-fade { | ||
animation-name: #{$fa-css-prefix}-beat-fade; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1)); | ||
} | ||
|
||
.#{$fa-css-prefix}-flip { | ||
animation-name: #{$fa-css-prefix}-flip; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out); | ||
} | ||
|
||
.#{$fa-css-prefix}-shake { | ||
animation-name: #{$fa-css-prefix}-shake; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear); | ||
} | ||
|
||
.#{$fa-css-prefix}-spin { | ||
animation-name: #{$fa-css-prefix}-spin; | ||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s); | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 2s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear); | ||
} | ||
|
||
.#{$fa-css-prefix}-spin-reverse { | ||
--#{$fa-css-prefix}-animation-direction: reverse; | ||
} | ||
|
||
.#{$fa-css-prefix}-pulse, | ||
.#{$fa-css-prefix}-spin-pulse { | ||
animation-name: #{$fa-css-prefix}-spin; | ||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal); | ||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s); | ||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite); | ||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, steps(8)); | ||
} | ||
|
||
// if agent or operating system prefers reduced motion, disable animations | ||
// see: https://www.smashingmagazine.com/2020/09/design-reduced-motion-sensitivities/ | ||
// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion | ||
@media (prefers-reduced-motion: reduce) { | ||
.#{$fa-css-prefix}-beat, | ||
.#{$fa-css-prefix}-bounce, | ||
.#{$fa-css-prefix}-fade, | ||
.#{$fa-css-prefix}-beat-fade, | ||
.#{$fa-css-prefix}-flip, | ||
.#{$fa-css-prefix}-pulse, | ||
.#{$fa-css-prefix}-shake, | ||
.#{$fa-css-prefix}-spin, | ||
.#{$fa-css-prefix}-spin-pulse { | ||
animation-delay: -1ms; | ||
animation-duration: 1ms; | ||
animation-iteration-count: 1; | ||
transition-delay: 0s; | ||
transition-duration: 0s; | ||
} | ||
} | ||
|
||
@keyframes #{$fa-css-prefix}-beat { | ||
0%, 90% { transform: scale(1); } | ||
45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); } | ||
} | ||
|
||
@keyframes #{$fa-css-prefix}-bounce { | ||
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)); } | ||
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 { | ||
50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); } | ||
} | ||
|
||
@keyframes #{$fa-css-prefix}-beat-fade { | ||
0%, 100% { | ||
opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4); | ||
transform: scale(1); | ||
} | ||
50% { | ||
opacity: 1; | ||
transform: scale(var(--#{$fa-css-prefix}-beat-fade-scale, 1.125)); | ||
} | ||
} | ||
|
||
@keyframes #{$fa-css-prefix}-flip { | ||
50% { | ||
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)); | ||
} | ||
} | ||
|
||
@keyframes #{$fa-css-prefix}-shake { | ||
0% { transform: rotate(-15deg); } | ||
4% { transform: rotate(15deg); } | ||
8%, 24% { transform: rotate(-18deg); } | ||
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 { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} |
20 changes: 20 additions & 0 deletions
20
assets/fontawesome-free-6.5.2-web/scss/_bordered-pulled.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// bordered + pulled icons | ||
// ------------------------- | ||
|
||
.#{$fa-css-prefix}-border { | ||
border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color}); | ||
border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius}); | ||
border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style}); | ||
border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width}); | ||
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding}); | ||
} | ||
|
||
.#{$fa-css-prefix}-pull-left { | ||
float: left; | ||
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin}); | ||
} | ||
|
||
.#{$fa-css-prefix}-pull-right { | ||
float: right; | ||
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// base icon class definition | ||
// ------------------------- | ||
|
||
.#{$fa-css-prefix} { | ||
font-family: var(--#{$fa-css-prefix}-style-family, '#{$fa-style-family}'); | ||
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, | ||
.far, | ||
.#{$fa-css-prefix}-regular, | ||
.fab, | ||
.#{$fa-css-prefix}-brands { | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
display: var(--#{$fa-css-prefix}-display, #{$fa-display}); | ||
font-style: normal; | ||
font-variant: normal; | ||
line-height: 1; | ||
text-rendering: auto; | ||
} | ||
|
||
.fas, | ||
.#{$fa-css-prefix}-classic, | ||
.#{$fa-css-prefix}-solid, | ||
.far, | ||
.#{$fa-css-prefix}-regular { | ||
font-family: 'Font Awesome 6 Free'; | ||
} | ||
|
||
.fab, | ||
.#{$fa-css-prefix}-brands { | ||
font-family: 'Font Awesome 6 Brands'; | ||
} | ||
|
||
|
||
%fa-icon { | ||
@include fa-icon; | ||
} |
3 changes: 2 additions & 1 deletion
3
...me-free-5.15.1-web/scss/_fixed-width.scss → ...ome-free-6.5.2-web/scss/_fixed-width.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// functions | ||
// -------------------------- | ||
|
||
// fa-content: convenience function used to set content property | ||
@function fa-content($fa-var) { | ||
@return unquote("\"#{ $fa-var }\""); | ||
} | ||
|
||
// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap | ||
// | ||
// Licensed under: The MIT License (MIT) | ||
// | ||
// Copyright (c) 2011-2021 Twitter, Inc. | ||
// Copyright (c) 2011-2021 The Bootstrap Authors | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
@function fa-divide($dividend, $divisor, $precision: 10) { | ||
$sign: if($dividend > 0 and $divisor > 0, 1, -1); | ||
$dividend: abs($dividend); | ||
$divisor: abs($divisor); | ||
$quotient: 0; | ||
$remainder: $dividend; | ||
@if $dividend == 0 { | ||
@return 0; | ||
} | ||
@if $divisor == 0 { | ||
@error "Cannot divide by 0"; | ||
} | ||
@if $divisor == 1 { | ||
@return $dividend; | ||
} | ||
@while $remainder >= $divisor { | ||
$quotient: $quotient + 1; | ||
$remainder: $remainder - $divisor; | ||
} | ||
@if $remainder > 0 and $precision > 0 { | ||
$remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * .1; | ||
} | ||
@return ($quotient + $remainder) * $sign; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// specific icon class definition | ||
// ------------------------- | ||
|
||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen | ||
readers do not read off random characters that represent icons */ | ||
|
||
@each $name, $icon in $fa-icons { | ||
.#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); } | ||
} | ||
|
8 changes: 4 additions & 4 deletions
8
...ntawesome-free-5.15.1-web/scss/_list.scss → ...ontawesome-free-6.5.2-web/scss/_list.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
// List Icons | ||
// icons in a list | ||
// ------------------------- | ||
|
||
.#{$fa-css-prefix}-ul { | ||
list-style-type: none; | ||
margin-left: $fa-li-width * 5/4; | ||
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin}); | ||
padding-left: 0; | ||
|
||
> li { position: relative; } | ||
} | ||
|
||
.#{$fa-css-prefix}-li { | ||
left: -$fa-li-width; | ||
left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1); | ||
position: absolute; | ||
text-align: center; | ||
width: $fa-li-width; | ||
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}); | ||
line-height: inherit; | ||
} |
Oops, something went wrong.