evolution du style et tentative pour integrer le css

This commit is contained in:
2026-03-09 05:14:40 +01:00
parent 2a92be3042
commit 7beefc4376
3 changed files with 4 additions and 3 deletions

View File

@@ -40,7 +40,8 @@ footer{
text-decoration: none; text-decoration: none;
} }
#main-content{ .main-content{
border-style: solid;
border-width: 2px; border-width: 2px;
border-color: #cc0000; border-color: #cc0000;
} }

View File

@@ -15,7 +15,7 @@
<li class="nav-element"><a class="nav-link" href="{{ get_url(path='@/cv/CV.md')}}">CV</a></li> <li class="nav-element"><a class="nav-link" href="{{ get_url(path='@/cv/CV.md')}}">CV</a></li>
</ul> </ul>
</nav> </nav>
<section id="main-content"> <section>
{% block content %} {% endblock content %} {% block content %} {% endblock content %}
<section> <section>
</body> </body>

View File

@@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<div> <div class="main-content">
{{ section.content | safe }} {{ section.content | safe }}
</div> </div>
{% endblock content %} {% endblock content %}