mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-13 21:00:37 -04:00
feat: initial javascript complete
This commit is contained in:
parent
fcb8e17d6b
commit
ba35554e0e
3 changed files with 106 additions and 24 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue