blob: b8795fae86b5e2b8e346a7332bba7faeb4c67ebc (
plain) (
blame)
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
|
a {
color: inherit;
}
h2 {
margin-bottom: 4px;
}
hr {
background: black;
height: 6px;
margin-bottom: 20px;
}
.cover, .poster, .icon {
max-height: 250px;
/* max-width: 165px; */
max-width: 200px;
border-radius: 10px;
}
.cover {
border: 2px solid black;
box-shadow: 8px 8px grey;
}
.icon {
filter: drop-shadow(0px 0px 2px black);
}
.shelf {
display: flex;
flex-direction: row;
justify-content: space-around;
text-align: center;
align-items: flex-end;
flex-wrap: wrap;
}
.shelf div {
margin-right: 1em;
margin-top: 20px;
}
.shelf h3 {
margin-bottom: 0px;
}
@media screen and (max-width: 700px) {
h2 {
text-align: center;
}
}
|