#7: Remove Google font reference, correct name of body font

This commit is contained in:
imohkay 2021-10-14 12:38:33 +05:30
parent 269fdc713f
commit 6eebf2f555
2 changed files with 1 additions and 2 deletions

View file

@ -21,7 +21,7 @@ body {
animation: background_animation 60s ease-in-out infinite; animation: background_animation 60s ease-in-out infinite;
background-size: 400% 100%; background-size: 400% 100%;
color: #ddd; color: #ddd;
font-family: "noto_sansregular", sans-serif; font-family: "noto_sans", sans-serif;
font-size: 20px; font-size: 20px;
overflow-x: hidden; overflow-x: hidden;
} }

1
app/templates/base.html Normal file → Executable file
View file

@ -8,7 +8,6 @@
Phantas.ma/polis - Looking Back to the Future Phantas.ma/polis - Looking Back to the Future
{% endblock title %} {% endblock title %}
</title> </title>
<link href='https://fonts.googleapis.com/css?family=Noto Sans' rel='stylesheet'>
<link href="{% sass_src 'css/style.scss' %}" rel="stylesheet" type="text/css"> <link href="{% sass_src 'css/style.scss' %}" rel="stylesheet" type="text/css">
{% block head %}{% endblock head %} {% block head %}{% endblock head %}
</head> </head>