-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from piazzai/develop
Revamp website and make many small fixes
- Loading branch information
Showing
86 changed files
with
165 additions
and
21,179 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
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{% assign year = site.time | date: '%Y' %} | ||
{% if site.copyright and site.copyright != '' %} | ||
<footer class="container mb-4"> | ||
<small class="text-muted">© {{ year }} {{ site.copyright }}. All rights reserved.</small> | ||
<small class="text-muted">©{{ year }} {{ site.copyright }}. All rights reserved.</small> | ||
</footer> | ||
{% endif %} |
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
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
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
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
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,46 +1,27 @@ | ||
$weights: ( | ||
"Light": 300, | ||
"Medium": 500, | ||
"Bold": 700, | ||
); | ||
|
||
$styles: ( | ||
normal: "", | ||
italic: "Italic", | ||
); | ||
|
||
@each $style, $style-value in $styles { | ||
@font-face { | ||
font-family: "Zilla Slab"; | ||
font-display: swap; | ||
font-style: #{$style}; | ||
font-weight: 300; | ||
src: url("../webfonts/ZillaSlab-Light#{$style-value}.woff2") format("woff2"); | ||
} | ||
@font-face { | ||
font-family: InterVariable; | ||
font-style: normal; | ||
font-weight: 100 900; | ||
src: url("../fonts/InterVariable.woff2?v=4.0") format("woff2"); | ||
} | ||
|
||
@each $weight, $weight-value in $weights { | ||
@font-face { | ||
font-family: "Inter"; | ||
font-display: swap; | ||
font-style: #{$style}; | ||
font-weight: #{$weight-value}; | ||
src: url("../webfonts/Inter-#{$weight}#{$style-value}.woff2") format("woff2"); | ||
} | ||
} | ||
@font-face { | ||
font-family: InterVariable; | ||
font-style: italic; | ||
font-weight: 100 900; | ||
src: url("../fonts/InterVariable-Italic.woff2?v=4.0") format("woff2"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Inter"; | ||
font-display: swap; | ||
font-family: "Zilla Slab"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url("../webfonts/Inter-Regular.woff2") format("woff2"); | ||
font-weight: 300; | ||
src: url("../fonts/ZillaSlab-Light.woff2") format("woff2"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Inter"; | ||
font-display: swap; | ||
font-family: "Zilla Slab"; | ||
font-style: italic; | ||
font-weight: 400; | ||
src: url("../webfonts/Inter-Italic.woff2") format("woff2"); | ||
} | ||
font-weight: 300; | ||
src: url("../fonts/ZillaSlab-LightItalic.woff2") format("woff2"); | ||
} |
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
Oops, something went wrong.