Switched to dark mode

This commit is contained in:
vic 2024-05-15 17:35:08 +02:00
parent 7cb4ec5f72
commit 10dc1712ef
2 changed files with 8 additions and 6 deletions

View File

@ -29,8 +29,9 @@
<h2>Welcome to my page</h2>
<p>This is a lovely site where I will showcase my upcoming projects. I'm also planning on doing a blog but I'm still working on it.</p>
<p>I'm a small developer, mainly as a hobby, I am learning HTML, CSS and JS. I have full knowledge in Linux and also daily drive an Arch Linux installation every day as my main system. I love self-hosting, I acttally have my own <b><a href="https://vicgs.us.to">git server!</a>
<p>I'm a small developer, mainly as a hobby, I am learning HTML, CSS and JS. I have full knowledge in Linux and also daily drive an Arch Linux installation every day as my main system. </p>
<p>I love self-hosting, I acttally have my own <b><a href="https://vicgs.us.to">git server!</a></p>
<hr>
<footer> <img src="images/linuxnow.GIF"> <img src="images/scientificlinux.GIF"> <img src="images/cookie.GIF"> <img src="images/minecraft.GIF"> <a href="https://procursus.social/@vicgs"><img src="images/mastodon.GIF"> </a></footer>

View File

@ -28,7 +28,7 @@ body {
.main-content {
width: 75%;
padding: 20px;
background-color: white;
background-color: rgb(0, 0, 0);
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center; /* Center content horizontally */
@ -38,7 +38,7 @@ body {
/* Header styles */
h1 {
font-size: 36px;
color: #333;
color: #ffffff;
margin-bottom: 10px;
}
@ -50,7 +50,7 @@ a {
}
a:hover {
text-decoration: underline;
color: #9f8ffa;
}
/* List styles */
@ -62,11 +62,12 @@ nav ul {
nav ul li {
display: inline-block;
margin-right: 10px;
margin-right: 1px;
}
/* Paragraph styles */
p {
color: #ffffff;
font-size: 16px;
line-height: 1.5;
}
@ -75,7 +76,7 @@ p {
hr {
border: 0;
height: 1px;
background-color: #333;
background-color: #00db16;
margin-bottom: 20px;
}