diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-22 20:30:19 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-22 20:30:19 +0200 |
commit | d03956853f912096af5ba8ad54bbc006962748cb (patch) | |
tree | f7a7b99d50c541239acc53c02efc5f66ecfadf66 | |
parent | Fixed link (diff) | |
download | joe-www-d03956853f912096af5ba8ad54bbc006962748cb.tar.gz joe-www-d03956853f912096af5ba8ad54bbc006962748cb.tar.bz2 joe-www-d03956853f912096af5ba8ad54bbc006962748cb.tar.xz joe-www-d03956853f912096af5ba8ad54bbc006962748cb.tar.zst joe-www-d03956853f912096af5ba8ad54bbc006962748cb.zip |
Perfect main page
-rw-r--r-- | css/site.css | 18 | ||||
-rw-r--r-- | index.html | 4 |
2 files changed, 19 insertions, 3 deletions
diff --git a/css/site.css b/css/site.css index b0c175f..0867614 100644 --- a/css/site.css +++ b/css/site.css @@ -72,8 +72,24 @@ div.sidebar ul { margin: 0 0 1em; } -div.body-content { +div.body-contents { padding: 5pt; margin-left: 10%; margin-right: 10%; } + +div.body-contents h1 { + font-size: 150%; + font-weight: bold; + text-align: left; + padding: 1em 0em 1em 0em; + margin: 0pt; +} + +div.body-contents h2 { + font-size: 125%; + font-weight: bold; + text-align: left; + padding: 1em 0em 1em 0em; + margin: 0pt; +} @@ -42,7 +42,7 @@ </li> </ul> </div> - <div class="body-content"> + <div class="body-contents"> <h1>About the site</h1> <p> Welcome to my personnal blog. There you can find my tips and articles on @@ -52,7 +52,7 @@ </p> <h1>About me</h1> <p> - I am a student for <a href="https://www.42lyon.fr/">42Lyon</a> IT school based in + I am a student for <a href="https://www.42lyon.fr/" target="_blank">42Lyon</a> IT school based in Lyon, France. I work on various personnal project beside that. </p> </div> |