diff options
-rw-r--r-- | public/posts/2Summer | 4 | ||||
-rw-r--r-- | public/styles.css | 20 |
2 files changed, 18 insertions, 6 deletions
diff --git a/public/posts/2Summer b/public/posts/2Summer index a3685ef..028cb8c 100644 --- a/public/posts/2Summer +++ b/public/posts/2Summer @@ -46,6 +46,10 @@ <p>There is not much I will do with my dotfiles, to be honest, because so far I have my ideal setup. Maybe I will add some more bits to Neovim and perhaps create a custom color theme, but that's all I can really think of. Of course, I will add little bits and maybe update some of the programs on the install list, but as of today, there is not much I will change apart from maybe some patches for <a href="ihttps://dwm.suckless.org/">DWM</a>.</p> <p><a href="../projects/programs/dotfiles">Dotfiles Link</a></p> + <h3>Website</h3> + <p>I will try to do daily updates to this website. Making this website is one of the most fun projects I have ever undertaken because it is just enjoyable to write down ideas and projects I have done. I will do my best to make this website more mobile-friendly; in fact, I am going to try to do this tomorrow and see how it goes.</p> + + <hr> <h2>Writing</h2> <p>In the next few weeks, I will be trying to compile all my notes about Linux into a small book that anybody can read! In this book, there will be information about different commands, how to start in the Linux world, and more! So far, I have finished the first part, but there is way more to go. If you are interested, keep an eye on the <a href="../projects.html">projects page</a> for any updates!</p> diff --git a/public/styles.css b/public/styles.css index 4b2976c..e26ec50 100644 --- a/public/styles.css +++ b/public/styles.css @@ -17,12 +17,6 @@ header { padding: 20px; } -.title { - font-size: 36px; - font-family: 'Arial Black', sans-serif; - color: #C4A000; -} - nav ul { list-style: none; padding: 0; @@ -96,12 +90,22 @@ a:hover { font-size: 28px; } + nav ul { + display: flex; + flex-direction: column; + align-items: center; + } + nav ul li { display: block; margin: 10px 0; text-align: center; } + nav ul li.logo img { + max-height: 50px; + } + .description { font-size: 16px; } @@ -123,5 +127,9 @@ a:hover { .posts h2 { font-size: 20px; } + + nav ul li { + margin: 5px 0; + } } |