diff options
-rw-r--r-- | css/site.css | 8 | ||||
-rw-r--r-- | inc/classic-contents.inc.php | 1 | ||||
-rw-r--r-- | links.php | 14 |
3 files changed, 19 insertions, 4 deletions
diff --git a/css/site.css b/css/site.css index 4587636..2feefef 100644 --- a/css/site.css +++ b/css/site.css @@ -108,12 +108,12 @@ a:active { div.sidebar li { display: list-item; - list-style: square; } div.sidebar ul { padding: 0pt 0pt 0pt 1em; margin: 0; + list-style: square; } div.sidebar { @@ -174,12 +174,12 @@ div.body-contents b { div.body-contents li { display: list-item; - list-style: square; } div.body-contents ul { padding: 0pt 0pt 0pt 1.5rem; margin: 0; + list-style: square; } div.body-contents code { @@ -200,3 +200,7 @@ div.body-contents pre { padding: 10px 10px 10px 10px; white-space: pre; } + +span.fas { + font-size: 22px; +} diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php index 72e55c9..f9fb068 100644 --- a/inc/classic-contents.inc.php +++ b/inc/classic-contents.inc.php @@ -7,6 +7,7 @@ jo_head($title) { <title>Joe's own website - <?php echo "$title"; ?></title> <link rel="stylesheet" type="text/css" href="css/site.css"> <meta charset="UTF-8"> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> </head> <body> <div class="fullpage"> @@ -6,64 +6,74 @@ <p> Here Are the links you can use to follow me around: </p> - <ul> + <ul style="list-style: none;"> <li> + <span class="fas fa-github"></span> - My GitHub page - <a href="https://github.com/JozanLeClerc" target="_blank"> github.com/JozanLeClerc </a> </li> <li> + <span class="fas fa-twitch"></span> - My Twitch channel (streaming code exclusively) - <a href="https://www.twitch.tv/jozanleclerc" target="_blank"> twitch.tv/jozanleclerc </a> </li> <li> + <span class="fas fa-bandcamp"></span> - My Rock N' Roll band's Bandcamp - <a href="https://towerofsilence.bandcamp.com/" target="_blank"> towerofsilence.bandcamp.com </a> </li> <li> + <span class="fas fa-envelope"></span> - My email - rbousset@42lyon.fr </li> </ul> <h2>My pals' links</h2> <p> Also check out my pals links: - <ul> + <ul style="list-style: none;"> <li> + <span class="fas fa-globe"></span> - <b>Salad</b>'s lab: <a href="http://saladslab.karabo.ga/" target="_blank"> saladslab.karabo.ga </a> </li> <li> + <span class="fas fa-github"></span> - His GitHub page: <a href="https://github.com/salaaad2" target="_blank"> github.com/salaaad2 </a> </li> <li> + <span class="fas fa-twitter"></span> - And his fun Twitter account: <a href="https://twitter.com/fellowNwords" target="_blank"> twitter.com/fellowNwords </a> </li> <li> + <span class="fas fa-globe"></span> - <b>Akira</b>'s WebGL experiments: <a href="https://inner-fab.com/" target="_blank"> inner-fab.com </a> </li> <li> + <span class="fas fa-gitlab"></span> - His GitLab page: <a href="https://gitlab.com/AkiraMass" target="_blank"> gitlab.com/AkiraMass </a> </li> <li> + <span class="fas fa-globe"></span> - And his daughter's art site: <a href="https://dveloppez.com/" target="_blank"> dveloppez.com |