-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpodcast-addon.css
More file actions
58 lines (49 loc) · 2.1 KB
/
Copy pathpodcast-addon.css
File metadata and controls
58 lines (49 loc) · 2.1 KB
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
/*
Podcast Addon for Kage-CSS
This is an optional addon stylesheet that can be installed in addition to the main theme.
Note: Due to a global 40,000-character limit, not all addons can be used simultaneously.
If styles are missing, disable other addons to stay within the character limit.
*/
html[data-path="/podcasts"] .top_media_item {
background-color: var(--bg-tertiary)
}
.podcast_result {
background-color: var(--bg-tertiary);
border-radius: 12px;
padding: 1.2rem 22px .7rem 18px;
opacity: 0;
transform: translateY(20px);
animation: fadeInCLS .3s ease-out forwards
}
.podcast_result .podcast_title {
background-color: var(--bg-primary);
border-radius: 5px;
padding: 8px
}
.podcast_result .body .thumbnail img {
transition: box-shadow .5s ease
}
.podcast_result .body {
margin-top: 0
}
.podcast_result .body .content .podcast_publisher,
.podcast_result .episode_meta>div,
.podcast_result .podcast_duration {
background-color: var(--timestamp-bg);
color: var(--primary-700);
border-radius: 5px;
padding: 0 6px;
user-select: none
}
.top_podcast_item {
width: 130px;
background-color: var(--bg-tertiary);
padding: 10px;
border-radius: 12px
}
.podcast_result {
padding-right: 22px;
padding-left: 18px
}
/* Compressed version */
.podcast_result,.top_podcast_item,html[data-path="/podcasts"] .top_media_item{background-color:var(--bg-tertiary)}.podcast_result,.top_podcast_item{border-radius:12px}.podcast_result{padding:1.2rem 22px .7rem 18px;opacity:0;transform:translateY(20px);animation:fadeInCLS .3s ease-out forwards}.podcast_result .podcast_title{background-color:var(--bg-primary);border-radius:5px;padding:8px}.podcast_result .body .thumbnail img{transition:box-shadow .5s ease}.podcast_result .body{margin-top:0}.podcast_result .body .content .podcast_publisher,.podcast_result .episode_meta>div,.podcast_result .podcast_duration{background-color:var(--timestamp-bg);color:var(--primary-700);border-radius:5px;padding:0 6px;user-select:none}.top_podcast_item{width:130px;padding:10px}.podcast_result{padding-right:22px;padding-left:18px}