feat(style.css): add stylesheet

This commit is contained in:
2025-06-15 22:38:46 +02:00
parent 9edae70618
commit 1b39dce698

View File

@@ -0,0 +1,20 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2e3440;
color: #eceff4;
padding: 1rem;
}
main {
padding: 2rem;
background-color: #eceff4;
color: #2e3440;
}