diff options
author | Oxbian <got.dacs@slmail.me> | 2023-04-02 22:42:10 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-04-02 22:42:10 +0200 |
commit | ede72d38ccb920ddf92104cf899bf1e461978a4e (patch) | |
tree | 6c3710963b22af04df191eb53b83d0c2841fa8d8 /assets/css | |
download | ArKa-Blog-ede72d38ccb920ddf92104cf899bf1e461978a4e.tar.gz ArKa-Blog-ede72d38ccb920ddf92104cf899bf1e461978a4e.zip |
Init commit\nAjout du générateur de page html à partir des fichiers markdown, d'un style basique inspiré du blog de ploum.net.
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/style.css | 41 |
1 files changed, 41 insertions, 0 deletions
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 |