From 35e44bcd7c0f1f84b1cb38a6c779c1ac83988f8c Mon Sep 17 00:00:00 2001 From: Faraphel Date: Fri, 5 Jan 2024 10:40:12 +0100 Subject: [PATCH] added basic css for homepage --- Palto/Palto/static/Palto/css/homepage.css | 9 +++++++++ Palto/Palto/templates/Palto/homepage.html | 10 ++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 Palto/Palto/static/Palto/css/homepage.css diff --git a/Palto/Palto/static/Palto/css/homepage.css b/Palto/Palto/static/Palto/css/homepage.css new file mode 100644 index 0000000..153c5d5 --- /dev/null +++ b/Palto/Palto/static/Palto/css/homepage.css @@ -0,0 +1,9 @@ +.title { + font-size: 500%; + text-align: center; +} + +.text { + width: 60%; + margin: auto; +} \ No newline at end of file diff --git a/Palto/Palto/templates/Palto/homepage.html b/Palto/Palto/templates/Palto/homepage.html index 1511b54..6fedd59 100644 --- a/Palto/Palto/templates/Palto/homepage.html +++ b/Palto/Palto/templates/Palto/homepage.html @@ -1,11 +1,17 @@ {% extends "Palto/base/base-features.html" %} +{% load static %} + +{% block style %} + {{ block.super }} + +{% endblock %} {% block body %} {{ block.super }} -

Palto

+

Palto

-

+

Palto est un outil de gestion des présences d'élèves dans vos établissements scolaires.

{% endblock %}