add: data from MongoDB

Retrieve Data from MongoDB
This commit is contained in:
Fiona Lena Urban 2025-04-07 20:53:15 +02:00
parent 85e6035a9a
commit 987b685c41
10 changed files with 5361 additions and 41 deletions

View file

@ -3,6 +3,7 @@
--radius-default: 5px;
--transition-default: 150ms;
--color-black: #333;
--color-white: white;
--color-white-transparent: rgba(255, 255, 255, 0.67);
--color-red: #cc0001;
@ -35,6 +36,7 @@ body {
height: 100%;
overflow-x: hidden;
font-family: sans-serif;
color: var(--color-black);
}
.dot {

View file

@ -49,6 +49,17 @@
align-items: center;
& li {
list-style: none;
& a {
color: var(--color-black);
text-decoration: none;
transition: var(--transition-default);
&.active {
color: var(--color-main);
font-weight: bold;
}
}
}
}
}