Improvements to data structure, added webfont, added a subpage for FOSS licenses, reworked some text.

+ Added Hack webfont to the website.
+ Renamed resources folder to assets, reworked general data structure of static data.
+ Added a subpage for FOSS licenses used
+ Improve various texts
+ Headlines now all follow internal conventions (all lowercase)
+ Added 2 more websites to useful stuff
This commit is contained in:
Lucia Zehentner 2024-07-14 00:48:14 +02:00
parent d82af2bb0d
commit aae2b9f7a0
37 changed files with 209 additions and 28 deletions

View file

@ -0,0 +1,45 @@
/*
* Hack by Source Foundry Authors - https://sourcefoundry.org/hack/
* License: MIT
*/
@font-face {
font-family: 'Hack';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Hack'),
url('woff2/Hack Regular.woff2') format('woff2'),
url('woff/Hack Regular.woff') format('woff');
}
@font-face {
font-family: 'Hack';
font-style: italic;
font-weight: 400;
font-display: swap;
src: local('Hack'),
url('woff2/Hack Italic.woff2') format('woff2'),
url('woff/Hack Italic.woff') format('woff');
}
@font-face {
font-family: 'Hack';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Hack'),
url('woff2/Hack Bold.woff2') format('woff2'),
url('woff/Hack Bold.woff') format('woff');
}
@font-face {
font-family: 'Hack';
font-style: italic;
font-weight: 700;
font-display: swap;
src: local('Hack'),
url('woff2/Hack Bold Italic.woff2') format('woff2'),
url('woff/Hack Bold Italic.woff') format('woff');
}