-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
59 lines (58 loc) · 958 Bytes
/
index.css
File metadata and controls
59 lines (58 loc) · 958 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
54
55
56
57
58
59
body {
margin: 0;
padding: 0;
text-align: center;
font-family: 'Mansalva', sans-serif;
font-family: 'Rubik', sans-serif;
}
h1, h2 {
font-size: 2.5rem;
max-width: 50rem;
padding: 0;
margin: 1rem 1rem 0 1rem;
}
h2 {
font-size: 2rem;
}
a {
color: black;
}
#book, #footer {
background-color: #181818; /*1f1f1f*/
}
#book {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
}
#book, #book a, #footer, #footer a {
color: #cccccc;
text-decoration: none;
}
#book img {
height: 15rem;
border: 3px #fff solid;
border-radius: 3px;
}
#resources {
display: flex;
flex-direction: column;
align-items: center;
margin: 1rem 1rem 3rem 1rem;
}
#resources p {
max-width: 50rem;
}
#resources a {
font-size: 1.2rem;
font-weight: bold;
}
#footer {
padding: 5rem 1rem;
}
@media (max-width: 32rem) {
h1 {
font-size: 2rem;
}
}