Lucia Zehentner
aae2b9f7a0
+ 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
45 lines
1.1 KiB
CSS
45 lines
1.1 KiB
CSS
/*
|
|
* 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');
|
|
}
|
|
|