added basic css for homepage
This commit is contained in:
parent
c603a7b580
commit
35e44bcd7c
2 changed files with 17 additions and 2 deletions
9
Palto/Palto/static/Palto/css/homepage.css
Normal file
9
Palto/Palto/static/Palto/css/homepage.css
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.title {
|
||||||
|
font-size: 500%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
width: 60%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
|
@ -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 %}
|
||||||
|
|
Loading…
Reference in a new issue