refactor: add esbuild and modulerize css into seperate files

This commit is contained in:
rramiachraf
2024-03-06 17:32:10 +01:00
parent edc2b04198
commit c8747c0182
13 changed files with 548 additions and 463 deletions

17
style/navbar.css Normal file
View File

@ -0,0 +1,17 @@
nav {
background-color: #ffcd38;
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
}
nav img {
width: 50px;
}
@media (prefers-color-scheme: dark) {
nav {
background-color: #fec260;
}
}