Compare commits

..

2 commits

Author SHA1 Message Date
Sofía Aritz 7422b4d113 Remove dependency on Google Fonts
Thanks to the deployment of a Google Fonts binary mirror to my own CDN we can stop using Google Fonts.

Closes #3.
2023-04-13 00:19:45 +02:00
Sofía Aritz dbb43e25ba Update canary 2023-04-13 00:05:24 +02:00
3 changed files with 34 additions and 7 deletions

View file

@ -5,10 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico">
<title>{% if title %} {{ title }} - {% endif %}sofi web</title>
<link rel="stylesheet" href="/css/fonts.css" type="text/css">
<link rel="stylesheet" href="/css/app.css" type="text/css">
<link rel="stylesheet" href="/css/navbar.css" type="text/css">
<link rel="stylesheet" href="/css/comments.css" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300&family=Rubik:ital,wght@0,400;0,500;1,400;1,500&display=swap" type="text/css">
{% if load_comments_script %}
<script src="/scripts/dompurify.js"></script>
{% endif %}

View file

@ -4,7 +4,7 @@ Hash: SHA512
Este es un documento en el que yo, Sofía Aritz, confirmo mi identidad.
Actualizaré este documento al menos una vez al mes.
Este mensaje se actualizó por última vez el día:
Mon Mar 13 2023 21:09:48 UTC (13/03/2023)
Wed Apr 12 2023 22:02:26 UTC (12/04/2023)
Puedo afirmar abiertamente que en este momento ninguna información que poseo se encuentra bajo el control de ninguna
autoridad de carácter gubernamental o cualquier otra tercera persona.
@ -40,14 +40,14 @@ Puedes obtener una copia de este mensaje en los siguientes lugares:
* <https://git.sofiaritz.com/sofia/website/src/branch/main/public/canary.txt>
Actualizaré este mensaje antes del día:
Mon Apr 10 2023 21:09:48 UTC (10/04/2023)
Wed May 10 2023 22:02:26 UTC (10/05/2023)
Si esto no ocurre o este mensaje desaparece, se puede asumir que me ha ocurrido algo.
Toma una galleta, por haber leído hasta el final.
-----BEGIN PGP SIGNATURE-----
iHUEARYKAB0WIQRLsWp0XeHHdlzzh4iQtRFuNUKyjwUCZA+RRwAKCRCQtRFuNUKy
j8oCAQCHOc8irX8bVEwwC+NKCnLftuTfrKdhOJAeW7jIP7ABYgEAlOp/2Xa3cphJ
XyqTR7R0Lfe587H+xKI3VBIctvW9gAw=
=aoDH
iHUEARYKAB0WIQRLsWp0XeHHdlzzh4iQtRFuNUKyjwUCZDcqsQAKCRCQtRFuNUKy
j0XIAP96gxGsc+RkuojxiMydIqqwk1tXa52XekAdbEPnLisQHgD+NX6OYiCHHcXh
85mcGor3rftQJh48kDza3bWRr43sgQU=
=Nzel
-----END PGP SIGNATURE-----

27
static/css/fonts.css Normal file
View file

@ -0,0 +1,27 @@
@font-face {
font-family: "JetBrains Mono";
src: url("https://cdn.sofiaritz.com/fonts/ofl/jetbrainsmono/JetBrainsMono-Italic[wght].ttf");
font-style: italic;
font-weight: 300;
}
@font-face {
font-family: "JetBrains Mono";
src: url("https://cdn.sofiaritz.com/fonts/ofl/jetbrainsmono/JetBrainsMono[wght].ttf");
font-style: normal;
font-weight: 300;
}
@font-face {
font-family: "Rubik";
src: url("https://cdn.sofiaritz.com/fonts/ofl/rubik/Rubik[wght].ttf");
font-style: normal;
font-weight: 400 500;
}
@font-face {
font-family: "Rubik";
src: url("https://cdn.sofiaritz.com/fonts/ofl/rubik/Rubik-Italic[wght].ttf");
font-style: italic;
font-weight: 400 500;
}