From ede72d38ccb920ddf92104cf899bf1e461978a4e Mon Sep 17 00:00:00 2001 From: Oxbian Date: Sun, 2 Apr 2023 22:42:10 +0200 Subject: =?UTF-8?q?Init=20commit\nAjout=20du=20g=C3=A9n=C3=A9rateur=20de?= =?UTF-8?q?=20page=20html=20=C3=A0=20partir=20des=20fichiers=20markdown,?= =?UTF-8?q?=20d'un=20style=20basique=20inspir=C3=A9=20du=20blog=20de=20plo?= =?UTF-8?q?um.net.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/style.css | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 assets/css/style.css (limited to 'assets/css/style.css') diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..4940e28 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,41 @@ +body +{ + margin: 2vh auto; + max-width: 800px; + color:#00072D; + background-color: #C2EAFF; +} + +h1, footer +{ + text-align: center; +} + +a +{ + color: #87B37A; + text-decoration: none; +} + +a:hover +{ + text-decoration:underline; +} + +.center { + display: block; + margin-left: auto; + margin-right: auto; + width: 60%; +} +.header{ + margin: 1em 0; + display: block; + width:100%; +} + +.navbar{ + display: flex; + justify-content: space-between; + font-weight: bold; +} \ No newline at end of file -- cgit v1.2.3