Added crucial style related features

Made the following changes:

- Added light-mode that changes based on browser theme
- Fixed style-related issues concerning the projects page
- Refactored code
- Fixed an issue where the LastFM music details were hidden when there was enough space to show them
-
This commit is contained in:
J-onasJones 2023-09-27 15:36:14 +02:00
parent 0923936258
commit 7e9110d639
4 changed files with 79 additions and 36 deletions

View file

@ -2,11 +2,16 @@
<p>Website by Jonas_Jones 2021 - 2023</p>
</div>
<script>
//import main css file
import "../routes/+page.css";
</script>
<style>
.footer {
height: 1rem;
background-color: #000;
color: #fff;
background-color: var(--footer-background-color);
color: var(--footer-font-color);
display: flex;
justify-content: center;
align-items: center;