wip: book layouts
This commit is contained in:
parent
a80d21f679
commit
7b164914a8
@ -1,9 +1,16 @@
|
|||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,62 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import Book from "./Book.svelte";
|
||||||
|
import type { BookEntry } from "./Book.svelte";
|
||||||
|
|
||||||
|
// TODO: Eventually use the actual API.
|
||||||
|
let books: BookEntry[] = JSON.parse(`{
|
||||||
|
"books": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"isbn": "9781338134377",
|
||||||
|
"title": "The Silver Eyes (Five Nights At Freddy's #1)",
|
||||||
|
"authors": "Scott Cawthon, Kira Breed-Wrisley, Kira Breed-Wrisley, Kira Breed-Wrisley Scott Cawthon, Suzanne Elise Freeman, Kira Breed-Wrisley",
|
||||||
|
"imageurl": "https://covers.openlibrary.org/b/id/8075533-L.jpg",
|
||||||
|
"publication_year": "2001",
|
||||||
|
"page_length": "400"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"isbn": "1338741187",
|
||||||
|
"title": "Official Five Nights at Freddy's Coloring Book",
|
||||||
|
"authors": "Scott Cawthon",
|
||||||
|
"imageurl": "https://covers.openlibrary.org/b/id/12405670-L.jpg",
|
||||||
|
"publication_year": "2021",
|
||||||
|
"page_length": "96"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"isbn": "9781338792676",
|
||||||
|
"title": "Five nights at freddy's",
|
||||||
|
"authors": "Scott Cawthon",
|
||||||
|
"imageurl": "https://covers.openlibrary.org/b/id/10502812-L.jpg",
|
||||||
|
"publication_year": "2018",
|
||||||
|
"page_length": "166"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"isbn": "9781338767681",
|
||||||
|
"title": "Freddy Files",
|
||||||
|
"authors": "Scott Cawthon",
|
||||||
|
"imageurl": "https://covers.openlibrary.org/b/id/14432108-L.jpg",
|
||||||
|
"year of publication": "2019",
|
||||||
|
"page length": "256"
|
||||||
|
}
|
||||||
|
]}`).books;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
{#each books as book}
|
||||||
|
<Book entry={book} />
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.container {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, 200px);
|
||||||
|
grid-gap: 25px;
|
||||||
|
padding: 25px;
|
||||||
|
}
|
||||||
|
</style>
|
46
src/routes/Book.svelte
Normal file
46
src/routes/Book.svelte
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<script lang="ts" context="module">
|
||||||
|
export interface BookEntry {
|
||||||
|
id: number;
|
||||||
|
isbn: string;
|
||||||
|
title: string;
|
||||||
|
authors: string;
|
||||||
|
imageurl: string;
|
||||||
|
publication_year: number;
|
||||||
|
page_length: number;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
export let entry: BookEntry;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="cover" />
|
||||||
|
<div class="content" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
height: 350px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: blue;
|
||||||
|
|
||||||
|
& .cover {
|
||||||
|
width: 100%;
|
||||||
|
height: 75%;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
& .content {
|
||||||
|
width: 100%;
|
||||||
|
height: 25%;
|
||||||
|
margin-top: 10px;
|
||||||
|
background-color: magenta;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -45,7 +45,7 @@
|
|||||||
& div {
|
& div {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
padding: 0 20px;
|
padding: 0 25px;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -65,6 +65,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-width: 340px;
|
||||||
font-size: 40px;
|
font-size: 40px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-family: "Oswald", sans-serif;
|
font-family: "Oswald", sans-serif;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user