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
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
.props p {
margin: 0.4em;
font-size: small;
font-weight: bolder;
display: inline-block;
padding: 0.2em;
background: var(--background-prop);
border-radius: 4px;
}
.props p.federation {
background: rgba(22, 101, 133, 0.603);
}
.props p.federation::before {
content: "link";
}
.props p.watched {
background: rgba(75, 175, 44, 0.644);
}
.props p.watched::before {
content: "check";
}
.props p.progress {
background: rgba(156, 89, 35, 0.63);
}
.props p.progress::before {
content: "pending";
}
.props p.pending {
background: rgba(156, 35, 69, 0.63);
}
.props p.pending::before {
content: "playlist_add_check";
}
.props p.rating {
background: rgba(138, 156, 35, 0.63);
}
.props p.rating::before {
content: "stars";
}
@media (max-width: 500px) {
.props {
display: none;
}
}
|