added basic css for homepage

This commit is contained in:
Faraphel 2024-01-05 10:40:12 +01:00
parent c603a7b580
commit 35e44bcd7c
2 changed files with 17 additions and 2 deletions

View file

@ -0,0 +1,9 @@
.title {
font-size: 500%;
text-align: center;
}
.text {
width: 60%;
margin: auto;
}

View file

@ -1,11 +1,17 @@
{% extends "Palto/base/base-features.html" %} {% extends "Palto/base/base-features.html" %}
{% load static %}
{% block style %}
{{ block.super }}
<link rel="stylesheet" href="{% static "Palto/css/homepage.css" %}" />
{% endblock %}
{% block body %} {% block body %}
{{ block.super }} {{ block.super }}
<h1>Palto</h1> <h1 class="title">Palto</h1>
<p> <p class="text">
Palto est un outil de gestion des présences d'élèves dans vos établissements scolaires. Palto est un outil de gestion des présences d'élèves dans vos établissements scolaires.
</p> </p>
{% endblock %} {% endblock %}