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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
body {
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
max-width: 600px;
margin: 1rem auto;
padding: 0 1rem;
}
.title {
text-align: center;
}
.actions {
list-style: none;
padding: 0;
margin: 0;
}
.actions__item {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
aspect-ratio: 4 / 1;
background-position-x: center;
background-repeat: no-repeat;
}
.actions__item--watch {
background-image:
radial-gradient(rgba(0, 0, 0, 10%), black),
url(/watching-tv.jpg);
background-position-y: 40%;
}
.actions__item--fetch {
background-image:
radial-gradient(rgba(0, 0, 0, 10%), black),
url(/thief.webp);
background-position-y: 20%;
}
.actions__item--find-anime {
background-image:
radial-gradient(rgba(0, 0, 0, 10%), black),
url(/anime.jpg);
background-position-y: 38%;
}
.actions__item--find-movies {
background-image:
radial-gradient(rgba(0, 0, 0, 10%), black),
url(/movie.jpg);
background-position-y: center;
}
.actions__link {
/* Remove link styling */
text-decoration: none;
color: white;
font-size: xx-large;
font-weight: bold;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #343434;
color: white;
}
}
|