From c836080a7326daa63ea19a44ac13a4d8cf1cbac3 Mon Sep 17 00:00:00 2001 From: Guillaume <67098259+Gu1llaum-3@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:18:11 +0100 Subject: [PATCH] Update style.css MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajout CSS pour encadré procédure --- static/css/style.css | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 03368ad..0ca2a7e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,4 +1,4 @@ -body { + body { margin: 0; font-family: Arial, Helvetica, sans-serif; background-color: #131313; @@ -12,6 +12,23 @@ body { box-sizing: border-box; } + .bordered { + border: 1px solid rgb(24,216,96); + border-radius: 5px; + padding: 20px; + margin-bottom: 20px; + } + + li { + font-weight: bold; + } + + a { + text-decoration-color: rgb(24,216,96); + color: rgb(24,216,96); + } + + .form-group { display: flex; flex-direction: column; @@ -82,4 +99,4 @@ body { .container { padding: 10px; } - } \ No newline at end of file + }