This repository was archived by the owner on Dec 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepg-list.css
More file actions
115 lines (95 loc) · 2.33 KB
/
epg-list.css
File metadata and controls
115 lines (95 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
section#tv-guide {
.epg-channel-list {
display: grid;
gap: 16px;
margin: 8px 16px;
user-select: none;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
@media (max-width: 900px) {
margin: 8px;
}
}
.epg-channel {
gap: 0;
.title {
position: sticky;
top: 0;
z-index: 1;
}
.logo {
max-height: 35px;
object-fit: contain;
}
}
.logo-container {
.epg-channel:target & {
animation: 4s linear 1 highlight;
}
}
.epg-channel {
.daybreak {
background-color: var(--daybreak-bg-color);
padding: 4px;
text-transform: capitalize;
text-align: center;
margin: 0 !important;
}
.epg-program {
display: flex;
margin: 0 !important;
&.ended:not(:hover) {
opacity: 0.5;
}
&:last-child {
flex-grow: 1;
}
> div {
padding: 4px;
&:first-child {
color: var(--link-color);
width: 72px;
flex: none;
background-color: var(--c-pri-30);
padding-left: 0;
}
&:last-child {
flex-grow: 1;
padding-right: 16px;
}
}
.time {
float: right
}
&.running .program-title {
font-weight: bold;
}
.episode {
opacity: 0.5;
font-size: 0.8em;
}
.description {
font-size: 0.9em;
}
&:not(.running) {
.description,
.progress,
.broadcast-start-time,
.broadcast-end-time {
display: none;
}
}
}
}
.footer-tv-guide {
padding: 4px 16px 16px;
img#logo {
height: 2em;
border-radius: 5px;
}
}
.footer-heading {
display: flex;
gap: 8px;
align-items: center;
}
}