feat: initial javascript complete

This commit is contained in:
Smigz 2023-11-20 17:28:39 -05:00
parent fcb8e17d6b
commit ba35554e0e
3 changed files with 106 additions and 24 deletions

View file

@ -1,5 +1,33 @@
* {
margin: 0;
padding: 0;
}
:root {
--background-color: #000000;
}
.navbar {
display: flex;
justify-content: space-between;
align-content: center;
}
}
.navbar ul {
display: flex;
gap: 20px;
}
.book-cards {
display: flex;
justify-content: center;
flex-direction: column;
}
.card {
display: flex;
justify-content: center;
gap: 20px;
min-width: 200px;
min-height: 200px;
}