-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpodcast.css
73 lines (69 loc) · 1.27 KB
/
podcast.css
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
ul {
background-position: right 8px center;
background-repeat: no-repeat;
background-size: auto calc(100% - 16px);
font-family: sans-serif;
font-size: 12px;
line-height: 16px;
list-style-type: none;
margin: 0;
padding: 8px;
}
li {
align-items: center;
display: flex;
}
li.empty {
font-style: italic;
}
img {
cursor: pointer;
height: 12px;
margin-right: 4px;
opacity: 80%;
transition: 0.2s ease-out;
width: 12px;
}
img:hover {
opacity: 100%;
}
a {
color: white;
flex-grow: 1;
overflow: hidden;
text-decoration: none;
/* Utiliser une ellipse en attendant que le fondu soit implémenté.
https://bugzil.la/1688566 */
text-overflow: ellipsis;
white-space: nowrap;
}
a:visited,
li.empty a {
color: black;
}
a[href]:hover {
text-decoration: underline;
}
input {
background-color: transparent;
cursor: pointer;
display: none;
height: 12px;
width: 100%;
}
input::-moz-range-track {
background-color: black;
border-radius: 1px;
height: 2px;
}
input::-moz-range-progress {
background-color: white;
border-radius: 1px;
height: 2px;
}
input::-moz-range-thumb {
background-color: white;
border: 0;
height: 12px;
width: 12px;
}