feat: modal added

This commit is contained in:
Smigz 2023-11-21 07:03:57 -05:00
parent ba35554e0e
commit 104849154f
3 changed files with 66 additions and 27 deletions

View file

@ -1,16 +1,22 @@
* {
margin: 0;
padding: 0;
}
:root {
--background-color: #000000;
}
.navbar {
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.navbar {
margin-top: 20px;
margin-bottom: 100px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-content: center;
align-items: center;
}
.navbar ul {
@ -18,16 +24,22 @@
gap: 20px;
}
.content {
min-height: 1000px;
min-width: 1000px;
}
.book-cards {
display: flex;
justify-content: center;
flex-direction: column;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
min-width: 200px;
min-height: 200px;
}