-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
53 lines (48 loc) · 832 Bytes
/
Copy pathindex.css
File metadata and controls
53 lines (48 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: #f1f5f8;
color: #222;
}
.booklist {
width: 90vw;
max-width: 1170px;
margin: 5rem auto;
display: grid;
gap: 2rem;
}
@media screen and (min-width: 768px) {
.booklist {
grid-template-columns: repeat(3, 1fr);
/* align-items: start; */
}
}
.book {
background: #fff;
border-radius: 1rem;
padding: 1rem 2rem;
}
.book h1 {
margin-top: 0.5rem;
color: rgb(150, 15, 15);
}
.book h4 {
color: #f0935e;
font-size: 0.75rem;
margin-top: 0.25rem;
}
.book h2 {
color:rgb(70, 168, 224)
}
.book p {
margin-top: 0.5rem;
}
.book h5{
color:black;
text-emphasis-style:inherit;
}