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

52
style/home.css Normal file
View file

@ -0,0 +1,52 @@
#home {
display: flex;
flex-direction: column;
gap: 1.5rem;
align-items: center;
padding: 2rem;
flex-grow: 1;
}
#home div {
text-align: center;
}
#home h1 {
font-weight: 600;
font-size: 2.2rem;
color: #222;
}
#home p {
color: #333;
}
#home code {
background-color: #eee;
padding: 0.3rem 1rem;
border-radius: 0.5rem;
color: #333;
}
#search-input {
width: 100%;
padding: 1rem 2rem;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #ddd;
color: #222;
}
@media (prefers-color-scheme: dark) {
#home h1 {
color: #eee;
}
#home p {
color: #ddd;
}
#search-input {
background-color: #ddd;
}
}