website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

commit 49840ab5f7c2334ed99e663da9ad076388a9e061
parent abdf891a332974c112e3d047b1cc8524411b6ae0
Author: Shipwreckt <me@shipwreckt.co.uk>
Date:   Sun,  2 Mar 2025 11:52:41 +0000

Ncmpcpp added to software.html

Diffstat:
Mpublic/about/software.html | 1+
Mpublic/index.html | 2+-
Dpublic/styles.css.bk | 167-------------------------------------------------------------------------------
3 files changed, 2 insertions(+), 168 deletions(-)

diff --git a/public/about/software.html b/public/about/software.html @@ -69,6 +69,7 @@ <h1>Misc software:</h3> <p><b><a href="https://wiki.archlinux.org/title/Plymouth">Plymouth</a></b> provides a graphical boot animation while the boot process happens in the background. This process is ran very early in the boot process.</p> + <p><b><a href="https://github.com/ncmpcpp/ncmpcpp">Ncmpcpp</a></b> is a TUI music player that I use when I am programming or pretending to study.</p> </main> </body> </html> diff --git a/public/index.html b/public/index.html @@ -21,7 +21,7 @@ </nav> </header> <main> - <p>Hello there! I am Shipwreckt, and I am 15 years old. I am from the UK, and I have a great passion for computers and all things revolving around them, such as software and hardware. I mostly focus on learning and working with the Linux operating system. To see what I am up to right now, click <a href="about/todo">here</a>.</p> + <p>Hello there! I am Shipwreckt, and I am 15 years old. I am from the UK, and I have a great passion for computers and all things revolving around them, such as software and hardware. I mostly focus on learning and working with the Linux operating system. To see what I am up to right now, click <a href="about/todo.html">here</a>.</p> <p><a href="about/software.html">Software</a> that I use.</p> <section class="posts"> diff --git a/public/styles.css.bk b/public/styles.css.bk @@ -1,167 +0,0 @@ -/* styles.css */ - - -body { - background-color: #272727; - color: #e6e6e6; - font-family: 'FreeSerif', serif; - max-width: 900px; - margin: 0 auto; - padding: 0 20px; -} - -header { - text-align: center; - padding: 20px; -} - -nav ul { - list-style: none; - padding: 0; - text-align: center; -} - -nav ul li { - display: inline-block; - margin-right: 20px; -} - -nav ul li.logo img { - max-height: 70px; -} - -nav ul li a { - color: #716181; - text-decoration: none; -} - -a { - color: #5e4d96; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -main{ - margin: 20px auto; - font-size: 18px; - max-width: 90%; - padding: 0 10px; -} - -.tags { - margin: 20px auto; - font-size: 18px; - max-width: 40%; - padding: 0 10px; -} - -.tags2 { - margin: 20px auto; - font-size: 18px; - max-width: 68%; - padding: 0 10px; -} - -.posts { - border-top: 1px solid #C0C0C0; - padding-top: 10px; -} - -.posts h2 { - font-size: 24px; - padding-bottom: 5px; -} - -.posts ul { - list-style: none; - padding: 0; -} - -.posts ul li { - margin-bottom: 10px; -} - -.right-image { - float: right; - margin: 0 0 10px 10px; - height: auto; -} - -.left-image { - float: left; - height: auto; -} -.center { - display: block; - margin-left: auto; - margin-right: auto; - width: 70%; -} - -.code-box { - padding-top: 100px; - background-color: #c8c8c8; - font-family: 'FreeSans', sans-serif; - font-size: 15px; - color: #000000; - border: 2px solid; - padding: 7px; -} - -/* Media Queries for responsiveness */ -@media (max-width: 768px) { - body { - max-width: 100%; - padding: 0 10px; - } - - .title { - 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; - } - - .posts h2 { - font-size: 22px; - } -} - -@media (max-width: 480px) { - .title { - font-size: 24px; - } - - .description { - font-size: 14px; - } - - .posts h2 { - font-size: 20px; - } - - nav ul li { - margin: 5px 0; - } -} -