add dark mode on default start page

This commit is contained in:
janis
2023-08-31 13:51:05 +02:00
parent 6ea687fa47
commit 1ecfbacc89
4 changed files with 70 additions and 5 deletions

View File

@@ -59,4 +59,35 @@
margin: 0;
border: none;
cursor: pointer;
}
nav {
padding: 30px;
}
nav a {
font-weight: bold;
color: var( --primary-color );
}
nav .home {
color: #42b983;
text-decoration: underline;
cursor: default;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: var( --primary-color );
background-color: var( --background-color );
transition: all 0.5s;
}
body {
display: flex;
flex-direction: column;
align-items: center;
}